kaesve | 3 months ago | on: Ask HN: Those making $500/month on side projects in 2025 – Show and tell
kaesve's comments
kaesve | 10 months ago | on: WebGL Water (2010)
kaesve | 1 year ago | on: Show HN: Haystack – an IDE for exploring and editing code on an infinite canvas
kaesve | 1 year ago | on: Ask HN: Interesting TUIs (text user interfaces), maybe forgotten ones?
kaesve | 2 years ago | on: Song lyrics getting simpler, more repetitive, angry and self-obsessed – study
kaesve | 2 years ago | on: Large Language Models Are Neurosymbolic Reasoners
kaesve | 2 years ago | on: Show HN: The classic Minesweeper on an irregular grid
kaesve | 2 years ago | on: Ask HN: Who wants to be hired? (September 2023)
Location: Philadelphia/New York
Remote: Possible
Willing to relocate: No
Technologies: Python, TensorFlow, PyTorch, JS/TS, NodeJS, Angular/React/Vue
Résumé/CV: https://hireken.at/hacker-news/
Email: [email protected]
I'm a software dev with 10 years of experience in full-stack development in JS, TS, Python, and Java. I recently received my MSc in Data Science and Machine Learning, and am now looking for a new challenge.kaesve | 2 years ago | on: Ask HN: Any interesting books you have read lately?
I enjoy reading up on computer history, and this is a pretty good retelling of an important story. However, the parts that really struck me are the personal accounts of the author in trying to recover this history. The ENIAC 6 played an important role in the history of the first computer and of programming as a vocation, but their story was almost forgotten. To the point that these women were not even invited to celebrate the 50th anniversary of the ENIAC. That's shameful, and I'm happy that they finally have started to get the recognition they deserve.
If you're interested in this history, Jean Jennings Bartik also wrote an autobiography, that tells the story from her perspective.
kaesve | 2 years ago | on: Ask HN: Who wants to be hired? (August 2023)
Location: New York/Philadelphia
Remote: Yes
Willing to relocate: No
Technologies: Python, Tensorflow/Torch, Javascript/Typescript, Node, Angular/React/Vue, Docker, SQL
Résumé/CV: (working on it)
Email: [email protected]
Software engineer with ~10 years of experience. Most of that in front-end and full stack, but I recently went back to university for a MSc in machine learning. I'm a team player, and I love helping to solve real world problems.I'm from the Netherlands, but moving to the US (Princeton) soon, and should have my green card by the end of the year, so I'm looking for something new.
I'd love to find a new challenge in the ML field, but I'm open to other opportunities.
kaesve | 2 years ago | on: The Algorithmic Beauty of Plants [pdf]
I really enjoyed reading the latter last year, because it does a great job slowly building up. By the end, I felt like I didn't just understand the models, but also how the author found them. I can recognize these patterns in nature, and figure out how they were generated.
I spent some time last year implementing all the models described in the book in JS: https://kaesve.nl/projects/shells .
kaesve | 2 years ago | on: Show HN: Workout.lol – a web app to easily create a workout routine
kaesve | 2 years ago | on: How to build a website without frameworks and tons of libraries
It also teaches you more about your platform. In the end, all these web tools and frameworks are running in that same browser. I find especially with newer web developers, it's hard to solve something in React/Vue/.. because they don't know how to break up the problem. If you'd roughly know how to solve the problem without those frameworks, it becomes much easier to figure out how to solve it with them too.
Finally, I also just get toolchain fatigue. If I want to build a simple landing page, I don't want to learn new stuff, I don't want to read what changed in the latest versions, what the correct way of the day is to set up a project. Honestly, I don't even want to have a build pipeline and module swapping dev server, that inevitably needs to be configured. Just some static html/css/js is often good enough. And as I said, you also learn which problems frameworks solve well, so you'll know when some static files isn't the right choice.
kaesve | 2 years ago | on: Ask HN: I am overflowing with ideas but never finish anything
- Figure out why you are doing this in the first place. Usually, my core desire behind a project idea is not at all "to make money" or "help people", but something more simple. It's to figure out how to do something, or to quench my own curiosity. - I realized I have a near-unending pool of ideas, but I can just do one at a time. Which one to pick? For a while, I chose them based on project size; how easily could I gratify that core desire? How quickly could I be happy with this project? Almost any project that I'd think would take more than a weekend would be sent back to the pile. Sometimes it took a while to distill the core desire behind a project idea, to really see why it was interesting to me. - Doing this also taught me a lot about how to make projects smaller. This was extremely freeing. I don't have to worry about losing work -- I'll lose maybe up to a day of typing, and the real value was working on the project anyway, not necessarily the produced artifact. I also realized I can do many projects with nothing but a browser and a text editor, and the more I used this small tool set, the deeper my understanding got and the more I could do in a weekend project.
Over time, I've 'finished' many of these projects, and I've also started to learn that finishing really is a skill in itself -- something that takes practice. More of my projects nowadays are at least somewhat ready for public consumption, and I'm still getting better at this. I still start projects that I don't finish. If an idea is cool enough, I'll still give it a try. Some project ideas were so cool/fun to work on that they would just be able to capture my attention for the weeks or sometimes even months they asked for to get them somewhere (most recently, that's https://kaesve.nl/projects/shells/). Some projects can't capture all that attention at once, but are still fun enough to revisit. They take years, but slowly move forward. And if I abandon a project, that's okay too; it usually means I found a new, shorter-term project, or that I realize that that core desire behind that project idea wasn't so satisfying after all.
kaesve | 2 years ago | on: Unrelated Words Puzzle
The concept is very fun though. I might try to make my own version, as it also seems like a fun side project and a way to explore different word embedding spaces. Could be fun to maybe also have a visualization of the embedding space.
kaesve | 3 years ago | on: Ask HN: Side projects that generate $0 / month
Just silly games I make in my free time. Ever wanted to play wordle and snake at the same time? I got you. That connect-the-pipe game, but also tetris? Sure!
They are mostly novelty games, with a focus on fun-to-make instead of fun-to-play.
kaesve | 3 years ago | on: Ask HN: Those making $0/month or less on side projects – Show and tell
A lot of these projects make for terrible games, but really fun side projects. I've been putting up the more playable ones on https://neonarcade.games
kaesve | 3 years ago | on: Ask HN: What are the best programming tricks you know?
The 'normal' way to write a loop over this is something like:
for (let i = 0; i < ls.length; i++) {
const j = i > 0 ? i - 1 : ls.length - 1;
...
}A trick I got from sean barretts website (https://nothings.org/), is to use the for-loop initialization clause for the special case:
for (let i = 0, j = ls.length - 1; i < ls.length; j = i++) {
...
}The work I do usually does not care about the performance improvement if there is any, but it feels good to avoid that per-iteration check.
kaesve | 3 years ago | on: Ask HN: Which book are you reading, since when?
I'm also reading Seveneves by Neal Stephenson. Started less than a month ago, am at p256/867. It's not my 'priority book', but I've been enjoying it when my brain needed a break from the seashells.
kaesve | 3 years ago | on: User friendly web games
They are not of the highest quality, but I continue to work on them. They are all built from scratch with only a (my own) math library that I reuse. If something's broken and you bug me about it, I should fix it soon. Same story for adding mobile support where it's not there yet.
I decided I am not going to do ads or tracking. I have fun making these, so I just hope someone else can have fun playing. There might still be some google font references, but I'm planning to take those out too. The same should go for https://masterpieces.app, where you can do jigsaws with the Rijksmuseum collection.
(We'll get back into 3d printing once life slows down a _little_ bit again)