Live data from Hacker News

Ask HN: What was an interesting project you started and finished over a weekend?

news.ycombinator.com

191–200 of 242 posts

Re: Ask HN: What was an interesting project you started and finished over a weekend?

#191
post #82

I made HNRelevant, a web extension for HN ( https://github.com/imdj/HNRelevant ). It shows related discussions for each submission page. Many times, I found myself intrigued by interesting discussions which left me hungry for more and I'd go down a rabbit hole, or maybe it was promising but didn't get enough attention and I'd need to check if there were any related discussions in the past about the same subject. I fo…

This is cool, thank you very much for providing this for Firefox as a an add on

Re: Ask HN: What was an interesting project you started and finished over a weekend?

#192
post #187

Scraping 6 million HN posts (out of a total of 40 million, 6M = some ~3 years of posts) and embedding them with openAI's text embedding models. Making these full-text and fuzzy searchable with Postgres+pgvector, using reciprocal rank fusion to merge the two rankings. Very rapid query times on a 6 year old intel NUC; a kind of hn.algolia.com search only with added semantic search, not just text search. Reducing the di…

Having this natively here would be pretty useful. There's so much good stuff that "disappears" in the barrage of submissions, that can be hard to surface via simplistic search.

Interesting, what would the ideal user interface look like, according to you? As a user, how would you like to interact with a system like this?

Re: Ask HN: What was an interesting project you started and finished over a weekend?

#193
post #127

I'm Brazilian and when I moved back home for a bit the country had recently inaugurated a national exam for all high-schoolers. About maybe a year after, they'd publish an anonymized data set for researchers with a nice question-by-question breakdown of how every student performed. I worked at a school at the time, and one thing we wanted to know was how WE had performed in the questions so we could gauge if there we…

Great work! Inspiring for me, as I am trying to build a better UI to consult the document “Base Nacional Comum Curricular” and help all schools to use it for their curriculum creation. Is your site still up?

Sadly, no. I moved back to the US and then worked on other things, but still maintained it for a few years until the ENEM microdata started to get released super behind schedule, then I gave up on the whole thing. Was called dadosdoenem.org, and you probably may encounter a reference to it here or there somewhere online. Good times... insane to think it was over a decade ago.

Re: Ask HN: What was an interesting project you started and finished over a weekend?

#194
I was teaching myself Rust and got tired of doing Project Euler problems. I've always wanted a program that made it easier to parse arguments in shell scripts. Something like Python's ArgParse. So I wrote it.

https://github.com/Shaftway/argparse

Initial implementation took about a weekend. I've tweaked and added features and documentation since then. I've only tested it in Bash and I'd love feature suggestions or a critique of the code from better Rustaceans than me. I've been using it in a couple scripts and have really appreciated the functionality.

My Hello World demo is:

    #!/usr/bin/env bash
    eval "$(argparse --string name -- "$@")";
    echo "Hello $NAME"

Re: Ask HN: What was an interesting project you started and finished over a weekend?

#195
One of my favorite weekend projects was an autoclicker. I had (have?) an intellectual infatuation with incremental games, and just found them to be incredibly alluring. I already knew how to write an auto clicker in software, using either existing software, or hooking into processes with my own functions. But, I'd never done any hardware modification for something like this. I had an old mouse, and some hardware kits for arduino/raspberry pi, so I had a 555 timer, and a switch, and a soldering iron, and a drill. And that's all I really needed. I took apart the mouse. I did some calculations, and designed my timer circuit. I soldered the button onto the circuit to click the mouse. Then I tuned the resistors to get enough clicks per second that the particular game I was playing would register them all. Then, I drilled a hole into the mouse case to give me easy thumb access to the button.

It was glorious. I could just hold down the button, and watch numbers go brrr. Sure, I could have bought any number of mice to do it for me. But I wanted to do it, and it was fun, and I have something to show for it. Someday, I may even take it apart and add a rheostat so I can adjust the click frequency. It was a simple hardware project that helped jump start my hardware/firmware career.

Re: Ask HN: What was an interesting project you started and finished over a weekend?

#196
I was messing around with friends on Discord around 4 years ago during lockdown, and it hit me you could write a minesweeper message using discord spoiler tags, so I whipped something up in an hour or two and hosting it on github pages, shared it on a couple of servers I was in, and it's still getting traffic regularly

https://igniuss.github.io/det-cord/

It was fun streaming the work to friends who aren't in the IT sphere, some are now studying to get in the industry

Re: Ask HN: What was an interesting project you started and finished over a weekend?

#197

Earlier quoted context omitted.

Looks cool! Must try it out for our next trip coming up. How did you land on the name Turas by the way? I was expecting an Irish connection as turas means 'trip' in Irish :)

> How did you land on the name Turas by the way Google Translate :) I wanted something short that meant "trip" or "travel". Give it a shot! It's not for everyone (definitely not casual planners). But if you budget, plan schedules, and especially if you plan multi-day trips with other travelers, it's a great tool!

Ah cool :)

yeah will check it out — we're already in the 'Google Sheets' mode of trip planning so sounds like we're in the target market!

Re: Ask HN: What was an interesting project you started and finished over a weekend?

#198

A media list. It is just a list of movies and mp3s with their metadata (id3 tags) and hash values. The output is just a html table that allows sorting and filtering with a hyperlink to play the media in the browser. Convenient for playing home media on the phone.

I did something similar, with a Play button that calls a PHP script that tells a Kodi instance to play the media, using JSON-RPC: https://kodi.wiki/view/JSON-RPC_API

Re: Ask HN: What was an interesting project you started and finished over a weekend?

#199

a notification system that notifies backpackers whenever a highly coveted permits becomes available. made it for myself in a few hours then spent another half day setting it up so other people can subscribe. i got two subscriptions from one reddit comment, made $20 while i was out fishing!

Do you mind sharing a link? Wrote a python script to do the same thing for myself

Re: Ask HN: What was an interesting project you started and finished over a weekend?

#200

Earlier quoted context omitted.

This is some amazing yak shavings. Noted for future reference. I guess a github link is too much to ask? :-)

https://github.com/LittleLightLittleFire/airprinter :)

Thanks!
Post reply on HN