Live data from Hacker News

Ask HN: What projects are you working on now?

news.ycombinator.com

321–330 of 1001 posts

Re: Ask HN: What projects are you working on now?

#321
Working on a major refactor of my elixir FFI interface for the Zig programming language. Lets you write zig inline in elixir, and takes care of all of the fiddly bits around setting up a nif correctly, in such a way that you can't mess it up.

https://github.com/ityonemo/zigler/

By the end of the refactor, an additional setting will be included that makes the beam vm "garbage collect" your zig for you, that is, you can lazily allocate memory in your nif, and it will be cleaned up for you afterwards. This is a major first step in making "safe nifs" which are OTP-supervised OS threads with, at least, memory resource recovery performed by a BEAM process if the thread happens to crash.

Also, why use zig over rust? because zig is aggresively unopinionated about its memory allocation, so Zigler makes it easy to use the internal BEAM allocator, which 1) lets the BEAM be aware of allocations that are happening for observability and telemetry purposes, 2) lets your memory allocations play nice with the BEAM's fragmentation preferences and 3) leads to potentiallly better performance as you can make fewer trips to the kernel for allocations.

Re: Ask HN: What projects are you working on now?

#322
Couple of projects with a friend (pairing on stuff is way more fun for me than working alone) Built a free Chrome extension with a friend that shows a UX Design Principle with every new browser tab, and a remote UX jobs bot which generates a site and posts the jobs to twitter. The latter is written in Python and runs off a Raspberry Pi under my desk - so I don't need to pay for an EC2 for an experiment.

Remote UX jobs: https://remotivo.com

Chrome extension: https://chrome.google.com/webstore/detail/ux-principles/lkoc...

Re: Ask HN: What projects are you working on now?

#323

Our company just switched to WFH when we previously didn't have any tools. I guess this is a project on its own: moving the company operations from all on-premise and physically present to all remote. Some tools we've adopted and I'm learning about as we go: Grasshopper (for VoIP call forwarding), MS Teams (we dabbled with Slack, but ended up using Teams because of our VS subscription), Zoom (for demos), and Stripe/P…

Are you using Grasshopper for communicating internally within your team, or as an open line to communicate with potential customers, or both?

I'm the founder of CallStop, which is a better call manager and spam blocker for individuals and businesses, so that's why I'm curious.

Re: Ask HN: What projects are you working on now?

#326
We are building a community of drivers at https://ottomon.net.

When a good part of the US population lives paycheck to paycheck, a single parking ticket can impact their finances. This summer, we will offer a kind of insurance for parking tickets (crowd sourced). Pay a small monthly fee, and we pay for your all tickets.

Re: Ask HN: What projects are you working on now?

#327

Working on simeville, a little 2D Canvas demo that builds a town. You can try it yourself here: https://simonsarris.github.io/simeville/ (pardon the graphics, they're stand-ins right now) Click to make buildings (above the tree line only right now) and click and drag the sun down to go to night. Drag the moon to return to day. Gif of night sky: https://twitter.com/simonsarris/status/1235761030996901888 The point is t…

Cool, would like to check it out, but doesn't seem to work on neither Firefox nor Safari: "TypeError: document.getElementById(...) is null" on line 58 in main.js

Re: Ask HN: What projects are you working on now?

#328
I'm making a touch-based audio/video performance tool. The elevator pitch is that it fuses dj'ing and vj'ing together in an attempt to allow for more interesting audience experiences, but that's semi-misleading as touch surfaces aren't good for what's traditionally considered Dj'ing.

Hence, I instead prefer to think of it as an audio/video tool somewhere between production and performance. Some out of date info can be found here: http://www.planmixplay.com

Re: Ask HN: What projects are you working on now?

#329

We are building a community of drivers at https://ottomon.net . When a good part of the US population lives paycheck to paycheck, a single parking ticket can impact their finances. This summer, we will offer a kind of insurance for parking tickets (crowd sourced). Pay a small monthly fee, and we pay for your all tickets.

how do you deal with adverse selection?

Re: Ask HN: What projects are you working on now?

#330
I am building an end-to-end text-to-video product that converts text/blog news into TV-like news using multiple AI techs including GANs, Transformers, variational autoencoders, motion graphics, kubernetes, among other techs.

It has taken me some months, but I have CI/CD in place, some traction in twitter, and subscribed users on our home page.

I have bootstrapped the product so far. I'm the solo dev, designer, and creator.

Soon I will have a big upgrade to the AI anchor.

Let me know what you think https://twitter.com/nius_tv

Official home page https://nius.tv

Post reply on HN