Ask HN: Most interesting tech you built for just yourself?
401–410 of 1001 posts
Re: Ask HN: Most interesting tech you built for just yourself?
#402Not used by many people, but accomplished what I set out to: an extension that is accessible easily via keyboard shortcut at all times, that allows me to visually (open graph images, screenshots, thumbnails) search any bookmarks saved to Chrome.
The search is super-quick, and it has a bunch of other keyboard-shortcuts to quickly navigate my bookmarks.
Re: Ask HN: Most interesting tech you built for just yourself?
#403Re: Ask HN: Most interesting tech you built for just yourself?
#404Re: Ask HN: Most interesting tech you built for just yourself?
#405Amiga computers have
- a main processor (MC68000 or higher),
- a bit blitter, which can perform memory various operations in memory (using 3x source and 1x target, it can AND, OR etc. them),
- and a Copper, which have own "program", it can interpret 2 type of instructions: WAIT for a scanline position (4-pixel precision), and COPY value to a specified regsiter.
It was the name, which made me think: "Copper" is coming from "coprocessor". Well, it can run WAIT and COPY instructions, but the program's time-scope is somewhat restricted, the program is running every screen refresh cycle only once. Is it possible to write a program for Copper, which is doing some more, like animation?
I've generated several color bar frames for Copper, which adds up as a bouncing bar, and as the last instructions, I've added a COPY instruction, which sets the address of the Copper List to the next frame (the last one pointed to first frame).
So, it worked, the bar was bouncing without any support from the processor (besides initial generation and setting of the Copper List address first time).
Blitter and audio DMA is fantastic, it's a big help that the processor just puts an order to a hardware and it executes, but Copper is a degree more bigger magic, it can make things autonomously, which I was demonstrated.
Re: Ask HN: Most interesting tech you built for just yourself?
#406Re: Ask HN: Most interesting tech you built for just yourself?
#407I like to play Factorio, but too often lose track of time while playing. There's no clock in the game's UI, and no way to access the system's time through the mod API. So I made a script that runs as a process on the host machine that every minute, sends commands to the game's process to build a clock in the center of the map out of concrete. Its pretty cool because you can also clearly see the time from the mini map…
Re: Ask HN: Most interesting tech you built for just yourself?
#408Called it The Intersect because I was and still am a huge fan of “Chuck”.
It sped up my client projects so much that it killed my hourly income.
Now there are lots of systems that do this type of thing, but at the time I was very proud of that system. It was nice to be able to focus on web project from a purely data design back approach.
Re: Ask HN: Most interesting tech you built for just yourself?
#409Re: Ask HN: Most interesting tech you built for just yourself?
#410---
Another one is https://shellshare.net. I use Linux for a while, and from time to time someone would ask my help with something. If you ever tried debugging a problem in someone's else terminal over the phone, you know how frustrating it can be. So I built it as a way to share a read-only stream of your terminal with a one-liner command.
It's been a while since I used it myself, but there are some people that use it for teaching in universities.