Live data from Hacker News

Ask HN: Most interesting tech you built for just yourself?

news.ycombinator.com

681–690 of 1001 posts

Re: Ask HN: Most interesting tech you built for just yourself?

#681
I built a web app that keeps track of every link I ever find to be interesting. It allows for fine-grained topics (e.g., individual academic papers, or topics more specific than that). It groups the topics in a DAG, so that you can get to a topic via more than one path from the top. And it allows you to look at intersections of transitive closures over topics in order to narrow down a search.

It keeps a history of every change to the graph in Git, so one day you could potentially implement some form of time travel and see what the graph looked like at an earlier point in time without too much difficulty.

I have used the app every day for years. I feel like there's something promising there that is of general interest, but I have not figured out how to communicate the value.

Re: Ask HN: Most interesting tech you built for just yourself?

#682

I have a "TV channel" app running on a Raspberry Pi serving up local video content to a schedule I create. The Pi has a 5TB hard drive attached with perhaps 1000 videos or so. The app has a schedule and plays the videos according to the schedule. It starts up in the morning, plays tele-courses, moves on to old TV shows, an afternoon movie, after school shows begin around 3:00 PM, a comedy show around dinner time, an…

All this is missing is an RF modulator and a very-low-power transmitter, just enough to reach throughout the house...

Re: Ask HN: Most interesting tech you built for just yourself?

#683

I have a "TV channel" app running on a Raspberry Pi serving up local video content to a schedule I create. The Pi has a 5TB hard drive attached with perhaps 1000 videos or so. The app has a schedule and plays the videos according to the schedule. It starts up in the morning, plays tele-courses, moves on to old TV shows, an afternoon movie, after school shows begin around 3:00 PM, a comedy show around dinner time, an…

I did the same thing with my Chromecast, I made it play a random episode from my library, one after the other, so there was always something I liked on.

Re: Ask HN: Most interesting tech you built for just yourself?

#684
I keep all my projects and other repos that I clone under `~/src` e.g. `~/src/github.com/rails/rails` for the rails project. I then have the following fish function to navigate to a project:

  function c
    set -l directory (fd -d 5 --prune -a -H -t d -g '.git' ~/src ~/b -x dirname {} | fzf --tiebreak=length,begin,end)
    if test -n "$directory"
      and test -d $directory
      cd $directory
    end
  end
I just type 'c' and then 'rails' and I'm in the rails project. I really like diving into code and this makes it much faster.

I also have this one to clone or cd a project from github like `gc rails/rails`

  function gc --argument repo
    set -l dir $HOME/src/github.com/$repo
    if not test -d $dir
      if test -d $HOME/go/src/github.com/$repo
        set dir $HOME/go/src/github.com/$repo
      else
        mkdir -p $dir
        if not git clone "git@github.com:$repo.git" $dir
          set -l git_status $status
          rmdir $dir 2>/dev/null
          return $git_status
        end
      end
    end
    cd $dir
  end
And this function:

  function list_after_cd --on-variable PWD
    ls
  end
Runs ls every time I change directory, which you basically always want anyways

Re: Ask HN: Most interesting tech you built for just yourself?

#685
It didn’t really stay personal, but I built a very basic Raspberry Pi Pinout website hosted on a Raspberry Pi [1] back in 2013. The intent was to collect the pinouts for some boards I was tinkering with at the time. It got wildly out of hand since [2] [3], but I think the original site meets the spirit of this question.

1. https://web.archive.org/web/20130505194305/Pi.Gadgetoid.com/... 2. https://pinout.xyz 3. https://pico.pinout.xyz

Re: Ask HN: Most interesting tech you built for just yourself?

#686
post #593

I just moved to the bay area. I made an app that scrapes all bay area events from meetup, eventbrite, and a couple of other sites- This way you end up with around 100 events a day, way too much to read through. So next I take each event, send it to chatgpt3.5 and ask it to rate this event on around 20 parameters. Next, I take the latitude/longitude of each event and measure driving distance from my house. Then I have…

I built a site to scrape events from my city and show them all on one page. It was amazing for finding things to do, until Facebook shut down their events API and the site died overnight.

Re: Ask HN: Most interesting tech you built for just yourself?

#687
I've made a tool to create 3D tours based on Threejs Editor and it has been really useful to make presentations more compelling.

To create the presentation, you have to import 3D models (preferably fbx or glb) and place them in the 3D environment as desired. To create a "slide" you just have to click on the "new" button under the "slide" tab and it will capture the camera pose.

After creating some slides you can press the "start" on the menu to preview the presentation. Once everything is loaded, you can scroll through the preview page, and the camera will be animated sequentially between the captured poses.

That's the basic usage, but there are also other features available.

The editor page: https://arthurmiy.gitlab.io/editor_slide_3d/editor/index.htm...

Presentation made using the tool: https://arthurmiy.gitlab.io/se-webview/jaguariuna.html

Re: Ask HN: Most interesting tech you built for just yourself?

#688
post #663

For 6 years I had a long distance relationship between Peru and Germany. When you are in different timezones it can actually be nice to fall asleep with the other person "close" to you; so we kept Skype running while one of us went to bed and the other person was working on the PC. Unfortunately the internet connection would regularly drop, ending the Skype call. Now you did not want to wake the other person by calli…

Great story. I love this thread.

Re: Ask HN: Most interesting tech you built for just yourself?

#690
post #270

I co-organized a weekly hacknight meetup of 40-70 people. I wrote a script to make Anki spaced repetition flash card decks with avatars and names pulled from the meetup API. I would use GitHub Actions to run the script a few hours before the event, then drop the importable deck into a Google Drive folder. I'd review the deck before the meetup, and then at the event, I'd not stress about names. I'd pretend to introduc…

Anki (and Mochi) are great for names of neighbours, other kids‘ parents at daycare, and people you don‘t meet often. My wife just remembers any name she‘s heeard once. I can cheat.
Post reply on HN