Live data from Hacker News

Ask HN: What projects are you working on this weekend?

news.ycombinator.com

21–30 of 42 posts

Re: Ask HN: What projects are you working on this weekend?

#24

Among other things, I'm working on migrating a bunch of infrastructure from Linode to OVH. As part of that, I'm working to ensure that every. last. drop. of this stuff has an automated deployment using Ansible. Having a bunch of hand-rolled, "pet" servers causes issues. One very noticeable problem is that it's really easy to let things get out of date because upgrading them is painful without automation. So, for exam…

heh, I recently moved a bunch of sites over to Cloudflare to avoid paying for monthly Route 53 fees for doing basically nothing

Re: Ask HN: What projects are you working on this weekend?

#25
Mostly two things at the moment. Both game related.

The first is try to make a website for small, quick games I develop. I'm going to try to make some light scaffolding to help facilitate this. In particular, one of my games I've come up with so many small tweaks to over the years, that I'd like them to actually get out in the world instead of just living in a notebook.

The game is called Proximity[1], it's a simple turn-based game I initially released 18 years ago that I've been working on sequels off and on since) and I was thinking I could call the site 'Proximity Variations', kind of like the composer Elgar did 'Enigma Variations' (name might be a bit pretentious, but it was the inspiration for the idea). I need to make a really lightweight version of the game first for that though.

The other is the heavyweight sequel to the game (technically Proximity 3, I released Proximity 2 a while back) I'm working on in Unity. I've got a lot of ideas for new and interlocking mechanisms to make it a game that's still pretty simple to understand, but has deeper strategy.

I was actually relatively far along in developing a sequel to the game using Monogame, but giving modern VR a try managed to shake my brain off the design guard rails and I came up with so many cool ideas to deepen the core system without it getting too complicated I felt I might as well switch engines since I was already fighting Monogame to do anything more than some basic 3D anyway. Game already looks prettier in Unity.

I also think it might be a good idea to build in support for VR at some point, maybe not for the initial release, but keep it in mind as I'm building the game.

There's also a board game design I kind of want to get polished up for pitching to publishers at Gen Con later this year, but I haven't done too much with it recently. It's an area control game about building pyramids. Basic theme, but a clever core mechanism. I took it to a Protospiel convention (for board game designers and playtesters) and got a lot of positive feedback and some good ideas for making it better.

[1]: https://www.newgrounds.com/portal/view/183428

Re: Ask HN: What projects are you working on this weekend?

#26

Fixing the toilet flush. Trying to make my wife happy. Entertaining the kids.

Right? Building a ladder for the playground. Cutting the fur of the dog for summer. Fixing the handle of a door the kids used too much. Helping wife with chores.

Programming is for weekdays...

Re: Ask HN: What projects are you working on this weekend?

#27
Working on open sourcing my search engine. Trying to get gitea to perform well off a Raspberry Pi 4.

The entire thing is in one big repo with code for all marginalia.nu projects. Needs structure to be accessible to more devs.

Also reworking the test strategy as what I did before makes a lot of assumptions that do not generalize, experimenting with TestContainers for E2E-tests.

Re: Ask HN: What projects are you working on this weekend?

#29
A few days ago I decided I would try to minimize content consumption (YouTube videos, forums..etc) and use that time to build small projects using cool tech like SQLite (among others like Next.js or Blitz.js + Vercel) as the base of the stack.

I just finished the first one: [name-redacted][0] – a simple website to visualize your Bitcoin holdings value over time. It is powered by an SQLite3 embedded database, WASM (WebAssembly) SQLite client, and one GitHub Action (every day at 00:00 UTC it runs to fetch the Bitcoin price and insert it into the SQLite database). The code is open source and the README contains more info of the technologies I used [1]

[0] [url-redacted]

[1] [url-redacted]

Re: Ask HN: What projects are you working on this weekend?

#30
I'm rewriting a ERP system my late father wrote in Delphi (with my help when I was a teenager), to be a modern system in PHP (to be hosted for dirt cheap) with a GraphQL api. As I don't have the manpower to write this API manually, I wrote a JS code to read and parse a MySQL Workbench diagram file, where I define the tables and relationships in the visual editor, and then I parse the XML config file to create the GraphQL Schemas and Resolvers.

This API is already working with queries, filters (conditions for the 'where' clause in sql) and forward and reverse relationships (depending on which table points to the other). This system already create 'create' mutations, but I still have to do 'update's and 'delete's. And the entire frontend still.

Post reply on HN