TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Is there any software you only made for your own use but nobody else?

246 pointsby Crazyontap11 months ago
Just wondering if any of you has created any software that is meant for your use only and will never see the light of the day for anyone else.<p>What does it do? How did you make it? How much time you spent making it? How often do you use it?

286 comments

rowofpixels11 months ago
I built a hydroponic garden as a covid hobby. I wrote software to maintain the garden, water it on schedule, apply ph changes to the water, turn lights on &#x2F; off, humidify, as well as monitor statistics (temperature, humidity, water temperature, water ph, water conductivity).<p>Rough guess would be that I spent 50 hours actually working on the software.<p>There&#x27;s a handful of raspberry pis involved. I wrote everything in elixir and used <a href="https:&#x2F;&#x2F;nerves-project.org" rel="nofollow">https:&#x2F;&#x2F;nerves-project.org</a>. The dashboard is written with phoenix live view. One of the raspberry pis is the &quot;brain&quot; and basically runs the dashboard and controls devices. The devices are all in an elixir cluster. I also run timescale db for some basic history of metrics.<p>Once I start a grow I don&#x27;t use it that much actively, but it passively runs all the time. I check in every few days or week to make sure nutrients are looking good.<p>I&#x27;ve grown strawberries, lettuce, jalapenos, and cayenne peppers.
评论 #40884352 未加载
评论 #40884248 未加载
评论 #40884712 未加载
评论 #40887623 未加载
评论 #40884090 未加载
评论 #40883975 未加载
评论 #40884162 未加载
galdosdi11 months ago
Reminds me of a classic story that makes a good programming parable:<p>Back in 2011, my girlfriend was working at a catering company that announced shifts via a webpage and workers had to sign up for them. Other workers tended to pick them up very quickly, so it was hard to get too many shifts.<p>I wrote a quick web scraper to automatically accept any shift offered and email her.<p>For a couple weeks it was great, suddenly she had all the work she needed.<p>Then one day she woke up late to find a voicemail telling her she was fired.<p>Earlier that morning the script had detected a last minute job announced just an hour before start time and immediately accepted it, resulting in her not showing up to it. I had not accounted for the possibility they would announce a job so last minute, since it had never happened before.
评论 #40884699 未加载
评论 #40909474 未加载
评论 #40886075 未加载
6511 months ago
Almost all of the software I make in my free time is for my own use.<p>My most used tool I have is a note taking web app that automatically saves markdown files to S3. The most important feature I added was a little button that would automatically make a note for the current day, and put it in the daily notes folder, all sorted and organized. I also have full text search which is very helpful for finding old notes.<p>I also use an RSS reader I made. Instead of just showing you the text of the page like a standard RSS reader, it proxies the web page so you can read the article directly from the website, but with the added benefit that since it&#x27;s a proxy, I can control all the HTML, CSS, and Javascript on that page.<p>Another daily one I use is a random background music playlist for Spotify that is auto generated daily. Using the Spotify API you can find random music, then find random instrumental music from that random music. I use this to discover new songs to listen to while working.<p>Basically, making your own software is fun. Making production software is much less fun. I don&#x27;t need to worry about a million things when I make my own software. Sure, I make $0, but if I spent months making, for example, my notes app production ready, and tried marketing it, I&#x27;m guessing I&#x27;d still be sitting at $0.
评论 #40883837 未加载
评论 #40883647 未加载
评论 #40883660 未加载
评论 #40883638 未加载
评论 #40884094 未加载
fardinahsan11 months ago
Yes. I made two recently.<p>- TalkToYoutuber[1]: Download the transcripts from a youtube channel and hook it up to gtp4 with RAG to let me &quot;talk&quot; to youtubers. There&#x27;s a bunch of youtubers who have useful knowledge to share, but no blog or wiki, so semantic searching their video transcripts is the next best thing.<p>- YoutubeThumbnailSearch[2] - Embded all of a youtube channels thumbnails using CLIP and search them using text. I often need to search through news channels with 10k+ videos, often in foreign languages, so not having to rely on the title or transcript but the video thumbnail helps. This is a much more niche usecase tbf.<p>I am thinking of making a scaled down version of [1] so I can &quot;talk&quot; to long videos, like conference speeches or university lectures. Should take an hour or two to cook it up since it will reuse most of the code from [1].<p>---<p>[1] <a href="https:&#x2F;&#x2F;github.com&#x2F;FardinAhsan146&#x2F;TalkToYoutuber">https:&#x2F;&#x2F;github.com&#x2F;FardinAhsan146&#x2F;TalkToYoutuber</a><p>[2] <a href="https:&#x2F;&#x2F;github.com&#x2F;FardinAhsan146&#x2F;YoutubeThumbnailSearch">https:&#x2F;&#x2F;github.com&#x2F;FardinAhsan146&#x2F;YoutubeThumbnailSearch</a>
评论 #40884188 未加载
评论 #40897339 未加载
评论 #40884101 未加载
boricj11 months ago
Over the past two years I&#x27;ve been working on tooling that allows me to delink programs back into object files. What started out as a bunch of Jython scripts is nowadays a full-blown Ghidra extension that can export working object files from a program selection in two mouse clicks. I&#x27;m using it as part of a video game decompilation project, but it also enables a whole bunch of other use cases I&#x27;ve documented on my blog.<p>It&#x27;s not that it is meant for my use only (any capable reverse-engineer familiar with Ghidra should be able to pick it up and use it) nor that it will never see the light of the day (it&#x27;s open-source). However, it is such an esoteric capability and outright heresy according to computer sciences that I&#x27;m having a hard time just finding people who can wrap their heads around the concept, let alone people who would actually want to use this. Simply put, it&#x27;s so far out there that I don&#x27;t even know where or how I could even advertise it in the first place, which makes it <i>de facto</i> for my own use only.<p>A couple of people did end up reaching out to me in the last couple of weeks about it, so it might be on the cusp of sprouting a very tiny user base. Still, I&#x27;ve made it for my own use and until very recently I&#x27;ve never expected anybody else would use it.<p>If someone wants to check out the dark magic: <a href="https:&#x2F;&#x2F;github.com&#x2F;boricj&#x2F;ghidra-delinker-extension">https:&#x2F;&#x2F;github.com&#x2F;boricj&#x2F;ghidra-delinker-extension</a> (disclaimer: might give nightmares to linker developers).
评论 #40884225 未加载
评论 #40883429 未加载
5pzv1kn311 months ago
I’ve developed several webapps to help our family and personal life:<p>* <i>Vehicle Maintenance Tracker:</i> Logs all vehicle maintenance and sends reminders based on time or mileage for upcoming tasks. This one is probably one of the most used and useful of everything I have made.<p><i>Lend&#x2F;Borrow Tracker:</i> Keeps track of items we&#x27;ve lent or borrowed, to&#x2F;from whom, and when. We use it most for books, but it can be used for anything.<p><i>Library Book Manager:</i> Lists all the books we checked out from local libraries, displaying their cover images and ISBNs. Using a barcode scanner, we can quickly &quot;check in&quot; books on return day, accompanied by an adorable &quot;ding ding!&quot; sound recorded by one of my kids. Really beats manually searching the paper printout. It can be used on multiple devices at the same time - the checkin status of each book is synced live between all users, so each kid can find and check in their own books.<p><i>School&#x2F;Home Lunch Manager:</i> Displays the school lunch menu alongside each of my kids’ names. We mark school&#x2F;home lunch days at the start of the week for easy morning prep.<p><i>Sickness Documentation:</i> Tracks sickness details like symptoms, medication, temperatures, and timelines, helping us coordinate how we are going to take care of the kids when they are sick.<p>These apps, along with a few others not listed here, run on a server in my home, accessible only within our network (in home of via a VPN).
评论 #40958411 未加载
mikelevins11 months ago
Yep.<p>I wrote bard, a Lisp that combines features of Dylan, Common Lisp, and pure-functional languages purely as a long-running experiment in what I could do to make programming more fun for myself. I subsequently used two versions of it in client projects (to prototype some solutions and to compile them to data used by the delivered product; nothing delivered to the clients depended on my weird Lisp dialect).<p>I wrote a tool called nym to help generate names for characters and other things in games and stories. It&#x27;s enough fun in itself that I sometimes just play with it.<p>I wrote another tool called model-namegen to generate names with stricter constraints for science-fiction stories. Those names are mapped uniquely and reversibly to 64-bit integers used in the story to generate names for machine intelligences. I also wrote a prototype for a 3D multiplayer game called The Fabric set in the world of those stories, and wrote code to generate clusters of colored cubes for use as avatars representing the AIs. Each character&#x27;s unique ID is mapped to a unique name and also to a unique 8x8x8 configuration of lighted cubes. An example name is Ixion Eleven Chrysotile, the name of the autonomous robot who is the narrator of my Fabric stories.<p>Following is a link to a very short movie of the avatar for the character Miriam Five Bittersweet Earth: <a href="https:&#x2F;&#x2F;evins.net&#x2F;downloads&#x2F;miriam-5-bittersweet-earth-2-2.mp4" rel="nofollow">https:&#x2F;&#x2F;evins.net&#x2F;downloads&#x2F;miriam-5-bittersweet-earth-2-2.m...</a><p>I wrote a couple of versions of a library for Common Lisp to make certain functional programming idioms I like more convenient for me in Lisp. They&#x27;re called folio and folio2.<p>I wrote a library called taps that similarly makes use of Richard Waters&#x27; SERIES package for Common Lisp a bit more convenient for me. Actually, taps started as part of folio and I ended up wanting to use it on its own often enough that I broke it out separately.<p>I&#x27;ve written several little tools for calculating and keeping track of information that&#x27;s useful for friends-and-family gameplay.<p>I&#x27;ve written several other libraries and applications purely for the purpose of exploring some idea or other that interests me. For example, beasties was a pond-life simulation that I used as a playground for recreational genetic programming. Panels was an experiment in user interface that used a constraint solver for laying out windows and widgets, and an append-only log of all UI events together with a query engine and a knowledgebase. Panels could display graphic representations of recent user activity and retroactively define mappings from sequences of events to user-defined handlers. It operated on the principle that everything detectable that a user did potentially had some purpose, even if we don&#x27;t know what it is, so we should remember all the user&#x27;s actions and offer them the opportunity to define what they meant.<p>I&#x27;ve also written a few little things primarily for the purpose of helping friends and family with this or that task.<p>I&#x27;ve spent a lot of time over the years on things like these. As you would expect, they&#x27;ve taken varying amounts of time and I don&#x27;t really keep track of how much. I use some of them (e.g. taps and other pieces of folio) almost every day, and others intermittently. A few of them (such as beasties and panels) I haven&#x27;t really touched in years now.
BoppreH11 months ago
I have a 3-letter domain that I use as my personal playground (think &quot;xyz.com&quot;). It features:<p>- One-click anonymous upload of text, clipboard, and files. So from any computer, I can visit xyz.com + ctrl+v to upload the clipboard, write notes to myself, drag and drop a file, etc. It&#x27;s a risky feature, but there&#x27;s nothing to attract attention and you don&#x27;t even get a URL back.<p>- Authenticated sessions see a list of uploaded files, with buttons to copy link, download, delete, or generate QR code. There&#x27;s also real-time notifications for each upload.<p>- Simplified RSS feed reader[1]. It scans my feeds every 10 minutes, and displays the URLs of new items. It has one button, that opens all URLs in new tabs and marks them as read.<p>- A Server-sent-events channel[2], and a UI that displays visitors in real time. The channel allows me to send redirects&#x2F;file downloads to any visitor, so I&#x27;m constantly asking people to visit xyz.com when I need to hand them something digitally. Visitors are color coded with randomized backgrounds for identification.<p>- Youtube video downloader (powered by yt-dlp), along with audio extractor and pitch+speed correction for songs.<p>- Authentication is by approval from an already authenticated session (usually my phone). In the worst case I can edit the text file via SSH.<p>I add or remove widgets according to my needs. At one point I had chat integration with Facebook+WhatsApp+Telegram (got me banned from WhatsApp), radio player (replaced with Spotify), and even balances by scraping my bank accounts, credit cards, and Steam (removed after a bank started asking questions).<p>The whole thing runs in custom pair of Go and Python servers, developed slowly over the last ten years, and I use it multiple times a day. Feels like a digital tree house, messy but fun and useful.<p>[1]: <a href="https:&#x2F;&#x2F;github.com&#x2F;boppreh&#x2F;feeder">https:&#x2F;&#x2F;github.com&#x2F;boppreh&#x2F;feeder</a><p>[2]: <a href="https:&#x2F;&#x2F;github.com&#x2F;boppreh&#x2F;server-sent-events">https:&#x2F;&#x2F;github.com&#x2F;boppreh&#x2F;server-sent-events</a><p>Edit: people have found it and started spamming uploads of &quot;HELLO FROM HN&quot;. One IP looks Swedish. Well, Hi! But I&#x27;m taking it down for a few days to avoid tempting more people.<p>And shoutout to the Go team, that server has been rock solid and 100% backwards compatible over the past ten years.
评论 #40883849 未加载
评论 #40884355 未加载
评论 #40884426 未加载
评论 #40893959 未加载
AlbinoDrought11 months ago
I would add videos I liked to the &quot;Liked Videos&quot; or other playlist areas on my YouTube account. I&#x27;d return to find the video months or years later, only to see that it may have been removed (usually due to copyright or other channel closure). This video removal issue also extended to other platforms. I found this annoying.<p>To avoid this, I made an extremely simple video platform. I save all my videos there instead. It&#x27;s still my hobby project that I use the most.<p>The code is at <a href="https:&#x2F;&#x2F;github.com&#x2F;AlbinoDrought&#x2F;creamy-videos">https:&#x2F;&#x2F;github.com&#x2F;AlbinoDrought&#x2F;creamy-videos</a><p>There&#x27;s an optional youtube-dl importer UI at <a href="https:&#x2F;&#x2F;github.com&#x2F;AlbinoDrought&#x2F;creamy-videos-importer">https:&#x2F;&#x2F;github.com&#x2F;AlbinoDrought&#x2F;creamy-videos-importer</a> (separated for easier updates)<p>The importer repo also contains a Firefox extension so any target can be right-clicked -&gt; Import to Creamy Videos -&gt; Select a set of tags -&gt; sent to the importer UI, youtube-dl, and then eventually video storage: <a href="https:&#x2F;&#x2F;github.com&#x2F;AlbinoDrought&#x2F;creamy-videos-importer&#x2F;tree&#x2F;master?tab=readme-ov-file#firefox-extension">https:&#x2F;&#x2F;github.com&#x2F;AlbinoDrought&#x2F;creamy-videos-importer&#x2F;tree...</a>
guessmyname11 months ago
Financial Tracking Application.<p>I’ve been developing this app for five years. During this time, I’ve integrated it with all my bank accounts to automatically fetch data needed for creating daily graphs and analyzing trends. This allows the app to generate predictions for long-term net worth growth.<p>Additionally, I’ve integrated the app with Yahoo Finance, Fidelity, and Morgan Stanley to monitor my Restricted Stock Units (RSUs) and Employee Stock Purchase Plan (ESPP). This functionality helps manage tax responsibilities on capital gains and compare growth with other job offers that include RSUs from different companies. For instance, I can answer questions like, <i>“What if I had chosen to work at Facebook instead of Apple?”</i><p>The app also extensively utilizes data from credit card transactions. It includes charts listing new restaurants visited in the last month, tables tracking monthly subscriptions, algorithms to detect discrepancies, and numerous other features.<p>While I’ve considered turning this into a business, my current job keeps me very busy.
评论 #40885021 未加载
评论 #40886244 未加载
monitron11 months ago
I wrote my own home automation platform. I started &gt;10 years ago when the existing options were pretty disappointing to me. It’s a web app that runs on wall mounted tablets in my house as well as on my and my family’s phones and computers.<p>It handles lights, fans, cameras, sensors, locks, doorbells, speakers and TVs, HVAC and more. It runs automations based on time, weather, presence of people, and other events. It tracks energy consumption, sends alerts, etc. There’s a strong focus on local control (as opposed to cloud).<p>My favorite thing about it is that the client and server run from the same codebase and share state over a WebSocket connection. I’m still working on it occasionally but mainly it just runs quietly and my people seem to like it. The whole thing is configurable (connectivity, behavior and interface) so theoretically it could be used by someone else, but for many reasons I doubt it ever will :)
arnaudsm11 months ago
As a freelancer I invoice in multiple currencies, and I couldn&#x27;t find a program to generate them that wasn&#x27;t an overly complex $100&#x2F;mo SaaS.<p>So I build a little cli to generate my invoices. 100 loc and super simple.<p>I miss the 70s when programming was the default way to solve problems. Excessive abstractions and proprietary software often slow us down.
评论 #40884195 未加载
评论 #40883589 未加载
评论 #40883583 未加载
beattheprose11 months ago
Web service that turns a YouTube channel to a Podcast-compatible RSS feed, just by changing the URL from <a href="https:&#x2F;&#x2F;youtube.com&#x2F;XYZ" rel="nofollow">https:&#x2F;&#x2F;youtube.com&#x2F;XYZ</a> to <a href="https:&#x2F;&#x2F;$SERVICE_URL&#x2F;XYZ" rel="nofollow">https:&#x2F;&#x2F;$SERVICE_URL&#x2F;XYZ</a>.<p>Use it almost every day. It’s nice to keep up with channels I care about while escaping the algorithm.<p>Something I work on-and-off on. Could be interested in open-sourcing it fully if folks are interested in helping out. Im a pretty junior engineer, so work is slow and I’ve never been satisfied enough with the code to publish yet.
评论 #40883560 未加载
评论 #40883804 未加载
评论 #40887795 未加载
ycuser211 months ago
I made a small tool that takes a screenshot all 5 minutes and stores it in a password protected zip file, but only if something has changed on screen.<p>Sometimes I go through the old screenshots and get nostalgic as the oldest are 10 years already.<p>I spend so much time of my life on my computer, so why not take photos of it?
评论 #40884927 未加载
评论 #40884287 未加载
评论 #40887069 未加载
评论 #40884334 未加载
thiagoperes11 months ago
I created my own translation app using llama3-80b, I call it &quot;expat translator&quot;: I live outside of my home country and always struggled with using translators like Google Translate because they don&#x27;t tell you if the way you&#x27;re writing something feels natural in the other language. It gives me some pretty good results and I also instruct it to give me rewrites for informal and professional use, so I don&#x27;t sound weird on WhatsApp for example.<p>It uses an on-device model for language detection and results are sub 0.3s thanks to groq<p>If someone wants to try: <a href="https:&#x2F;&#x2F;testflight.apple.com&#x2F;join&#x2F;GBxPMw2h" rel="nofollow">https:&#x2F;&#x2F;testflight.apple.com&#x2F;join&#x2F;GBxPMw2h</a>
评论 #40882981 未加载
评论 #40883027 未加载
ww52011 months ago
Lots of my software are for myself. To algorithmically generate wallpapers for my phones and computers, I hacked up a forth-like mini language running on GPU to make generative arts easier. Some samples <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=40413433">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=40413433</a>.<p>To make recalling my web browsing easier, I built a browser extension that shows my browsing related information on one page. Pressing the shortcut key Alt-L brings up a page showing my frequently visited sites, my open tabs, my bookmarks, and my history visits. Searching and navigation are super easier. Searching can combine terms with logical operators. The hardest part of the project was getting fast performance when rendering a lot of data.<p>I use this extension daily, and I put in some effort to polish it as a releasable software.<p><a href="https:&#x2F;&#x2F;chromewebstore.google.com&#x2F;detail&#x2F;one-page-favorites&#x2F;mdoppilgghjegepipffonkhjemdghgpl" rel="nofollow">https:&#x2F;&#x2F;chromewebstore.google.com&#x2F;detail&#x2F;one-page-favorites&#x2F;...</a><p><a href="https:&#x2F;&#x2F;microsoftedge.microsoft.com&#x2F;addons&#x2F;detail&#x2F;one-page-favorites&#x2F;gnhomonbmcfhbfgbloacgnpgjcefbanm" rel="nofollow">https:&#x2F;&#x2F;microsoftedge.microsoft.com&#x2F;addons&#x2F;detail&#x2F;one-page-f...</a><p><a href="https:&#x2F;&#x2F;addons.mozilla.org&#x2F;en-US&#x2F;firefox&#x2F;addon&#x2F;one-page-favorites&#x2F;" rel="nofollow">https:&#x2F;&#x2F;addons.mozilla.org&#x2F;en-US&#x2F;firefox&#x2F;addon&#x2F;one-page-favo...</a>
joseph_b11 months ago
Circa 2018, I went deep into investigating ADHD and whether I had it or not. I ended up &quot;interviewing&quot; a rather diverse group of people, from authors, teachers, and ADHD coaches to psychologists and other doctors. During this time, I was reaching out to many people, managing schedules and appointments, and eventually publish the interviews. The &quot;reach out&quot; to &quot;interview&quot; ratio was something like 100:1 and took a lot of management.<p>This was my part-time hobby, I guess. My full-time gig is a software engineer at a bio-tech company.<p>So, I wrote some basic web software (PHP&#x2F;Symfony) to manage and track the whole process. It took around 3 months to write the code, though there was no set beginning and no set end. The code was started when I became overwhelmed with the manual aspect of tracking everything. The code was done when I figured I had done enough to manage and automate the process.<p>Talking with a few people after the fact indicated very high interest in the software I had written. And thus began the journey to convert it to multi-user.<p>I started on the multi-user conversion and, maybe because I tried to make it do everything and then some, have not since finished it. The code is on my private GitHub, partially converted to multi-user, slowly rotting away (needs library and core updates).<p>What does it do? Manage the process of cold lead acquisition, follow-up interactions and onboarding, and eventual publishing of the resulting interviews.<p>How did I make it? PHP&#x2F;Symfony.<p>How much time spent making? About 3 months in my spare time.<p>How often do I use it now? No longer used.
costco11 months ago
40 lines of C to control brightness on Linux in the way I like (Pressing brightness up key should make it go up more than pressing brightness down key makes it go down). It took 20 minutes to make. Used as a keyboard binding.<p>TODO list program and the list is periodically printed on my desktop with conky<p>Software to automatically book reservations at good restaurants on Resy. Supported proxies, multi account, automatically running every day and getting reservations in a certain time range, and even something with a USB GSM modem to respond to the confirmation texts you get a day before. Used it until I got banned from Resy :\<p>Family photo search using CLIP (actually uform) and face labels from Synology NAS. So you can search “winter +christopher” and it will only show pictures of me and sort by the most winter related ones. You can also filter out certain names, search multiple names, click on an image to get images most like it, filter by year, or any combination thereof. Took a couple days to make with Flask, pgvector, and some code to scrape data from the Synology web interface. My family uses it sometimes too though.
评论 #40929640 未加载
评论 #40884037 未加载
explorigin11 months ago
I once ripped the corner of my windows install code sticker. I was missing the last 2 characters. I wrote a script in SikuliX to bruteforce the remaining 2 characters. It took about 4 hours to run but in the end, I got the full valid code.
评论 #40883725 未加载
bengarney11 months ago
I wrote a tool to do automated QA on internet video (HLS&#x2F;DASH, tech used for Netflix, YouTube, Twitch, etc.).<p>It evaluates streams against a database of 100 or so &quot;quirks&quot; that identify either general issues or issues that will only manifest on certain player libraries. For instance, specific &quot;in spec&quot; encodings which are actually non-standard in practice get flagged.<p>Built on TypeScript&#x2F;node&#x2F;Docker over the course of maybe 18 months. Used it fairly often when I was working in the space, not at all these days. Originally the plan was to license it as an enterprise vid tool.<p>(I&#x27;ve been considering open-sourcing it - would YOU use it if so?)
评论 #40888977 未加载
评论 #40887608 未加载
jeffreyrogers11 months ago
I wrote a script that looks at C++ files, figures out the dependencies (by looking at what headers they include) and automatically compiles and links out of date files. It makes programming in C++ sort of like programming in a modern language like Go. It took me a couple of days to implement and I use it any time I am working on my own C++ projects. I eventually want to add package management features to allow integration with external libraries, but this isn&#x27;t a priority for me currently.<p>I have also worked on trading algorithms that used publicly available info about crypto order books to make profitable trades, which will obviously not be published since then they would stop working.
评论 #40884486 未加载
seemack11 months ago
I wrote an app to log mileage while doing deliveries, etc for my small business. It gives me a small tax benefit at the end of the year. To make it more fun, I gave the UI a &quot;terminal&quot; flair.<p>I wrote it over the course of a week or so and I use it frequently.<p>It&#x27;s not that it won&#x27;t see the light of day for anyone else but it&#x27;s a very specific niche so I doubt anyone would even find it on the app store<p>If anyone&#x27;s curious: <a href="https:&#x2F;&#x2F;play.google.com&#x2F;store&#x2F;apps&#x2F;details?id=io.thisischris.terminal.triplogger">https:&#x2F;&#x2F;play.google.com&#x2F;store&#x2F;apps&#x2F;details?id=io.thisischris...</a>
prayashm11 months ago
In high school I built a chrome extension to secretly chat with my girlfriend on the Google Search page.<p>Her parents were super strict and would not allow having a boyfriend, we were caught once so wanted to be few steps ahead of their detection.<p>Using internet was allowed for her to study. Made the extension such that when you search for something popular click on the largest image in knowledge graph (right side box) 4 times and then do a right click the wikipedia description will become a chat box (to avoid accidental discovery by her sister).<p>Backend a very simple .txt file and php to insert and maintain only last 5 conversations.<p>I think I made it over a few days. We used it for a total of 2 times because we couldn’t notify each other when we come online.<p>Switched to a simple ROT13 encoded sms-ing. With the key changing every day.
评论 #40929775 未加载
评论 #40889291 未加载
yolovoe11 months ago
An out-of-spec DNS server implementation that helps me understand and control my internet usage.<p>The DNS server resolves queries based on rules I&#x27;ve set up. Essentially, I can configure certain categories of websites to only resolve at certain time periods.<p>For example, I could make it so reddit, HN, etc, only resolve for a 5 minute time period (either anytime or only in the mornings) every day.<p>The point of the server is to track my web usage across all personal devices, and then make conscious decisions to control my internet usage based on this data. (All personal devices are on the same tailscale VPN... that&#x27;s how I ensure I am always using my DNS no matter the network I am on.)<p>It&#x27;s still a WIP, but I&#x27;ve probably easily sunk over 40 hours on it by now. I also wrote a custom Rust async runtime (single-threaded) for fun.
评论 #40888824 未加载
评论 #40885279 未加载
unsupp0rted11 months ago
I was selling an apartment in a developing country. I wanted to know, given the constantly updating property sales tax and rapidly worsening exchange rate, how much I’d end up pocketing in USD, if I sold for X vs X - 5% vs X - 10%, etc<p>That would inform my “I’m willing to go as low as” selling price.<p>So I built myself an app to scrape the current tax from the government’s online calculator and assemble a dozen what-if scenarios, given the current exchange rate.<p>When I found one that would let me break even, cash in hand after all fees and taxes, that became my price floor.<p>It worked. Now I don’t need my app anymore.
评论 #40886276 未加载
sir_pepe11 months ago
My day job is all about doing presentations, so I obviously wrote my own slide software. It is a pure expression of my workflow, my requirements, and my idiosyncrasies and the way all of the above changed over ~10 years. It is a great performance booster if you can basically brain dump your thoughts straight into slides, and if you can just implement breaking changes (or choose to keep supporting an objectively bad feature for all eternity). I don&#x27;t need to care about any other users, or the bus factor.<p>The only part of that software that ever became public was the animated syntax highlighter[0], but I don&#x27;t believe any other part would help anyone else accomplish anything.<p>[0] <a href="https:&#x2F;&#x2F;code.movie&#x2F;" rel="nofollow">https:&#x2F;&#x2F;code.movie&#x2F;</a>
xolox11 months ago
Over the years I&#x27;ve built lots of small and large tools for personal use, some of them I&#x27;m still planning to release as open source &quot;one day&quot;, others I have no intention of ever releasing.<p>One of the biggest and most useful of those tools is a Django web interface that accepts JPG&#x2F;PNG&#x2F;PDF file uploads of scanned documents and in case of images (JPG&#x2F;PNG) it will run &quot;tesseract&quot; to OCR extract text from the images (in case of PDF it will pdf2txt). The extracted text is stored in an SQLite database which enables keyword search in the uploaded documents.<p>I use this as my (digital) archive of important documents, e.g. mortgage, bank statements, insurance, medical files, etc. I just checked and I now have 1129 documents in there ranging all the way back to 2006 .<p>It&#x27;s super useful to be able to go back in time digitally, without having to dive into the collection of physical binders with the real documents (ordered by year and month but nothing beyond that, given that there are usually only a handful of documents per month, and I can use the web interface as an index into the physical archive, if I ever need it).
评论 #40883773 未加载
koeng11 months ago
I pretty much rebuilt my bioinformatics stack from scratch in Go, and I’m pretty proud of it! It does things that no other library, even python libraries, do for synthetic biology applications.<p>I’m pretty sure nobody else uses it, but I use it a lot for DNA design work for my company <a href="https:&#x2F;&#x2F;github.com&#x2F;koeng101&#x2F;dnadesign">https:&#x2F;&#x2F;github.com&#x2F;koeng101&#x2F;dnadesign</a>
评论 #40885428 未加载
WoodenChair11 months ago
Yes, I run a daily hyper-local email newsletter that is custom built. It&#x27;s called BTV Daily: <a href="https:&#x2F;&#x2F;btvdaily.com" rel="nofollow">https:&#x2F;&#x2F;btvdaily.com</a><p>I wrote the newsletter generator in Python. It uses all kinds of different APIs (news, social media, MailChimp, scraping, weather, even some LLM for summarizing some of the news, etc.). It runs every day at 8 AM on a little server.<p>It&#x27;s not a super long script, but I&#x27;ve changed and refined it over the years many times. It&#x27;s like I&#x27;ve spent many dozens of hours editing the same &lt;1000 lines of code as I&#x27;ve modified, removed, and added features to the newsletter.
latexr11 months ago
You’ll probably enjoy this (relevant to your question). I’m not the author.<p><a href="https:&#x2F;&#x2F;www.robinsloan.com&#x2F;notes&#x2F;home-cooked-app&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.robinsloan.com&#x2F;notes&#x2F;home-cooked-app&#x2F;</a>
评论 #40883559 未加载
mostelato11 months ago
What does it do?<p>I built a bot that runs every 2 weeks, scrapes my local movie theater&#x27;s currently playing titles, runs them against rotten tomatoes to filter out movies rated below 85%, then looks them up on youtube and posts the trailers to my discord server<p>How did you make it?<p>Python script that runs in google cloud functions, triggered on a bi-weekly schedule<p>How much time you spent making it?<p>An evening<p>How often do you use it?<p>Every two weeks
评论 #40884063 未加载
评论 #40883604 未加载
rsoto11 months ago
I have a quite big userscript that fixes all the little annoyances I&#x27;ve been finding on the sites I often visit. Is the click area too small? I fixed it. Is there a really big form that when I select a specific value some other elements need to be at a specific state? It&#x27;s fixed now. Did we get a new business lead and we need to enter all their information to our CRM? I can now paste that info and the form will be automatically filled.<p>I find usescripts way more easy to update than an extension, so that&#x27;s what I&#x27;ve been sticking with for quite a few years now.
shkurski_11 months ago
It&#x27;s hard to call it &quot;software&quot;, but the last one was a script to merge multiple Google Calendars into one, born out of frustration with juggling them manually. It runs on Google Apps Script, reacts on triggers, so once an event is created&#x2F;modified&#x2F;removed in one of the calendars, the change is reflected in the main calendar automatically.<p>[Edit] In the opposite direction as well: if modified in main, it reflects in the original one. AFAIR, it was the feature I missed, since Google only supports (-ed?) one-way mappings.
KronisLV11 months ago
Back in the day, I had a laptop with only 4 GB of RAM, which would run out if I&#x27;d open too many browser tabs or programs. I didn&#x27;t have an external monitor always connected, nor were most of the tray monitoring solutions to my liking. So instead I wrote a program that would create a few semi-transparent windows in the OS, snap them to the sides of the screen, allow clicks to pass through and resize them as the resource usage would change.<p>A blue full sized bar on the left size of the screen? The CPU is under 100% load. A purple bar on the right side of the screen, that reaches 3&#x2F;4 of the way up? Guess my RAM usage is getting close to the limit, better not get too eager with the tabs, maybe close a program.<p>It actually wasn&#x27;t that bad, but shortly after I just bought some more RAM. That was also before I had my own Gogs or Gitea instance, so I don&#x27;t think I have the source anymore, it wasn&#x27;t too hard to do on Windows though (nowadays I&#x27;d probably just put Linux Mint on the system or something, it needs a bit less memory in general). Oh, also now I have like 4 monitors for my main PC and don&#x27;t do too much computing on the go. The 8 GB MacBook that I have for when I&#x27;m out and about feels rather slim, though.<p>Aside from that, there&#x27;s the CMS I use for my website, though I&#x27;m not showing it to anyone because it&#x27;s so bad that it makes me want to climb into a hole and disappear off the face of the planet. It still works though, so I don&#x27;t necessarily see myself changing it out for something else just yet.
SimpleCaveman11 months ago
The last thing I made exclusively for myself and nobody else was a shopping list calculator that added tax to the shopping list as a kid on my TI-83 graphing calculator. Programmed in Basic, and I would use it to add up the items going I to the shopping cart while my parents shopped at Sams club as a kid.<p>And I&#x27;d tell them what the final total would be when we were standing in the checkout line.<p>Very small and basic, but I thought it was the coolest thing in the world as an 11 year old back in 1996.
geocrasher11 months ago
I&#x27;m not a developer. I can write some bash scripts but otherwise I struggle. So, I use ChatGPT as my own private developer (version 4o with a subscription).<p>The most recent is a Chrome extension that plays a &quot;server down&quot; tone any time the word &quot;critical&quot; appears on our system monitoring web page (Netdata). It plays that tone when the number of &quot;critical&quot; words goes up, and plays a &quot;server up&quot; tone when the number goes down. It&#x27;s dead simple and works to give me audio alerts so that when I&#x27;m hyper-focused on something, I can get pulled out of it by the &quot;server down&quot; tone. It&#x27;s gone over well with my coworkers as well.
Leftium11 months ago
I made an app for my brother&#x27;s wedding so all invitees could easily upload and view photos in a shared slideshow (displayed in real-time on a big TV at the event). Dismantled as soon as the event was over. It took less than a day to create with SvelteKit, Dropbox, and <a href="https:&#x2F;&#x2F;slidesome.com" rel="nofollow">https:&#x2F;&#x2F;slidesome.com</a><p>Some more:<p>- <a href="https:&#x2F;&#x2F;weather-sense.leftium.com" rel="nofollow">https:&#x2F;&#x2F;weather-sense.leftium.com</a>: weather app with the <i>trendcast</i> just the way I like it. WIP, but already using it on daily basis.<p>- <a href="https:&#x2F;&#x2F;multi-launch.leftium.com" rel="nofollow">https:&#x2F;&#x2F;multi-launch.leftium.com</a>: quick link launcher; can launch multiple links at the same time. I use this multiple times a day.<p>- <a href="https:&#x2F;&#x2F;tt.leftium.com" rel="nofollow">https:&#x2F;&#x2F;tt.leftium.com</a>: tool to streamline conversions I frequently need. When the input type is detected on paste the converted value is automatically put into the clipboard. Also paste works from anywhere on the page. A super-niche hidden feature is if I paste the outerHTML of my SoFi relay accounts list, it will transform it into a TSV format for pasting into a Google sheets balance sheet. I use it a few times a month.<p>- <a href="https:&#x2F;&#x2F;ff.leftium.com" rel="nofollow">https:&#x2F;&#x2F;ff.leftium.com</a>: tool to calculate the time I needed to do something in a game I used to play. Automatically updated a calendar event with notifications.<p>- <a href="https:&#x2F;&#x2F;orbs.leftium.com" rel="nofollow">https:&#x2F;&#x2F;orbs.leftium.com</a>: another tool to help with planning in the game I used to play.
评论 #40932042 未加载
评论 #40883515 未加载
kredd11 months ago
Made a simple app to put all my Apple Watch walks on the same map, so I can walk every street in my city. Surprisingly there wasn&#x27;t anything available that was free or straightforward, despite it being an easy app to develop. Honestly, it&#x27;s extremely fun to use something of your own every day, and patch it up when you come up with some other ideas. I did release it on AppStore (<a href="https:&#x2F;&#x2F;apps.apple.com&#x2F;us&#x2F;app&#x2F;mapcut&#x2F;id6478268682" rel="nofollow">https:&#x2F;&#x2F;apps.apple.com&#x2F;us&#x2F;app&#x2F;mapcut&#x2F;id6478268682</a>), but mostly for my friends so they can use it as well.
评论 #40889793 未加载
abofh11 months ago
Most of what I write is for an audience of one - even if it gets merged to the company tree, I&#x27;m usually writing for my own immediate needs. But to what you explicitly ask, I contact and I hate invoice management, so I have my own time tracker cli that integrates with stripe invoicing.<p>My hours get billed, I&#x27;ve got my notes for the cycle, and payments to my LLC get automatically routed to the right financial targets based on stuff I integrated with mercury.com.<p>Doesn&#x27;t do the taxes, but cuts a lot of the low value&#x2F;high cut vendors out of my revenue cycle and that makes me happy.
blululu11 months ago
Absolutely. Of late I have an iOS app to measure the grade of hills. Initially this was to avoid parking tickets in San Francisco which requires curbing your tires for a 3% grade. The reality is that this is basically no grade and you should just curb no matter what in SF. Still fun to know how steep the hills are when walking. The other one is to set the exif data on photos to be taken in Pyongyang 100m underground tomorrow. This me is probably going to get me and my friends in trouble with the NSA for messing up their database, but these things happen.
评论 #40947931 未加载
评论 #40887613 未加载
93po11 months ago
Yes, lots.<p>I made bookmarklets to sort multiple retail stores, including my local grocery store website and Amazon by price and price per unit. Amazon price sort is nearly worthless, I assume intentionally. Drives me crazy to grocery shop without price per unit, my bookmarklet also converts units.<p>I made a browser extension that filters out youtube videos, reddit posts, youtube comments, twitter posts, twitter sidebars, and probably a couple other things based on an extremely long list of keywords of crap i don&#x27;t want to see - largely political, violent, war related stuff. I think it filters out more than half of posts on &#x2F;r&#x2F;all, partially because there&#x27;s also a long list of popular subreddit blocks on it too.<p>I made a custom interface for Habitica, a habit-tracking app, to mimic a game from the 90s I really liked.<p>I made an arduino water gun robot to spray my cats and break up frequent cat fights when i&#x27;m all the way on the other side of the apartment.<p>More random stuff like this.<p>Wish i could find a job!
pfooti11 months ago
My spouse is a teacher. The science department at the school uses a relatively complicated grading mechanism called conjunctive standards based grading, which used to require a lot of spreadsheet magic to work. I wrote a gradebook app (firebase, angular) that handles the grade entry (not grading), conversion of assessment data into grade reports for students, plus charting and stuff so you can see student or course aggregate progress over time.<p>I originally thought more people might use it, but I have basically 6 teachers.
评论 #40883044 未加载
linsomniac11 months ago
I&#x27;ve been a huge proponent of ALWAYS writing software just for yourself. But I&#x27;m also a fan of releasing that software.<p>I have a couple notable stories about that:<p>I had a friend that wanted to scan his album cover, and I&#x27;d always wanted a scanner, so I bought one and wrote some command-line software to do it. Then I applied that as an extension to the venerable Xv image software. Wrote it entirely for myself, ended up selling something like a thousand copies of it.<p>Recently, I was tired of Spotify so I wrote a Python program to export my playlists into YouTubeMusic. Released it on Github and it now is by far my most-starred project, I figure it&#x27;s helped at least a thousand people move away from Spotify, I&#x27;ve had a bunch of contributions to it and have had several people throw money my way.<p>Write for yourself, give to the world.
cobodobo11 months ago
I built fake iOS for my baby. Recreated most of the apps, phone, music, videos, notes, wallet, maps, etc.. but simple versions with giant icons. Also added a ton of &#x27;soundboards&#x27; which are their own apps for things like animals, food, family, home. I have like 20+ apps in there now.
jamesfinlayson11 months ago
I&#x27;ve open-sourced most of my stuff, but one thing I haven&#x27;t is a gambling simulator - I feed in odds and results for a season of sport and I can tune some parameters to try different strategies.<p>Someone once told me that apparently some local sports reporters&#x27; weekly tips are used with some seed money and the proceeds are given to charity and I was intrigued enough to spend a few days building something that could test that out.
bartaxyz11 months ago
The two that I still actively use<p>- Danish Swimming Water Quality App[1]: Native app for my iPhone that I use to check the water quality. The official one wasn&#x27;t working for me, too slow and too buggy. Ultimately, it&#x27;s just a JSON of public data spread on the map, very simple. - Artwork Framer[2]: Script using Blender that converts .png into a framed 3D model. You can even adjust the frame if you want and then export it as a model to be used in VR (works even in Apple Vision)<p>[1] <a href="https:&#x2F;&#x2F;github.com&#x2F;bartaxyz&#x2F;denmark-swimming">https:&#x2F;&#x2F;github.com&#x2F;bartaxyz&#x2F;denmark-swimming</a> [2] <a href="https:&#x2F;&#x2F;github.com&#x2F;bartaxyz&#x2F;artwork-framer">https:&#x2F;&#x2F;github.com&#x2F;bartaxyz&#x2F;artwork-framer</a>
applesauce00411 months ago
Oh man. Do i have a list for you! I am very self-conscious of publishing my work. So over the years i have made many software games and utilities that will never be published. My wife thinks i am being silly and i shoud publish it. Anyway, here goes....<p>MP3Renamer(2002) - The age of music piracy is still rife and i have downloaded my share from napster, university file shares, etc. However, most filenames are horrendous and not clean. So, my first utility was a java program that would analyse file names based on common garbled patterns and rename it into [Artist] - [Songname].mp3. It worked surprisingly well for 90% of the use cases,<p>CombatLogAnalyzer(2008) - Me and my wife are in the throes of World of Warcraft arena which is a competetive dueling system. We only play 2v2 and we both suck at it. So, i enabled combatlogs in WoW and then wrote a parser, analyser and visualizer for every arena game and that shows which spells were used, where did damage come up, highest contributer of damage and this was by each playable class. By the end, we learnt what was killing us and the statistics showed our strengths and weaknesses. Suffering high latency and poor skills we managed to crawl from 800 rating to 1800 rating! We just couldnt go beyond that! (I was the crutch). This was done in .NET WinForms and i really learnt how to use linq.<p>Space Commander (2019) - My daughter is almost 4 years old and i think she is ready for computer games. I decide to learn MonoGame and i make a Space Commander clone. It is a HIT!<p>HappyMrsChicken (2019) - From my smash hit game above, i make a clone of HappyMrsChicken except this is in a forest where you have corn that the chicken has to eat and there is competetion from a mysterious goblin creature who also goes after the corn. Who will win?? Turns out, i cheated and gave the chicken a boost. My daughter won a lot!!<p>OptionsTrading (2020) - It is covid and i am locked in a quarantine facility for 28 days. Like a lot of retail noobs, we are getting into trading stocks and options. I decide IBKR interface sucks and I can do better. While spending those 28 days in isolation from family, i learn react to write a frontend and python to write a backend that displays all our trades, statistics, UIs, loss calculators, PnL, etc. My wife and I use this to date but i am too chicken-shit to publish it.<p>My personal favourites are: CombatLogAnalyser, OptionsTrading and HappyMrsChicken in that order
racl10111 months ago
If you count a bunch of individual shell scripts for text processing then yeah. A bunch. I still use a lot of scripts I built like 15 years ago. Every now and then I make tiny changes but yeah I still use them a lot. I&#x27;d say 40% of the software I&#x27;ve ever built has been for me.<p>I&#x27;d say it&#x27;s a rite of passage to write software for yourself:<p>1) It gives new programmers some practice.<p>2) It can help you understand software development better.<p>3) It reinforces the concept of dogfooding what you create (even though in this case others won&#x27;t get to use your software). Again, making you better developer. You&#x27;d be surprised how many people write programs that they barely use or test. Never really knowing how useful it is or isn&#x27;t to others.
kj910 months ago
Recently, I created a website that displays a map of restaurants featured by my favorite Japanese food YouTuber (who is mainly famous as a local TV personality). It&#x27;s a public website primarily for personal use by my family and me, with minimal traffic.<p>As a fan, I was frustrated by the lack of a comprehensive list of featured restaurants, with watching all videos being the only way to find them. So I developed this website to see all locations on a map. I was surprised by how many restaurants were featured, so many pins on the map! Now, I&#x27;m enjoying trying out and planning visits to these places.<p>The biggest challenge was extracting restaurant information from the videos. Each video ends with a brief 3-second slide showing the restaurant&#x27;s name and partial address. My solution converts videos to images, runs OCR, extracts text, uses an LLM to generate JSON data, and adds geolocation information. I set this up as a GitHub Action that regularly scrapes new videos and updates map markers automatically, all within the free tier.<p>It took me a few months to figure out the video information extraction and create the website using SvelteKit and MapLibre.
mr_mitm11 months ago
A TUI client for Confluence<p>A script that does a speed test of my Internet connection once an hour and plots a graph<p>A financial analysis webapp that barely works<p>I call it meware: works for me, and hopefully for someone else, too, but it&#x27;s not polished.
评论 #40884764 未加载
qiller11 months ago
Technically it&#x27;s possible to see most of my code on github, but most of it definitely wasn&#x27;t intended for sharing, mostly protection from losing it.<p>A number of SmartThings device handlers and arduino code for home automation (early Ambilight clone, light strips, sump pump monitoring, desk fans).<p>A janky pendant to run on RPi for my CNC (clockworkpi.com devices are cool btw!)<p>Reddit bookmarks manager that google somehow scanned so technically there are a few people using it... accidentally<p>Custom Mailspring build with themes and minor annoyance tweaks<p>Not counting various TamperMonkey scripts that fix some site annoyances
mstipetic11 months ago
I got annoyed at all the invoice generators so I recently built my own in a weekend. I put the data in Airtable and a python script generates the pdfs using typst. Much more flexible than any of the solutions I found and it took me less to build it than the time i spent trying out the available solutions.
评论 #40887879 未加载
elseleigh11 months ago
Tons. A few recent pieces are documented on my site, at else.co.nz&#x2F;code ... but there are also plenty of utilities as well.<p>I&#x27;ve written &quot;radio station&quot; music software that used text-to-speech to back and pre -sell music and include news headlines and calendar appointments (that was back when I used Windows).<p>For work, software to build deployment manifests for the various client instances of my research funding web app, software to update the dev MySQL databases for the same clients, software to export zips of all the current code for each client.
acheong0811 months ago
I have a bunch of random scripts, executables, Python files, etc scattered all over my computer.<p>Some more often used ones: - A script that manages my Music files (add&#x2F;rm&#x2F;search) and syncs them with my phone when connected via ifuse+rsync<p>- a CLI to really easily deal with port forwarding because I run a lot of stuff on my raspberry pi and old laptop which goes out to the internet via WireGuard &amp; forwarded from my VPS<p>I also have local forks of a few abandoned projects with a few bug fixes or minor added features. Ought to find alternatives but too lazy
xoxxala11 months ago
I write little Python scripts (or use Excel) to simulate computer&#x2F;video game mechanics and quickly iterate over them before passing them off to a real programmer. I also design boardgames, so often write die rollers to calculate probabilities (it&#x27;s faster for me to write something that generates hundreds of thousands of results than to actually do the math, especially if I want to tweak in real time).<p>My bad habit is not properly archiving these little programs, so I invariably end up recreating them from scratch each time.
satisfice11 months ago
Most of my software is made for my own use. I write tools that help me test software.<p>For instance, I wrote a tool that tells me how many simultaneous users I need to simulate X number of real users who are hitting the server only intermittently.<p>If you write tools for your own use, unless they are really big you tend not to bother with coding style conventions. The important thing is being able to code it up quickly.<p>I used to write everything is Perl, but I’ve switched to Python. It’s a great rapid prototyping language, and basically everything I do is a prototype.
aranchelk11 months ago
Assistive technology, I made a head-tracking mouse replacement. I’ve now used it almost every day at work for a decade. It’s open source but AFAIK no one else is using it:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;aranchelk&#x2F;headmouse">https:&#x2F;&#x2F;github.com&#x2F;aranchelk&#x2F;headmouse</a>
polivier11 months ago
My wife is an optometrist (so, an independent worker), and she needs to check the list of patients she has seen (and the types of care they were given) to make sure that it matches correctly with the clinic&#x27;s records. It is a tedious job, something that takes about 20 minutes per day. With a little scripting, I was able to bring that down to about 5 minutes per day. The time I saved her has added up to several dozens of hours now, and will amount to several hundreds of hours saved as the years go by.
评论 #40887592 未加载
aidenn011 months ago
I write various software tools to aid with running various role-playing and&#x2F;or war games. Many I wrote before online code hosting was really a thing thing[1] and all of those are lost to the depths of time. For more recent tools, depending on how litigious a reputation the RPG game publisher has some were made public.<p>1: SourceForge launched in 1999; a lot of what I wrote predates that. Also CVS in 1999 makes git today look user-friendly; I didn&#x27;t successfully get CVS to SF setup until around &#x27;02.
utensil477811 months ago
Several years ago, I picked up an old SmartBoard projector. The thing has no buttons, it&#x27;s meant to be plugged into a remote control module attached to the board, or controlled over serial as part of a room system, or through its Ethernet connection.<p>I don&#x27;t remember how I got started initially, there was some investigation of the network protocol it used. It was some crusty old standard that used an odd command scheme, but I managed to divine what magic packets to send to wake it up and select an input.<p>I ended up rolling it all into my first and only Android app. It eventually became a full remote control for the thing, including a sleep timer that would turn it off after an hour.<p>It was extremely basic and horribly ugly. I never looked into automatic discovery of the device on the network, so it had a hardcoded IP address. But it worked well enough to get a free projector running.<p>Apart from that, <i>every</i> programmer has thrown together innumerable scripts and throwaway programs for one-off tasks. My most recent was a thing that takes in a Diablo 2 save, then sets the version number and recalculates the checksum. My pirated copy is a bit old and won&#x27;t accept saves made with modern editors. I don&#x27;t know how many scripts I&#x27;ve written that walk through a file system to find or change something in the contained files.<p>I also have a version of Klondike solitaire written in C++ with SFML. I initially wanted to build a neural network to play solitaire, but after building the game itself, I found in my research that solitaire is actually a <i>very</i> difficult problem and far beyond my skills.
rsaarelm11 months ago
It&#x27;s more &quot;nobody else is interested&quot; than &quot;it&#x27;s not out in the open&quot;, but I&#x27;ve made my own structured data format implemented as a Rust serializer <a href="https:&#x2F;&#x2F;github.com&#x2F;rsaarelm&#x2F;idm">https:&#x2F;&#x2F;github.com&#x2F;rsaarelm&#x2F;idm</a> and am using it for a growing collection of command-line tools for managing personal notes written as outline files <a href="https:&#x2F;&#x2F;github.com&#x2F;rsaarelm&#x2F;idm-tools">https:&#x2F;&#x2F;github.com&#x2F;rsaarelm&#x2F;idm-tools</a> and to run a static site generator <a href="https:&#x2F;&#x2F;github.com&#x2F;rsaarelm&#x2F;blog-engine">https:&#x2F;&#x2F;github.com&#x2F;rsaarelm&#x2F;blog-engine</a> . I&#x27;m also writing a game that uses IDM as the data serialization format.<p>Idea for the format was that you can write structured data with a really minimal syntax if you have an external type schema running the parsing, and the syntax emerged from the line-and-indentation based outline note files I&#x27;d started writing for myself. It took some months of work and planning and a couple rewrites to get the core IDM library working right. The tools and site generator were simple and straightforward in comparison.
npteljes11 months ago
I wrote a video recorder specifically for one show on a streaming site that had low-level DRM enabled. DRM meant that tools couldn&#x27;t grab the stream directly, but it was low level enough that the screen could be recorded. So what I did is write PHP software that used Selenium to open a browser with DRM enabled, logged in to the site, located my show, started it, started screen and audio recording with FFMPEG, and when the episode ended, stopped recording and moved to the next episode. To speed up the process, the program started multiple instances of this, and I used PulseAudio sinks to record their audios separately. It was magical to watch this work, like I was in a real TV studio. I also wrote an OCR solution with Tesseract and ffmpeg in bash, that grabs the title card frame and parses the text out of it. Time spent is around 20 hours. After the thing was done and I already had some episodes, my partner and I come to an agreement that the show is pretty toxic, and we don&#x27;t want it in our lives after all, so I deleted the episodes that I had, and haven&#x27;t used the software since.
lumb6311 months ago
I made a Rust program that, given a database of football players and projections about how they will do during the season, can be used during a fantasy football draft live to provide an indication of who the best player to draft is. I have other fantasy&#x2F;sports gambling applications I’ve written to solve knapsack-type problems, choose the best team to pick in a “survivor” pool, and convert from various Vegas odds to win probabilities.<p>Outside of sports I have written code to download the entire Jeopardy archive to categorize most likely questions to appear to help study, and code to interact with Fitbit APIs to pull down data, code to analyze certain aspects of my full genome sequence.<p>I have unfinished code (and a desire to finish it) for creating algorithms to play certain board games, a tool to automatically request books and audiobooks from the library based on a Goodreads reading list (or other source of books), a tool to optimize Universal Paperclips, and several different business ideas I’d like to eventually pursue.<p>Creating something you find useful is a great way to get something done, and make a good tool. If you want it, chances are there are a lot of others who also want it.
sloaken11 months ago
Several -<p>My most recent was to manage dumbbell work outs.<p>Problem:<p>1) I hated changing weights in the middle of a session<p>2) Wanted to manage progression<p>Situation - I have 4 metal sets of dumbbell handles, a plastic set, some individual 3 - 5 pound pairs. A single, dial the weight dumbbell. Plates in metal range from 10 lbs to 0.25 lbs.<p>The SW:<p>1) using SQLite for DB<p>2) One application to calculate optimum weight settings - typical run takes 100 to 200 tries to get the best set.<p>3) Another application to present &#x2F; track sessions. It was a BIG timer display to ensure I do not do the workout too fast (goal is 45 sec a set)<p>4) A tracking report.<p>Complexity issues: Not all dumbbell handles weigh the same - even the tightening nuts vary. Solution was to weigh everything and pair up the nuts so that each dumbbell handle with nuts matched its pair - oh I color coded the metal dumbbell handles.<p>First algorithm took too long - my first version would calculate ALL combinations of all weights. Then select the optimal solution - before adding the 0.25, 0.5, 0.75 and 1 pound plates would take between 15 to 30 minutes to run. This was solved with a slightly more complex algorithm. I calculated the all combinations for each dumbbell. Merged those lists into a big list, Found the perfect setting for each exercise. Check for conflicts. When a conflict occurred, found the exercise with the least delta from optimal and changed it to the next weight setting.... Check for conflict. Now it takes no more than 20 sec and reports 100 to 200 times it hit conflict before solving.
err4nt11 months ago
For a number of years, I built various To-Do (or more accurately To-Done) lists. I would use them for about a year and then just stop, and make something else. I don&#x27;t currently have any to-do list solution, I&#x27;m just using pieces of paper or forgetting stuff. At one point I had:<p>- A single-page HTML app that saved entries in localStorage in 1 browser (like 1kb of vanilla CSS and JS, barely anything)<p>- A static HTML website, generated from a folder of Markdown-like raw text, with a CLI build script. Hosted on a public web server.<p>- A simple linux CLI command that let me check, set, and mark items as complete, build with Node and saved to a JSON on disk somewhere.<p>And there must have been one or two more. Nothing serious, nothing that stuck long-term, but I probably spent 1-10 hours making these, and then using them daily for a year or a year and a half.<p>I&#x27;m very conscious about time spent automating or building what you want, versus how much real-life time savings or experience boost does it give you. I&#x27;ll likely make more of these in the future when the itch reappears and hopefully get another year&#x27;s enjoyment out of whatever little thing I build.
shtack11 months ago
I have a lot of examples but a funny one that comes to mind is: in the early 2000s when IM clients were all the rage, I wrote a VB6 application to go through my MSN Messenger logs and rank my friends by how much I talk to them. Kind of like a MySpace top 10 prior to MySpace.<p>I spent a decent amount of time tweaking the UI, improving performance, adding filters, providing different file output formats, etc. Never shared it with anyone.
0xf00ff00f11 months ago
I wrote an application to get GPS data for a sport activity from my cheap smartwatch and dump it to a GPX route file. The application uses the Qt Bluetooth libraries. I use it every day after my runs, then I upload the GPX files to Strava.<p>I did it because I wasn&#x27;t happy with the official Android app, so I reverse-engineered the watch&#x27;s Bluetooth Low Energy protocol (this was pretty fun actually).
gwbas1c11 months ago
I have a lot of DVD-Audio and BluRay audio disks that I rip to play in Kodi. I wrote a utility that scans through audio files to generate a list of track names, and script to encode images for each track into a video (without sound) to multiplex with the audio.<p>Years ago, I wrote a .exe to change screen resolution, and then revert when closed. I used it when my old laptop had a composite out, and I would watch moves that I downloaded on a TV.<p>A few years ago I wrote a grid-scale battery simulator, scraped some publicly-available cost of electricity data, and calculated how long it would take for grid-scale batteries to break even when buying and selling power to-from the grid. Short answer: About 18 months. Long answer: Permitting a power plant takes a few years, and the permitting process only recognizes buyers or sellers. The permitting process doesn&#x27;t recognize &quot;storage&quot; yet.<p>More recently, I wrote a quick-and-dirty utility to restart explorer.exe, because it has some really silly multi-monitor bugs that require restarting the process every once in awhile.
评论 #40885830 未加载
mlfreeman11 months ago
Many years ago I partially cloned the old iGoogle homepage because I liked it (and Google was killing it off). It&#x27;s gone through a few experimental rewrites in various technologies for personal educational purposes.<p>Right now, it&#x27;s ASP.NET&#x2F;.NET 8 on the backend and still plain jQuery on the frontend.<p>I display RSS feeds, US National Weather Service data, and comics in it. I also have it send some things to friends and family as emails periodically.<p>Hangfire works on the backend to actually fetch new data at appropriate intervals.<p>I occasionally have to modify something and manually push a new build because something remote changes but it feels fairly stable right now (knock on wood).<p>I want to redo it to use ASP.NET AssemblyParts and work towards essentially giving each little box its own DLL as a sort-of-plugin-system so that I feel more comfortable adding more types of boxes (stocks, different weather data, etc) and maybe one day can open-source it. (I&#x27;d like to so I can point prospective employers at it and say &quot;see, i <i>can</i> actually write reasonable real world code.&quot;)
k31011 months ago
I did mostly scripting as in sysadmin work. No FT programming per se.<p>I found no free optical design software that would run on Mac, so I coded something up to do some paraxial ray tracing ( maybe more, I&#x27;d have to dig up the code) and (this is the good part) draw lens diagrams from the specifications.<p>Pretty simple, but it was fun to do. Very little available for Linux either. Physics and optics people want to have fun, too.<p>Much of it was just parsing the input data.<p>I do recall a design and&#x2F;or analysis program written in Basic, but it wanted a particular basic interpreter, and I forgot if it had porting problems. Must have. I don&#x27;t recall using the program.<p>Oddest bit was something I did on my own for Sun flex office. I would get the list of scheduled occupants and their office choice and overlay that on a map of the office suite, for a &quot;who is where&quot; map.<p>On a &quot;real&quot; work task, I learned how to write graphics commands in Illustrator 3 format. I may have used that on this project.<p>But more generally, tacking the AI header code to the file made it valid Postscript&#x2F;Illustrator format.
shred4511 months ago
I built an OAuth proxy (only Auth0 currently works) hosted on Cloudflare workers. I&#x27;m a big fan of the self-hosted OAuth Proxy [1], but some projects don&#x27;t lend themselves to hosting a container, sometimes you just want to set up a simple app on Heroku, Fly, Workers, etc. and have an auth proxy sit in front of it.<p>My solution also manages SSL via Cloudflare and integrates with Stripe for simple fixed-price subscription billing models. The idea here is to be able to iterate on product ideas quickly without spending a day each time figuring out authentication and billing.<p>I did set up a marketing site at the time so that others could use it, but I don&#x27;t have any users, and I&#x27;m happy to maintain it just for my own projects (half a dozen now).<p>It took me 2-3 weeks to make so on net I have probably not saved much time, but it really helps reduce the friction of launching things which I think is valuable.<p>[1] - <a href="https:&#x2F;&#x2F;github.com&#x2F;oauth2-proxy&#x2F;oauth2-proxy">https:&#x2F;&#x2F;github.com&#x2F;oauth2-proxy&#x2F;oauth2-proxy</a>
owlglass11 months ago
I wrote some PowerQuery functions and VBA macros to facilitate client invoicing that cut down ~2 hours of work to ~10 minutes (and shrinking, as I toy around with the scripts to delegate more of the work to the machine each time).<p>The billing data is pulled from an external vendor&#x27;s portal. The contact data is pulled from our internal CRM. Both sets of data are then cleaned up and merged with PowerQuery, and then VBA is used to send emails out to clients.<p>I probably spent in the range of 3-4 hours getting a working version going and ~20 hours optimizing during downtime at work. I genuinely find it enjoyable to work on—there is something immensely satisfying about automating rote work away.<p>I use this once per month (a billing cycle). It will probably never see the light of day for anyone else, at least in its current state, because I work in a low-tech, nonprofit environment and using this kind of tool would be daunting for my co-workers (for reference, mail merging is sometimes intimidating at my workplace).
ogisan11 months ago
While not exactly software per-se, I created a system of multiple text files to manage todos, long term goals, and various reminders (eg, IOUs, deadlines, etc). This was inspired initially by Jeff Huang’s blog post [1] but then grew to a complex collection of different files. A problem I ran into was building an interface for displaying and editing these text files (each file has a different width and for some files I want to have different heights when editing them). Ultimately I settled on multiple vim tabs in a terminal window. Been using this for close to five years now and I couldn’t be happier with it. However, at this point the system of files (and the terminal “user interface”) is completely customized to my life and would likely never fit someone else’s requirements.<p>[1] <a href="https:&#x2F;&#x2F;jeffhuang.com&#x2F;productivity_text_file&#x2F;" rel="nofollow">https:&#x2F;&#x2F;jeffhuang.com&#x2F;productivity_text_file&#x2F;</a>
quilnux11 months ago
I wrote an application that sends GPS coordinates to a Web API that plugs into Home Assistant which I use to open and close the garage door when I come home, or leave the house. 2 independent sensors confirm the action completes and if it doesn&#x27;t, it re-sends the command until it does. Another sensor detects the door from the garage going into the house being opened, which closes the garage door when it was opened from the GPS application.<p>The application sits on a RPi in the truck powered through the cig lighter plug. I don&#x27;t know how many hours I spent on it as it was a weekend project I did when I had free time (not every weekend). I can say I got it working in about 4 months though. So however many weekends I had free from that 4 month period is about how long it took. Probably 40-60 hours though.
rye-neat11 months ago
I&#x27;m building a streetable rock crawler out of a 78 F150 with a custom radius-arm suspension in the front. I needed to measure the deflection of the drag-link &amp; track-bar as the front axle cycled up and down while changing a few variables: mounting locations, drag-link&#x2F;track-bar angles, and drag-link&#x2F;track-bar lengths. I used plain Javascript to display a graph, lines representing the drag-link and track-bar, enabled them to be clicked+dragged along with their mounting points and sizes.<p>With this visualization I was able to determine the best way to package this on the vehicle with the minimal amount of deflection to avoid bump-steer and death-wobble.<p>I suppose it would be useful to other people building radius-arm&#x2F;link-suspensions that incorporate a track-bar but I haven&#x27;t got around to hosting it any where.
评论 #40883742 未加载
评论 #40883732 未加载
hiAndrewQuinn11 months ago
Basically everything I have at <a href="https:&#x2F;&#x2F;github.com&#x2F;hiAndrewQuinn">https:&#x2F;&#x2F;github.com&#x2F;hiAndrewQuinn</a> at least started this way, before I polished it up for external use. But, no, if it really is meant for my own eyes only, it lives and dies as a shell script.
micvbang11 months ago
I&#x27;ve had many use cases for using an event broker, but never found one that was simple enough that I would venture into hosting it myself, or cheap enough to rent&#x2F;host that it was feasible. Once I realized that cloud object stores fit this problem <i>perfectly</i> (they provide durability and are cheap to use), I realized that it would be possible to write one myself. I wrote a post on it here, along with a tiny performance evaluation: <a href="https:&#x2F;&#x2F;blog.vbang.dk&#x2F;2024&#x2F;05&#x2F;26&#x2F;seb&#x2F;" rel="nofollow">https:&#x2F;&#x2F;blog.vbang.dk&#x2F;2024&#x2F;05&#x2F;26&#x2F;seb&#x2F;</a><p>I spent the better part of a week working on it full time, but spread over months. I use it daily - it&#x27;s serving the needs of multiple projects that I needed it for :)
larrybolt11 months ago
My wife (mainly, my role has been system user&#x2F;devops) wrote a custom angular UI on top of grocy for managing our household stock (basically any product we buy at grocery stores), there are two bluetooth barcode scanners and screens which allow you to quickly checkout a product when consumed. Since she started gardening she&#x27;s also &quot;abusing&quot; the db with custom fields to track when she&#x27;s planted vegetables, harvested them, etc...<p>Also over 70% of the lights &#x2F; 50% of other devices in our house are smart (zigbee&#x2F;wifi&#x2F;ble) and are connected to home assistant (I very much recommend tradfri+xiaomi zigbee+home assistant). By now I&#x27;m sure we&#x27;ve spend over 200h on our &quot;smart home&#x2F;life&quot;, we love data :)
vintagedave11 months ago
I wrote a static site generator. It was the first &quot;real&quot; Python app I wrote (many files, classes, etc and actively using Python features.) The code is _terrible_ in the way that code can be when you&#x27;re learning a language. You can definitely see the progress of understanding Python as you see the project develop. However, it&#x27;s robust and is used to generate my site right now.<p>It supports Markdown plus a custom template language to convert Markdown-plus-more documents into a website, which allows me to add footnotes, sidenotes, images with specific formatting, custom markers, etc. It has specific support for parsing English and splitting sentences, so each one is in their own span in the resulting HTML. This is used for specific typographic layout.
jborden1311 months ago
Not for me, but for my wife. She does financial advisor marketing &amp; advertising compliance for a financial broker dealer.<p>Her rules for validating compliance were stored in a local Google Doc and her advisors are often uneducated &amp; confused about what disclosure rules are applied to what types of marketing.<p>So I structured and organized the rules on a UI and then built an AI tool that let&#x27;s her upload any advisor marketing materials to validate it against her ruleset.<p>It would be rad if I could sell it to her employer as an educational &amp; compliance tool for their advisors, but currently this is just for my wife.<p>It took 3 days and I built it in Vue + OpenAI api.<p><a href="https:&#x2F;&#x2F;master.dnwas22p6qpn6.amplifyapp.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;master.dnwas22p6qpn6.amplifyapp.com&#x2F;</a>
评论 #40887691 未加载
WillAdams11 months ago
Couldn&#x27;t find any CAM software which works as I want, so I&#x27;ve been working on implementing G-code and DXF export (so as to match tool movement) from OpenSCAD for a while now --- got a big boost when a Python-enabled version was made:<p><a href="https:&#x2F;&#x2F;pythonscad.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;pythonscad.org&#x2F;</a><p>and now have a pretty much workable tool:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;WillAdams&#x2F;gcodepreview">https:&#x2F;&#x2F;github.com&#x2F;WillAdams&#x2F;gcodepreview</a><p>(Re)wrote it using Literate Programming techniques, probably hundreds of hours (I&#x27;ve been at this for years and am not a particularly good programmer) and I use it on pretty much every project I make which isn&#x27;t just drawing stuff in a Bézier curve drawing program.
FractalParadigm11 months ago
Not necessarily my <i>own</i> use, but I built a few tools (that I volunteer free for use on a perpetual license) for my day job to make life a little easier in a few departments. Nothing impressive imho, they&#x27;re mostly &#x27;basic&#x27; calculators for various parts of the wiredraw process, from basic reduction-of-area to full-blown multi-pass die calculators (all fairly basic math and algorithms). In all honesty they&#x27;re the kinds of semi-basic tools that the company should already have after &gt;50 years of continuous operation, but stubborn blue-collar workplaces can be set in their old-fashioned ways, no matter how inefficient (honestly it&#x27;s somewhat nice seeing others using and appreciating something I built).
xena11 months ago
God yes, I made a personal API thing called mi that I&#x27;ve maintained over the last few years. It manages a few things, but the main thing it does now is repost my blogposts on a few other social channels when I publish new posts. I&#x27;m also working on having it manage the list of events I&#x27;m going to attend so that I can get reminded to create &quot;trip report&quot; posts.<p>I spend about 30 minutes a month maintaining it on average and I recently rewrote it in Go so that I could bring it back into my &#x2F;x&#x2F; monorepo.<p>I have iOS automations that query and post to it about once every day. Eventually it&#x27;s also going to handle photo uploads so that I can yeet it a photo and get the embed code for it shoved into a buffer note on my phone.
ryandrake11 months ago
I made a macOS&#x2F;iOS tournament clock for live poker games. I just wasn&#x27;t happy with the few existing applications, so built and use my own. It is client&#x2F;server so other people in the tournament can connect their devices and have the clock synchronized and shown on their own device, including phones and watches. It can also run dedicated&#x2F;headless on Linux. I use a command line client to integration-test the networking and synching.<p>I never released it because 1. it&#x27;s perpetually 98% done and 2. I don&#x27;t feel like offering technical support for it and dealing with people who don&#x27;t like it or find bugs. I may just open source it, but then I get to be a maintainer which is an even more thankless job.
moritzwolf11 months ago
I built a map based software to organize and archive places I have visited and want to visit in the world. It includes routes (hikes, driving, cycling) and various markers for different spots. I use that to plan photography projects. I now have over 10k markers all over the world.<p>Previously this was a mess with multiple kml files and lots of dupes. Now it lives in MongoDB and has a clean interface using mapbox and vue. Probably spent 150+ hours on that, and do use it for all trip planning (photography and normal travels).<p>Its public but I never announced it anywhere. So only my wife and I use it, but it could be quite useful to others, I guess…<p>I also have some scripts for automating my tax reports. That saved me hours and only took a few to build.
al_borland11 months ago
I made a stupid little utility to let me calculate how long to cook something in the microwave. Most instructions are written for 1000w or 1200w microwaves, and mine is only 800w.<p>I put a little NFC chip near my microwave, so I can tap it with my phone to open it up when I need it.<p>I also run into various scenarios where I need to copy some text, do something with it, and check it off a list, over and over. It’s not worth automatic each ad-hoc thing, so I made a little webpage where I can put it all my items and when I click one, it copies the next to the clip board, checks it off the todo list, and keeps track of the last item copied for reference.<p>Nothing huge, just little helpful things like that.
Gamemaster137911 months ago
I wrote a screen reader for an MMO I play that does day trading on the in game market.<p>It hooks into the games public API to determine items in my price and demand range and does buy orders everyday.<p>Since it doesn&#x27;t do any injections, it isn&#x27;t a violation of the games policies or anti cheats. Been doing it for years.<p>The items I trade in don&#x27;t stack in inventory, which makes it tedious for any normal human player. But given the buying and reselling is scripted, it doesn&#x27;t impact me.<p>I&#x27;ve generated a few thousand dollars worth of gold over the years doing this.<p>The games marketplace also is deflationary. 15% buy and sell fees. I imagine I&#x27;ve burned a considerable chunk of gold keeping my operations going.
tristor11 months ago
I have a bunch of small scripts I wrote to help me out when I&#x27;m working at the terminal. Most of them I&#x27;ve embedded in some way in my Prezto setup with ZSH. As the ecosystem develops though, I try to abandon my own code in favor of community code that&#x27;s likely better maintained.<p>In general, I take a different approach than most folks, if at all possible I try to avoid writing any code whatsoever, after that I try to do it with glue code only, and I prefer scripting over compiled applications. It might be the ops&#x2F;sysadmin in me, or it might just be because I&#x27;m lazy, but I really try to avoid just starting from scratch and building something.
snwfog11 months ago
I built a Twitter Deck clone for Reddit, because I wanted to be able to view multiple subreddit at a glance and I really dislike the new Reddit UI.<p><a href="https:&#x2F;&#x2F;rdddeck.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;rdddeck.com&#x2F;</a>
ChrisMarshallNY11 months ago
Depends.<p>I have written a <i>lot</i> of software, but each one is done as a full-fat production library (most are SPM modules). They are of top-shelf Quality, and fully open to all.<p>I&#x27;m my best (and only) customer, for most (if not all) of them.<p>That&#x27;s actually fine, with me. Publishing them, the way that I do, ensures they are &quot;fugheddaboudit&quot; quality, so I don&#x27;t have to be worrying about my dependencies, and I reuse them, in lots of shipping stuff.<p>You can find links to all of them, in a couple of the orgs I manage on GH: <a href="https:&#x2F;&#x2F;github.com&#x2F;ChrisMarshallNY#here-on-github">https:&#x2F;&#x2F;github.com&#x2F;ChrisMarshallNY#here-on-github</a>
RegW11 months ago
A long time ago - may be 15 years ago, I got really bored of listening to an hour of drive-time news on the radio twice a day. I then discovered podcasts, so I bought an MP3 player and wired it through my car stereo.<p>I found downloading podcasts manually a bit of a faff. So I wrote a bash&#x2F;curl&#x2F;xsd script to rattle through a list of RSS feeds, download new episodes and create a playlist. It ran on my laptop at home or work and plonked the result on my MP3 player via USB.<p>Now, years later, the script is essentially the same. Except it runs under termux on my phone, and VLC broadcasts the playlist direct to my car or home stereo via bluetooth.
graycat11 months ago
&gt; Just wondering if any of you has created any software that is meant for your use only and will never see the light of the day for anyone else.<p>Sure: For an operating system, I wanted to concentrate on exactly one, one of Windows or Linux. For this, that, and those reasons I picked Windows. Most important tool, KEDIT. Next most important, Rexx scripting language. Software for own use, <i>console</i> applications. Real effort, starting a business. For this, developing a Web site. Got the code -- Visual Basic .NET, ASP.NET, ADO.NET -- running as desired. Had a disaster, recovering, and spending too much time in <i>system management</i> mud wrestling and unanesthetised root canal procedures but getting back to the important computing and the business.<p>So, have ~100 of each of Rexx scripts, Kedit macros, and TeX macros. Will be moving back to working with Visual Basic .NET.<p>Just wrote a Rexx program of ~1200 lines of typing to do -- sitting down for this? -- file copying. WHYYYYY????? Did some copying, should have copied 99,024 files, but actually got only 41,462. Disaster.<p>So, wrote a Rexx <i>script</i> with three <i>sections</i>:<p>First, check and be clear on what copying want to do and use the Windows XCOPY, with carefully selected options, to do the copying.<p>Second, use Rexx function SysFileTree to get a list of the files&#x2F;directories that should have been copied and then, in a loop, one name at a time, use Rexx function SysFileExists to be sure the copying was done.<p>Third, one file at a time, again from SysFileTree, use the Windows program FC.EXE (<i>file check</i>) with option &quot;&#x2F;B&quot; for <i>binary</i>, to check that all the files were actually copied correctly down to the last bit.<p>My software does some good checking on the work to be done and some good reporting on what was done so that, now, if something goes wrong, e.g., the case of 99,024 files where copied only 41,462, at least I will know there was a problem.<p>Right, tools for such things should have been rock solid 20+ years ago and shouldn&#x27;t have to do that. But, only 41,462 out of 99,024 provided a &quot;reality check&quot; so wrote the code I did.
dividefuel11 months ago
I spend a lot of time listening to music and have a large collection of MP3s. I never found a piece of existing software that works exactly as I want it, so I created my own web app for hosting my library during the pandemic.<p>It works great! Over time I&#x27;ve added all the features that I care about (powerful playlist rules, easy methods for shuffling my music, detailed stats about my listening, tools for managing the MP3 library, etc.). I&#x27;ve learned a lot on the way. As I&#x27;m sure everyone here can relate to, it&#x27;s quite freeing to build something that&#x27;s only for you. So many concerns go out the window.
cranium11 months ago
I &quot;smartified&quot; my Actiforce standing desk.<p>Originally, I found the up&#x2F;down buttons to be mushy and unreliable to the point I got fed up. I just wanted to 3d print a new case to have nice metal buttons but I found out the desk supports a smart controller.[1] So I reverse-engineered the connection just enough to hook an ESP32 and buttons in parallel (either can control the desk) and add up&#x2F;down actions to Home Assistant via ESPHome. And my buttons have RGB LEDs for notifications. 8)<p>[1] If I were a company, I would have bought the controller right away because their solution is certainly less janky than mine.
RobRivera11 months ago
I made a blackjack scalable game simulation with configurable decision matrix, bet scheme, and card counting rule configs (1 simple file).<p>The software isnt novel, so I did it for myself both as a personal proof of concept of my blackjack years, and as an exercise to poke corners of my cpp knowledge base, google mock and google test knowledge base.<p>Its a phase 0 core tech tho for a vidya Im making that I really really hope I make time for this year.<p>Ill follow up if I manage to get a demo available before end of summer. After my sprint in the career hustle over the last 7 years I need to do some self care and I feel this is the outlet.
评论 #40955836 未加载
jonquark11 months ago
I made a Google calendar program for the Inkpad 6color eInk display. Because of the small number of displays I doubt there is anyone else using my code and that&#x27;s ok.<p>It&#x27;s Arduino based and it turns out the iCal format has a lot more complexity than I&#x27;d guessed so there are still bugs&#x2F;incorrectly shows some events but it mostly works for me. I work on it very intermittently over a few years and find it quite cathartic.<p>It&#x27;s cool having my code hung on my wall. <a href="https:&#x2F;&#x2F;github.com&#x2F;jonquark&#x2F;InkyCal">https:&#x2F;&#x2F;github.com&#x2F;jonquark&#x2F;InkyCal</a>
Yhippa10 months ago
When I was looking for cars recently, I was frustrated by the inventory search on the websites. Subaru made it difficult to search a wide area for it&#x27;s vehicles for example. I wrote a full stack application where I reverse-engineered the public APIs and did the inventory search for myself. I also made a web app to go with it to display the vehicles in a card format that gave me the important info I needed in an eye-pleasing format. I stopped development once I found my car.<p>I didn&#x27;t spend a ton of time making it. It was honestly a lot of fun and I got to work out my development skills again. I really doing this kind of work too be honest.<p>I did use ChatGPT a bit to help rationalize some things as I was doing development.
maggick10 months ago
I build <a href="https:&#x2F;&#x2F;maggick.fr&#x2F;Spotify_RAS&#x2F;" rel="nofollow">https:&#x2F;&#x2F;maggick.fr&#x2F;Spotify_RAS&#x2F;</a> specifically for my need.<p>The tool select albums on my Spotify collection and add them to my playing queue. I am using the tool daily (I put 6-7 albums in the morning and I am setup for the day with a few hours of music).<p>It is just some Spotify API manipulation in Typescript and it was not that long to code (except some UI editing and tweaking, I am not good with front end :D). I am trying to open the application to everyone but the Spotify process is quit long.
mayanraisins11 months ago
I was upset with YouTube ads, so I made my own client. It is a Vue frontend that talks to a Supabase backend. The database has a list of channel IDs, and a serverless endpoint makes a request to the YouTube API to get a list of videos and returns them back to be displayed in a chronologically ordered list as embedded videos as to avoid ads. It could be configured for others to use, but I haven’t created a signup page, and I want to avoid YouTube API rate limiting, so I’m the only user now. It took me a day to make and I’ve used it daily for 3 years.
评论 #40884249 未加载
qznc11 months ago
The static site generator for my website: <a href="http:&#x2F;&#x2F;beza1e1.tuxen.de&#x2F;gen.py" rel="nofollow">http:&#x2F;&#x2F;beza1e1.tuxen.de&#x2F;gen.py</a><p>A news bot: <a href="https:&#x2F;&#x2F;github.com&#x2F;qznc&#x2F;mrktws-news">https:&#x2F;&#x2F;github.com&#x2F;qznc&#x2F;mrktws-news</a> (the output is public, does it count?)<p>A TiddlyWiki server: <a href="https:&#x2F;&#x2F;github.com&#x2F;qznc&#x2F;tiddlywiki-py">https:&#x2F;&#x2F;github.com&#x2F;qznc&#x2F;tiddlywiki-py</a><p>Such stuff usually costs me a few frantic evenings to build the first version and then minor maintenance.
wiradikusuma11 months ago
Do scripts count? I own 100+ .id domains (generic names, like player.id, awesome.id, and sweet.id), and owning a lot of domains is expensive both in money (renewals) and time (maintenance). So, I became a registrar reseller to get better price and API access. I wrote some Frankenstein scripts that cobbled up together those APIs, GitLab&#x27;s, and Netlify&#x27;s to automate publishing through CI&#x2F;CD to those 100+ domains.<p>At the end of the day, I gave up and just put everything in Dan. Apparently, it&#x27;s more lucrative to just sell them.
dllthomas11 months ago
I have a webapp for tracking chores that need to be done periodically (but not on a fixed schedule). It just lists all chores sorted by how due they are (period &#x2F; time since last completion) and surfaces a short history of who did what. I&#x27;ve rebuilt it a few times and played around with extra features, but the basics didn&#x27;t take long.<p>I have a utility (dklocs) that&#x27;ll turn git-formatted diffs into location-prefixed changed lines. It lets me do things like `git diff master | grep thatThing | vim - -c cbuffer!`. I built it for me (and probably use it multiple times a day) but threw it on github (along with another tool for intersecting a diff with code coverage that I don&#x27;t think I&#x27;ve used since the motivating use case - where it did prove helpful).<p>I don&#x27;t know if it quite counts as &quot;creating software&quot; but I&#x27;ve got some scripts and configuration to maintain separate context in named screen&#x2F;tmux sessions, setting shell variables and aliases, adjusting the prompt, starting in some particular directory. Most useful there is segregating history by context, so ctrl-r when I&#x27;m coding doesn&#x27;t step through system administration stuff.<p>I have a general project to decompose applications into utilities, and a pattern for dealing with the long-running bits that&#x27;s been somewhat successful. I once wrapped up libpurple in a client that worked that way, and (in a separate project) it&#x27;s how I get errors from `cargo watch` into vim.
islandert11 months ago
I made a CLI tool called kilojoule that is similar to jq. I addition to the normal suite of JSON manipulations, it also has support for a couple of other file formats and can call other shell commands.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;stevenlandis&#x2F;kilojoule">https:&#x2F;&#x2F;github.com&#x2F;stevenlandis&#x2F;kilojoule</a><p>I’ve found it to be a pleasant multi tool for interacting with the shell when I need something a little more than bash.<p>It took a couple of weekends and evenings to get working but was a really fun way to learn about parsers, interpreters and Rust.
alx_the_new_guy11 months ago
Kinda lame compared to what other people post here, but this is what probably 90% of the &quot;I just use it myself&quot; software is IRL:<p>- the most &quot;impressive&quot; one right now, though barely realized since I&#x27;ve just had the idea this week, is a debug&#x2F;log library that spawns child multiple processes with consoles attached (since you can allocate just one console to a process in windows) and allows for debug info stream separation and rich-ish text features like color<p>- i&#x27;ve started writing a custom &quot;set of commands&quot; (90% IO, tied to a specific hardware modules, no algebraic functions or anything, so not exactly a programming&#x2F;scripting language) language specifically for, sort of, programming-illiterate people so that they could easily implement test algorithms without asking software devs to do it. It got nowhere bc I didn&#x27;t have time to implement it<p>But my a high level hardware emulator I&#x27;m using to debug GUI in production-ish environment uses whatever is left of it.<p>- environment management software that assigns PATH and other variables. Those commonly ship with software, but I havent really seen people writing their own for general env management<p>- my friend couldn&#x27;t get Sony Vegas to produce good chromakey results, so he cobbled together some javascript to do it<p>- I&#x27;ve built a python notebook to analyze my bike rides combining Garmin Watch (gps + HR) and OSM data (estimating speed vs power vs road conditions).<p>- since (last I&#x27;ve checked was like a year ago) cmake devs value json adherence over readability in CMakePresets, I&#x27;ve written some scripts that convert jsonc to json. Also, those can convert string arrays to strings and add other QoL and readability improvements<p>- also, since CI&#x2F;CD pipeline at work uses pretty old cmake that doesn&#x27;t support presets and is a ton of work to upgrade due to it being airgapped (I will not elaborate), I&#x27;ve written a script that converts a preset into a shell script. Not completely, just the options I use.<p>- i guess a lot of custom diagnostic software I&#x27;ve written at work, though that doesnt really count since this is what I&#x27;m actually supposed to be doing, instead of most of the above and jeneral software shenanigans
owenpalmer11 months ago
I have a very simple AutoHotkey script that remaps [h,j,k,l] to [left, down, up, right] when the LeftAlt modifier is pressed. This prevents me from having to switch to the arrow keys all the time.<p>I use it for navigating the list of browser search suggestions, or for quickly moving around any program that doesn&#x27;t have vim bindings.<p>I&#x27;ve found it to be especially helpful while using the <a href="https:&#x2F;&#x2F;www.desmos.com&#x2F;scientific" rel="nofollow">https:&#x2F;&#x2F;www.desmos.com&#x2F;scientific</a> calculator.
评论 #40913444 未加载
halotrope11 months ago
Yes many things actually.<p>- A mac app to generate to read text as playlists from openai tts api (my gf can&#x27;t use the api)<p>- A automatic visual scraper that can get arbitray information from any website (e.g go to target and get the top 3 milk prices or get the licensing information from this opensource project)<p>- An ETL tool (called tabmaster) that can sync arbitrary json apis into postgres tables. with automatic schema inference and deduplication logic<p>- A really good OCR tool that enriches scanned PDFs with accurate words and not the bs that adobe ships<p>all really useful and used daily.<p>EDIT: formatting
评论 #40883785 未加载
rstat111 months ago
2 of my most used web apps are ones I made (technically 3 but the 3rd is a platform service that handles stuff common to all of the services that run on it, there&#x27;s 5 currently)<p>1 is a sort of a virtual notebook where I put things I want to remember. Things like guides for setting up new services on top of that platform service. Or random 1 line commands that I don&#x27;t quite use enough to remember but still need to. Page content in this app is stored in encrypted Markdown files, the metadata (ie the title, publish date, etc) is stored in a local MongoDB instance. It has a feature where you share individual pages publicly if you want, but otherwise pages are viewable only by their original creator. Server is Go, frontend is Angular 10. I don&#x27;t remember how long it took to build as it started as something else and I kinda reset the development half way through. Probably a few weeks, but I also wasn&#x27;t constant working on it, so probably longer.<p>2 is a thing I built out of frustration with my self-hosted Gitlab instance constantly OOM-ing the VM it was on and crashing. It has like a tenth or less of the functionality of Gitlab, but also uses substantially less memory and CPU and does exactly what I want so hasn&#x27;t seen much if any further development. Also Go for the server and some even older version of Angular for the frontend.
jpc011 months ago
I work in live production and have made tons of little apps to make my life easier.<p>A lot of them are little web apps with basic buttons calling http endpoints on gear &#x2F;apps or doing basic OSC commands etc.<p>People usually use something like a streamdeck for this but I find being able to throw up a slider or something in there so much easier.<p>And many times it might even be single use for a specific event and a lot of time I&#x27;m just throwing up a single html page with no styling and a script tag so it really takes a minute or two.
mzronek11 months ago
I reviewed hardware back in the day and was tired of all the repetitive tasks necessary to measure the performance of CPUs, GPUs and storage devices. So I wrote a benchmark automation tool, that did the work for me.<p>CINEBENCH and the likes where easy, but I also automated games without using their integrated benchmark. I needed a scripting language to load settings, go through the game&#x27;s menu and load a save game. To avoid any kind of load from the automation, it offloaded the input data to an Arduino-based USB device, that simulated the benchmark run with previously recorded input. It worked pretty well, but small latency issues could of course result in small variations of the run. And bouncing into NPCs was generally a bad idea.<p>Here is a video of the system in action that completely automated a custom CS:GO run with additional streaming load as it would occur when streaming PC gaming: <a href="https:&#x2F;&#x2F;youtube.com&#x2F;watch?v=ZpSPyd9f4cg" rel="nofollow">https:&#x2F;&#x2F;youtube.com&#x2F;watch?v=ZpSPyd9f4cg</a><p>I get asked once in a while if the software can be downloaded or bought, but I am not going to do it. Writing software for yourself has the neat advantage that you never need to deploy it, upload it, write a change log, answer questions or fix bugs at any given time. It is just about solving the task at hand and nothing else.
chaosharmonic11 months ago
I&#x27;ve been tinkering on crawlers to doomscroll job boards for me, along with a half-formed hybrid of a CRM and Tinder for swiping through the various results and then tracking them.<p>I <i>eventually</i> want this to be usable enough to share with others for local use, and to demo on my portfolio, but for now I&#x27;m just trying not to spend more time building the tools than I am using them (and harvesting the redirect links is already enough to solve a lot of what makes the search process miserable). In the meantime it&#x27;s mostly a cluster of experiments that range from teaching myself Web scraping, to generally aiming for a leaner tech stack than my prior full-stack experiences, to specifically asking myself &quot;how much of this can I do in pure CSS?&quot;<p>While I&#x27;m not sure I want the support burden of maintaining the scraping code in public (and anyway it makes more sense imo to just enable bulk upload so you can bring your own sources), I <i>do</i> have a massive beast of a writeup[0] documenting a lot of what went into that, and the API code is at least presentable (see my GitHub) even if the UI is too skeletal for that as of now.<p>[0] <a href="https:&#x2F;&#x2F;bhmt.dev&#x2F;blog&#x2F;scraping" rel="nofollow">https:&#x2F;&#x2F;bhmt.dev&#x2F;blog&#x2F;scraping</a> (fair warning: this is 10000 words not including code samples)
rtcode_io11 months ago
<a href="https:&#x2F;&#x2F;RTCode.io" rel="nofollow">https:&#x2F;&#x2F;RTCode.io</a> : Try: Code → New…<p>↓ deploys to<p><a href="https:&#x2F;&#x2F;RTEdge.net" rel="nofollow">https:&#x2F;&#x2F;RTEdge.net</a> : interactive map<p>---<p>I use it daily, nowhere else lets me build full-stack apps with nothing but the web platform APIs, while preserving (front- &amp; back-end) state between edits!<p>The playground just lets me code service workers (<a href="https:&#x2F;&#x2F;sw.rt.ht" rel="nofollow">https:&#x2F;&#x2F;sw.rt.ht</a>) which deploy with one click and run as edge workers!
mmphosis11 months ago
Lots. They mostly perform automation, shortcuts: hotkeys, commands, scripts, aliases, functions, AutoKey, ... They&#x27;ve taken anywhere from years to minutes. The software gets used frequently or it gets deleted.<p>For example: <i>p</i> will do cat (or hexdump or ...) or ls depending on file (type) or directory. Let me <i>show</i> you <i>shebang</i> which is just a memory aid:<p><pre><code> $ show shebang ...&#x2F;bin&#x2F;shebang #!&#x2F;usr&#x2F;bin&#x2F;env sh head -n1 &quot;$0&quot;</code></pre>
stewartbracken11 months ago
I recently had our first baby. I created a self hosted web app for tracking diapers, food, etc. Through the delirium of the first month, it’s been so helpful with recalling when and what we did last and staying in communication with my partner without always being awake at the same time. I know there’s other apps out there but I wanted to keep my baby’s health data private. And it’s fun to create a bespoke app tailored to my family’s needs.
评论 #40889938 未加载
kibae11 months ago
A note-taking app that is similar to Obsidian where I can link notes to each other.<p>Some differences include no naming rules (a lot of my note titles have a colon) except uniqueness, custom clusters so my knowledge graph is manageable.<p>I’m going to add different note types (i.e. not every note is .md, but have .csv and .ical as well) that can be expanded and linked within a note.<p>It’s written in React, hosted on AWS (so not an Electron app… yet), and CodeMirror for the editor.<p>I’ve spent probably 100 hours making it so far.
评论 #40889283 未加载
Sjeiti11 months ago
Being self employed I made my own invoicing software because I don&#x27;t like financial data in the cloud, and because most software had really bad invoice styling. All data is kept on local machine, and can be synced peer2peer (ie to phone). <a href="https:&#x2F;&#x2F;projectinvoice.nl&#x2F;about" rel="nofollow">https:&#x2F;&#x2F;projectinvoice.nl&#x2F;about</a> But I no longer use it since I&#x27;ve landed my first permanent job last year (at 49).
sos_dev11 months ago
A git switching utility that switches git profiles and ssh keys between two accounts, written in powershell. Its a one click solution by clicking of two batch file wrappers one for original and one for override configs, I love it saving me faffing manually w git configs and ssh agents.<p>Built custom (atom) extensions for the Hydra vj environment (<a href="https:&#x2F;&#x2F;hydra.ojack.xyz&#x2F;" rel="nofollow">https:&#x2F;&#x2F;hydra.ojack.xyz&#x2F;</a>) that add in midi control (based on the midi spec for web which I am still amazed exists and is at least somewhat supported <a href="https:&#x2F;&#x2F;www.w3.org&#x2F;TR&#x2F;webmidi&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.w3.org&#x2F;TR&#x2F;webmidi&#x2F;</a>) , some lazy eval helpers and custom css styling for the programming text for more crazy feedback visuals.<p>A custom build script that runs a client and server architecture and their related logs all split in the same Window terminal window.<p>Several highly idiosyncratic single purpose visualisation &#x2F; vj apps in processing and openframeworks, some doing camera feedback stuff, some wiggling points and particulars around on music or blob detection.
burlingplane11 months ago
I&#x27;ve been incrementing on a Next.js app for three years now, which helps me tracks all sorts of things that used to be scattered across different apps.<p>It holds stuff like:<p>- A daily journal, plus a curated photo for each day that I can put on a calendar<p>- Random habits I want to track, like how many cups of coffee I had, did I do my morning stretches, etc.<p>- Fill-ups and mileage on my car, time to next oil change<p>- Restaurants I&#x27;ve visited, plus ones I want to visit (I use the Google Places API to search for restaurants)<p>- Books I&#x27;ve read&#x2F;want to read<p>- Movies&#x2F;TV shows I&#x27;ve watched, and ones I want to watch (I use TMDB to pull in metadata about movies&#x2F;shows). I also sync my watchlist from Letterboxd<p>- Strength exercises I do, plus runs + bike rides that I pull in from the Strava API<p>I used to use several proprietary apps to track these things (Letterboxd, Goodreads, etc), but it&#x27;s great having them in one place, and with tight control over the database. It&#x27;s amazing how useful it is to have a log of everything you&#x27;ve done to look back on. Even simple stuff like, last time I was at this restaurant was 2 years ago. What did I order and did I like it?
评论 #40885034 未加载
bostik11 months ago
An i3bar application that shows the name, status and elapsed&#x2F;remaining time of current song in mpd. Display only, all player controls are done through hotkey triggers or explicit &#x27;mpc load&#x2F;add&#x2F;clear&#x27; commands.<p>About 500 lines of C, including comments.<p>Normally running all the time, but for some reason mpd broke a couple of weeks ago and I haven&#x27;t had time to figure out what&#x27;s wrong.
HackHawk11 months ago
Lots, but my favourite is a caption remover. I found a film I wanted to watch, the audio was in English, but there were Greek captions spread over the bottom quarter of the screen.<p>- Split the mp4 up into pngs (better quality than jpgs) with ffmpeg.<p>- Process each png, filling the white caption areas with data from the nearest non-caption pixels.<p>- Join the pngs back to an mp4 (ffmpeg).<p>- Get the original audio with ffmpeg and merge it into the mp4, ffmpeg again.<p>The actual processing was with C# on Windows because that&#x27;s home turf for me.<p>Lessons:<p>1) You need a lot of space for 200,000 decent quality .pngs<p>2) You need to be prepared to wait a few hours for the process to run<p>3) ffmpeg is blooming marvelous. <a href="https:&#x2F;&#x2F;ffmpeg.org" rel="nofollow">https:&#x2F;&#x2F;ffmpeg.org</a>.<p>I probably spent 20 hours on it, maybe more. I don&#x27;t use it at all now, it was a one-off solution, but I occasionally see a video and think &quot;I could run my app on that ... &quot;
214311 months ago
There are many tiny scripts I use at work to manage things. Mostly bookkeeping stuff like utilities to manage Jira, scripts that create text files as per a predefined template for meetings etc.<p>I&#x27;m the only one who uses it because these are tailored for my own specific use case, but if anybody from work asks I&#x27;m willing to share.<p>If I knew how to use Emacs, then maybe I wouldn&#x27;t have needed some of these scripts.<p>-----<p>I have a huge list of movies I want to watch or have watched, and I like keeping track of those.<p>For the longest time I used Google Keep, but that couldn&#x27;t keep track of dates when I added to the list or watched something off the list. And I liked my list to be sorted alphabetically and have it show the counts of watched and total etc.<p>Tonnes of apps and websites already do this. Or I could have probably built a spreadsheet file that does this. But I felt like rolling my own.<p>I built a simple webapp using Laravel and a little bit of Bootstrap to make the site look decent. Did it in one day during the less than a week of gap between resigning one job and joining another. Building it was therapeutic. I even bought a domain and hosted it on a DigitalOcean droplet. It&#x27;s been up for over two years now.<p>There&#x27;s nothing fancy about it. It really is just a glorified todo list. But I like the simplicity of it and I&#x27;ve been using it to keep track of movies to watch over the past two years.<p>I never had any intention of trying to promote it or anything. Initially I planned to share it with a few friends, but then I didn&#x27;t. No reason.<p>So it&#x27;s just out there in the web. In broad daylight. Anybody can sign up for it. Nobody has. Nobody knows. Hidden in plain sight. Just like me ;)
评论 #40890976 未加载
pridkett11 months ago
I’ve got two great examples of this. Both I use to help control DNS on my local network. They’re open source, but I doubt anyone else is using it, and I’m fine with that.<p>unifi-dns-scraper[0]: a simple tool that logs into my Unifi console to get all the hosts and then creates a hosts file that my local DNS servers can use.<p>unifi-doh-blocker[1]: as part of my efforts to better control my network, I don’t want random devices ignoring my local DNS by using DoH. This gets various lists of public DNS over HTTPS servers and updates a blocklist on my Unifi Dream Machine Pro. With a few other firewall rules this essentially forces all my DNS through local servers which then do encrypted DNS queries to a third party DNS service.<p>These tools make me happy and were fun to write.<p>[0] <a href="https:&#x2F;&#x2F;github.com&#x2F;pridkett&#x2F;unifi-dns-scraper">https:&#x2F;&#x2F;github.com&#x2F;pridkett&#x2F;unifi-dns-scraper</a> [1] <a href="https:&#x2F;&#x2F;github.com&#x2F;pridkett&#x2F;unifi-doh-blocker">https:&#x2F;&#x2F;github.com&#x2F;pridkett&#x2F;unifi-doh-blocker</a>
mutantgn0me11 months ago
I&#x27;ve got a...very large...Bash script I wrote in 2009 for interacting with my MP3 collection via email and icecast (there were more reliable email clients than Web browsers embedded in devices back in the day.) It&#x27;s basically a queue manager for ices(1), with playlists, &quot;programs&quot;, special handling for audio books, and regular radio DJ-like chatter delivered via Swift (weather updates, track info, inside jokes among my friends, that sort of thing.) A cron job keeps it going with random tracks. I&#x27;ve even added some old 50s and 40s radio commercials because hilarious.<p>It <i>is</i> madness in script form which will never see the light of day, but I&#x27;ve never succeeded in rewriting it or making a nice Web interface for it &#x27;cause what I&#x27;ve got Just Works for me. I interact with this script almost every day, making it the single most-used software I&#x27;ve ever written, either professionally or personally. It&#x27;s great having a self-hosted streaming service. Run via Bash.<p>Mwuahahahaha.
eterps11 months ago
I created a website that &#x27;proxies&#x27; HN. Its main feature is to refresh only every 3 hours; otherwise, it displays the previous snapshot. I blocked access to the real HN on multiple levels (PC, router, DNS provider).<p>I spent 3 hours developing this tool. It prevents me from checking HN too frequently throughout the day, saving me a significant amount of time.
karolist10 months ago
I made a data takeout tool for the SaaS kindergarten communication platform used by my child&#x27;s daycare. On it&#x27;s own the software is really simple and could have been a few hundred lines of Python, but at some point I changed my mind and wanted to share this with other parents in case they find it, the things that make a project fit for publishing took 95% of actual work since you want it general and robust enough someone non-technical can use it. I now fully understand someone&#x27;s reluctance to publish tools they wrote for themselves because it takes a lot of work.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;karolistamutis&#x2F;kidsnoter">https:&#x2F;&#x2F;github.com&#x2F;karolistamutis&#x2F;kidsnoter</a>
评论 #40903726 未加载
Epaphos11 months ago
I wrote a few apps when I realized that I couldn&#x27;t find anything ready-to-use for my tasks.<p>For example:<p>Conversion between .env and .json configs: <a href="https:&#x2F;&#x2F;github.com&#x2F;magicxor&#x2F;EnvJsonConv">https:&#x2F;&#x2F;github.com&#x2F;magicxor&#x2F;EnvJsonConv</a><p>Web scraping different platforms and sending results to my favorite messenger: <a href="https:&#x2F;&#x2F;github.com&#x2F;magicxor&#x2F;ExtensibleMessageBroker">https:&#x2F;&#x2F;github.com&#x2F;magicxor&#x2F;ExtensibleMessageBroker</a><p>Transformation of copied text using regular expressions: <a href="https:&#x2F;&#x2F;github.com&#x2F;magicxor&#x2F;ClipboardTransform">https:&#x2F;&#x2F;github.com&#x2F;magicxor&#x2F;ClipboardTransform</a><p>It usually takes 3-10 days to implement and polish the core functionality. Some apps I use on a daily basis (e.g., bots in my favorite messenger), and some 1-2 times per month.
rufius11 months ago
The static site generator for my personal website. It was something I wrote in an evening. The code[0] isn’t the best but it’s been easy to extend as needed.<p>It basically takes a couple json files for configuration, and some markdown.<p>[0]: <a href="https:&#x2F;&#x2F;git.sr.ht&#x2F;~zacbrown&#x2F;zsitegen" rel="nofollow">https:&#x2F;&#x2F;git.sr.ht&#x2F;~zacbrown&#x2F;zsitegen</a>
thomaslord11 months ago
A while back I was using Simple as my bank because their app was the best budgeting tool I&#x27;d been able to find. Once it shut down I moved to a spreadsheet, and by comparison it was super painful. I basically replicated the app&#x27;s functionality as a webapp, with a few tweaks to better fit how I was using it. Currently I&#x27;m still entering transactions manually, but I&#x27;m slowly building a Plaid integration to automatically import transactions. I&#x27;d probably have it done by now, but my current bank made some changes that prevent me from connecting it to Plaid so I&#x27;ll have to change banks again before the integration will be able to pull in 100% of my transactions. I can&#x27;t say it&#x27;ll <i>never</i> be publicly available, but I don&#x27;t have any current plans to release it.
cookiengineer11 months ago
My github is littered with software I built as tools in the moment for myself.<p>The coolest thing in my opinion was [1] pacman-backup, which is a small (hacky) nodejs script to be able to download packages on one machine and be able to use pacman on another airgapped machine with the downloaded packages.<p>A couple months after I took down the repository I received a letter from the US where someone was asking me whether the repo is still maintained and whether or not it still works. As it turns out, the people of Cuba use Archlinux, too, and they used my tool to use flash drives to share updates.<p>I still think this is the coolest little tool I ever built, and I probably have to rewrite it in a more sane language (maybe go?) at some point.<p>[1] <a href="https:&#x2F;&#x2F;github.com&#x2F;cookiengineer&#x2F;pacman-backup">https:&#x2F;&#x2F;github.com&#x2F;cookiengineer&#x2F;pacman-backup</a>
cranberryturkey11 months ago
Yes I built a player for official MLB, NFL, NBA and NHL streaming providers so I didn&#x27;t have to keep switching apps.
Gormo11 months ago
I wrote a pair of PHP scripts that let me subscribe to YouTube channels as podcast feeds, with enclosure URLs and all. One script parses the channel&#x27;s RSS feed and inserts enclosure tags, with the target URLs pointing to the second script with the video ID as a parameter. The second script then wraps youtube-dl and redirects to the raw video URL obtained for that video ID by youtube-dl.<p>This worked great for years, but recently, YouTube stopped serving their `22` format for most videos, which coupled 720p video with the audio stream. Now, the best resolution you can get with audio and video interleaved is `18`, which contains only 360p video. So that&#x27;s the best resolution obtainable this way for now, unless I add a whole layer to this to reconstruct an interleaved video from separate audio and video streams selected from the DASH manifest.
评论 #40884546 未加载
austin-cheney11 months ago
I wrote a media player and playlist that executes in the browser to play my media on my phone. I did this so that I don’t have to stream media or dick around with all the limitations imposed by the iPhone. I have playlists for music, movies, and television that are dynamically generated with meta data and file hashes.
KerbalNo1511 months ago
I have a lot of things like this. Mostly one-offs for bizarre stuff, like a FUSE plugin that saves data to FAT-formatted image files. Some things, though, I consider useful enough to post on Github for people who might need it. My favorite (and most-used, personally) is an app I made to copy files off of my Panasonic cameras. They still work perfectly well, but the official app no longer works to send pics via wifi. I had to reverse-engineer the entire protocol stack from network traffic, it&#x27;s a doozy. I ended up implementing SSDP from scratch and faking DLNA server support, along with the miserable SOAP protocol. It&#x27;s a beautiful mess, but it works. Got me back into Android development too.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;kerbalno15&#x2F;shutterlink">https:&#x2F;&#x2F;github.com&#x2F;kerbalno15&#x2F;shutterlink</a>
audiodude11 months ago
I built a headless CMS to generate the static site, <a href="https:&#x2F;&#x2F;bestalbumsintheuniverse.com" rel="nofollow">https:&#x2F;&#x2F;bestalbumsintheuniverse.com</a>.<p>The key feature is that you can put in a Wikidata ID (<a href="https:&#x2F;&#x2F;www.wikidata.org&#x2F;wiki&#x2F;Q1536639" rel="nofollow">https:&#x2F;&#x2F;www.wikidata.org&#x2F;wiki&#x2F;Q1536639</a>) and it will auto populate the name, artist, release date, and Spotify ID. It will then grab covert art from <a href="https:&#x2F;&#x2F;coverartarchive.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;coverartarchive.org&#x2F;</a>, which it resizes and mirrors to S3 (previous versions of this project used images manually uploaded to imgur, but broke when they changed their secret API).<p>So basically all I have to do is write the description and I&#x27;ve got a new entry on the site.
Joel_Mckay11 months ago
Mostly stuff for hobby 3D metal printer projects that is still too kludgy to release into the community.<p>A ton of administrative tasks I automated with expect&#x2F;tcl shells, and various instrumentation control test rigs over legacy GPIB (metrology project).<p>Other exploratory boring RF stuff that maybe 5 other people would care about. =3
jelkand11 months ago
Lots of outdoor gear brands are now selling repaired or refurbished used gear and clothing. Since used gear is pretty eclectic in selection it’s hard to find what you want by browsing at a random time.<p>I built a pretty simple web app that tracks a bunch of vendors and emails me when items matching my filters come in stock!
RobCodeSlayer11 months ago
I created a scraper that scrapes around ~30 different property management sites for new rental listings. It then sends me new listings on telegram<p>It’s been useful for finding new places for myself and my friends - we can usually get tours before the properties are posted on Zillow.<p>Though definitely against a few privacy policies
评论 #40885592 未加载
drewbuschhorn11 months ago
I run a small Dwarf Fortress podcast, and I didn&#x27;t like the transcription options when we started a few years ago, so I wrote some python glue to do diarization (separate out speakers) and transcription using a torchaudio project, and either whisper or openai depending on how I&#x27;m feeling that day. Works surprisingly well, with timestamps and clean-up:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;drewbuschhorn&#x2F;a_strange_mood_podcast_transcripts&#x2F;blob&#x2F;main&#x2F;episode_1&#x2F;fixup.txt">https:&#x2F;&#x2F;github.com&#x2F;drewbuschhorn&#x2F;a_strange_mood_podcast_tran...</a><p>vs<p><a href="https:&#x2F;&#x2F;astrangemoodpodcast.com&#x2F;2023&#x2F;01&#x2F;17&#x2F;episode-1-is-dwarf-fortress-a-game-or-a-toy&#x2F;" rel="nofollow">https:&#x2F;&#x2F;astrangemoodpodcast.com&#x2F;2023&#x2F;01&#x2F;17&#x2F;episode-1-is-dwar...</a>
RelentlessOpt11 months ago
I wrote an app to analyze my Wordle play - I tell it my guesses (with the answer last) and it tells me how many possible answers were left after each turn, what the best next play was, and how my play compares to my current strategy. I use it every day.<p><a href="https:&#x2F;&#x2F;scottlouvau.github.io&#x2F;pwa&#x2F;wordle-analyze&#x2F;" rel="nofollow">https:&#x2F;&#x2F;scottlouvau.github.io&#x2F;pwa&#x2F;wordle-analyze&#x2F;</a><p>I wrote the code over a few months, along with code to find optimal guesses, simulate games, and do earlier versions of game analysis.<p>It&#x27;s written in Rust, originally as a console app, but now wrapped up with a very basic interface. I figured out how to get it running as a WebAssembly Progressive Web App so that I can use it on my iPad without connectivity and without having to submit to the App Store.
philip120911 months ago
I run a little Rails app for myself. I end up putting some random things in it. Here&#x27;s a partial list:<p>- My blog mailing list (Sendy) was having a bot signup problem. I wanted to deploy a captcha, but the mailing list software didn&#x27;t support it. So, I put a simple proxy that validates the captcha before inserting the record to the software.<p>- Wanted a way to apply an email template to the Sendy mailing list, so I wrote a software that consumes my RSS feed, applies a template, and creates a draft in my mailing list software.<p>- Wrote a &quot;Scoreboard&quot; that aggregates MRR across Stripe accounts into a graph, and sends auto-emails to friends when I cross thresholds.<p>- Wrote a script that emails me when the HN &quot;whoishiring&quot; job goes live every month. (Simple crons like Zapier don&#x27;t work)<p>There are a few other things in there, too.
alper10 months ago
Other people do use this: <a href="https:&#x2F;&#x2F;cuppin.gs&#x2F;" rel="nofollow">https:&#x2F;&#x2F;cuppin.gs&#x2F;</a> but realistically I only make it for myself.<p>We have coffee venues from different parts of the world but they become red (&quot;picked&quot;) only if I and my friends travel there. The main use case for the app is still me being somewhere--mostly in my hometown these days--opening up my phone and looking for a good cup of coffee. Other people can take or leave that proposition.
jonahbenton11 months ago
Bank and other statement PDF processing tools to feed records into Beancount. Because CSV downloads are not a legal record and are often not correct and contain no balances, and giving permanent access to aggregation services like Plaid and others are not worth the privacy violation.
评论 #40888058 未加载
luxuryballs11 months ago
I have a game engine that uses MonoGame and allows me to define entire behavior flows, animations, physics interactions, etc, “using one liner, execute once” method chaining declarations and avoid having to write any update&#x2F;draw function code for basic things, it’s awesome.
athorax11 months ago
I made a CLI tool that templates out jira tickets so I never have to open the jira web client to create tickets. It took me far longer than it could ever possibly save me in terms of time, but it&#x27;s the small victories over horrible, bloated, corporate software that give me joy
评论 #40883676 未加载
lylejantzi3rd11 months ago
I&#x27;ve mostly been writing bookmarklets lately.<p>I wrote a bookmarklet that flattens the comments on a substack comment page and orders them by date. It makes it easier to see the most recent comments. <a href="https:&#x2F;&#x2F;bookmarkify.it&#x2F;64936" rel="nofollow">https:&#x2F;&#x2F;bookmarkify.it&#x2F;64936</a><p>I&#x27;m a member of a private social media site whose UI I dislike, so I tapped into their phoenix websocket connection and I created my own web client. It&#x27;s vanilla js&#x2F;html&#x2F;css using template literals as html templates. It kind of reminds me of those old template systems I used in the php 4 days. Anyway, the killer features for me are regex filters on content and seeing all of the replies from the people I follow.
osigurdson11 months ago
I recently made a cli chatgpt interface. Quick hack in Rust, always planned to clean it up, not entirely sure where the source code is for it anymore but I use the compiled binary all the time.<p>The regular chatgpt interface is nice but sometimes don&#x27;t want to break out of the terminal.
评论 #40884483 未加载
DownrightNifty11 months ago
To anyone in the US who said they make their own apps for their own iPhone: do you really pay Apple $99&#x2F;year for that &quot;privilege&quot;, or do you reinstall the app every 7 days (or use workarounds like AltStore non-PAL or jailbreaking) to get around this?
评论 #40886755 未加载
EvanAnderson11 months ago
I maintain a fork of tt-rss[0] that I use to follow blogs, podcasts, and YouTube. I wrote a podcatcher that used the back-end database, too.<p>I forked it back in 2005 because the maintainer wasn&#x27;t interested in the direction my patches were going. My version has diverged dramatically from the current version.<p>I have no idea how many hours I&#x27;ve put into it over 19 years. It has needed surprisingly little care and feeding (which I&#x27;d attribute to it being a simple PHP app).<p>I&#x27;ve used it nearly daily in the last 19 years.<p>[0] <a href="https:&#x2F;&#x2F;tt-rss.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;tt-rss.org&#x2F;</a><p>Edit: I also maintain a set of scripts to import my SMS from phone backups into my IMAP mailbox. Having a single place to search for my written communication is wonderful.
评论 #40884414 未加载
okaleniuk11 months ago
I wrote myself a debug tool at 2007. It&#x27;s a piece of GUI &quot;to borrow&quot;. A Windows app that catches Windows messages addressed to it and shows things in its own windows. It can show numbers you give it, give numbers back, count calls, and measure time. So it&#x27;s a kind of debugger&#x2F;profiler&#x2F;GUI.<p>I open sourced it 8 years ago but it was not the original intention. I wrote it for myself. <a href="https:&#x2F;&#x2F;github.com&#x2F;akalenuk&#x2F;16counters">https:&#x2F;&#x2F;github.com&#x2F;akalenuk&#x2F;16counters</a><p>I wrote it in MASM32. It&#x27;s therefore a tiny .exe file of about 7 KB. I spent maybe a few hours initially, but I&#x27;ve been adding features one-by-one for several years. I use it a few times a month.
geophile11 months ago
- Markup to generate HTML I used in courses that I taught. The markup generated links according to an outline (next&#x2F;prev page, next&#x2F;prev section) and a few other navigation related things.<p>- Python-based pipe-objects-not-strings shell with cluster and database support deeply integrated. Twenty years later, it has turned into Marcel (<a href="https:&#x2F;&#x2F;marceltheshell.org" rel="nofollow">https:&#x2F;&#x2F;marceltheshell.org</a>), and I’m still the only one using it AFAIK.<p>- Backup utility for Linux, with characteristics of Time Machine. Been using it for five years, it keeps daily, monthly, yearly full backups, relying on hard links for files that don’t change. Handles both local and remote (to my Raspberry Pi).
kyle_u11 months ago
I’ve spent five years and 100KLoC building <a href="https:&#x2F;&#x2F;github.com&#x2F;kyleu&#x2F;projectforge">https:&#x2F;&#x2F;github.com&#x2F;kyleu&#x2F;projectforge</a> which helps generate and update other Golang projects I maintain. I use it daily.
bevesce-11 months ago
I scrape all of the food, wine and beer recommendations that I find and display them on a map in a web app. I can see the list of all of the places that are closest to me: restaurants, wineries, ice cream parlors, breweries and so on. If the source of the recommendation scores places or products made by it it&#x27;s part of the data and I can filter by the score. I probably spent many weeks working in it. I&#x27;d love to make it a business but I have no idea how to approach the legality of it. I use it all the time because I travel a lot.
SCUSKU11 months ago
A few years back when I was looking for apartments in SF I wrote a craigslist scraper that would filter based on my preferences. I probably could&#x27;ve just used craigslist&#x27;s built in filters + email alerts, but where&#x27;s the fun in that?
booleandilemma11 months ago
I see questions like this and I can&#x27;t help but wonder about the motivation behind them.
评论 #40883438 未加载
acrophiliac11 months ago
I built a bot to play my favorite word game on Android. It&#x27;s not technically against the TOS but certainly against the spirit. It gives me an inordinate amount of satisfaction watching it autonomously playing the game and winning every time.
sirodoht11 months ago
I&#x27;ve made frank! It&#x27;s just a CLI wrapping pquerna&#x2F;otp:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;sirodoht&#x2F;frank">https:&#x2F;&#x2F;github.com&#x2F;sirodoht&#x2F;frank</a><p>I use it all the time in combination with pass:<p>$ frank $(pass hetzner.com | sed -n &#x27;4p&#x27;) | c
hugocbp11 months ago
I created a personalized finance app based on a Google Sheet that I used to track my registered account contributions and performance.<p>Basically I enter the transactions and it shows a dashboard of my contribution rooms, how much is left, how much I have already contributed, etc.<p>Nothing fancy, but it just just a Remix frontend with MantineUI backed by an SQLite db inside Dropbox. Took me about 6 hours, and I only made it after I botched some changes I made into the Google Sheet that broke a bunch of formulas.<p>I thought about making it into a public app, but it is so tuned to what I want that it is probably not really that valuable to others.<p>I use it every time I save. Used to be weekly but lately monthly.
inbetween11 months ago
I wrote a cross platform outliner 20 years ago that I have been using almost everyday since. I have more than 60&#x27;000 headers in there, with my notes about everything.<p>Right now I&#x27;m building a flutter&#x2F;kotlin meditation timer for myself.
heuermh11 months ago
All the time!<p>My most recent were tools to improve the AWS commandline experience for s3 and Athena<p><a href="https:&#x2F;&#x2F;github.com&#x2F;heuermh&#x2F;cooper">https:&#x2F;&#x2F;github.com&#x2F;heuermh&#x2F;cooper</a><p><a href="https:&#x2F;&#x2F;github.com&#x2F;heuermh&#x2F;sea-eagle">https:&#x2F;&#x2F;github.com&#x2F;heuermh&#x2F;sea-eagle</a><p>Both are available via Homebrew<p><a href="https:&#x2F;&#x2F;github.com&#x2F;heuermh&#x2F;homebrew-parquet-tools">https:&#x2F;&#x2F;github.com&#x2F;heuermh&#x2F;homebrew-parquet-tools</a><p>I would next like to improve the TUI experience for tabular data, e.g. using the Charm_ Bubbles&#x2F;Gum table component, but I have yet to investigate how the JVM &lt;--&gt; Go interaction might work.
ivylee11 months ago
I created<p>- SignalsTalk[1] to study quantitative trading signals and algorithms, for my own curiosity.<p>- YCVerify[2] for verifying YC companies and founders. No one else is using it yet.<p>- Content Credentials API[3], to find the signatures of AI generated content.<p>I&#x27;m also working on:<p>- A search engine for online ads.<p>- A way to track grocery item prices from receipts using LLMs.<p>[1]: <a href="https:&#x2F;&#x2F;www.signalstalk.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.signalstalk.com&#x2F;</a><p>[2]: <a href="https:&#x2F;&#x2F;www.ycverify.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.ycverify.com&#x2F;</a><p>[3]: <a href="https:&#x2F;&#x2F;contentcredentialsapi.studioxolo.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;contentcredentialsapi.studioxolo.com&#x2F;</a>
cardamomo11 months ago
I wrote a little Swaybar script that displays the current weather. When I hover over it, I can see the hourly forecast and a few other details. It&#x27;s not perfect, but I prefer the simplicity over a fully-fledged application.
fcarmona11 months ago
I&#x27;m a web developer so I try to fix all my problems with javascript, one of them is maintaining my Plex library across multiple server migrations. I made this little helper I use as a bookmarklet to get a movie&#x27;s name from an IMDB page in the correct format that Plex will identify without issue: <a href="https:&#x2F;&#x2F;gist.github.com&#x2F;carmona&#x2F;09cd03fddeb7db25ace42a21cf3d7e33" rel="nofollow">https:&#x2F;&#x2F;gist.github.com&#x2F;carmona&#x2F;09cd03fddeb7db25ace42a21cf3d...</a>
emarsden11 months ago
I have a smartphone app that scrapes replay TV listings for a few shows that I like to watch at the gym and allows me to download the low-quality media stream to the phone to view offline ad-free.<p>I released the Rust library that downloads and reassembles media segments from a DASH stream (<a href="https:&#x2F;&#x2F;github.com&#x2F;emarsden&#x2F;dash-mpd-rs">https:&#x2F;&#x2F;github.com&#x2F;emarsden&#x2F;dash-mpd-rs</a>). Won&#x27;t release the web scraping bits because they are against website terms and conditions, and because annoying countermeasures will be implemented if too many people use them.
spikey_sanju11 months ago
I created <a href="https:&#x2F;&#x2F;uiino.com" rel="nofollow">https:&#x2F;&#x2F;uiino.com</a> (painless planning for your app with AI).<p>As a product studio, we spend hours brainstorming and creating user flows, feature ideas, and edge cases. I prototyped a solution on a weekend and now we use it daily, saving time.<p>We released it publicly after a few months. We work on it every Friday, finding it enjoyable.<p>P.S. Got a startup, app, or website idea? Just describe it in plain language. Uiino&#x27;s AI will generate your story maps in under 10 seconds. It&#x27;s FREE! (No account required!)
mlhpdx11 months ago
When I first started doing web programming I built an “asynchronous HTTP” thing that shuffled requests from a public facing server to SQS, and read respond from another SQS. The idea was keeping applications and their data very isolated from the public users.<p>Over the decades it evolve to a generic proxy that takes IP network traffic (UDP, ICMP, TCP and TLS) traffic, slices it into messages and forwards to AWS services (bidirectionally for Lambda and Step Functions, unidirectional for S3, DDB, SQS, SNS, Firehose, etc.). I use it liberally to avoid running “servers”.
KaiMagnus11 months ago
I wanted to say my Figma plugins that I made for myself, but I published them so it doesn&#x27;t count.<p>When I was around 15 I wanted to try out Win Forms. I also used to play a lot of Dota 2 so I created this app to calculate how many Techies mines would to take down a hero with X HP. Complete with sliders, input field, radio buttons and checkboxes to select ability levels and items. Pretty sure it will never get published, but the .exe is still sitting on my desktop.<p><a href="https:&#x2F;&#x2F;liquipedia.net&#x2F;dota2&#x2F;Techies" rel="nofollow">https:&#x2F;&#x2F;liquipedia.net&#x2F;dota2&#x2F;Techies</a>
claystu11 months ago
I coded a simple, attractive Calorie Tracker that works across desktop, tablet, and mobile:<p><a href="https:&#x2F;&#x2F;www.calories.claystuart.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.calories.claystuart.com&#x2F;</a>
silvanocerza11 months ago
Yup, it&#x27;s a stupid tool in Rust to keep my soundbar alive.<p>Turns out that JBL thought it&#x27;s a good idea to completely cut sound when there&#x27;s nothing playing and ramp it back up in a perceptible fraction of second so that you miss some part of whatever you&#x27;re listening to. This is especially annoying when watching anything with people talking.<p>Here&#x27;s the code for anyone interested, it also contains a more thorough rant in the README.md. <a href="https:&#x2F;&#x2F;github.com&#x2F;silvanocerza&#x2F;orpheus">https:&#x2F;&#x2F;github.com&#x2F;silvanocerza&#x2F;orpheus</a>
notacoward11 months ago
Yeah, since I retired four years ago the <i>only</i> things I&#x27;ve worked on have been like that.<p>(1) A script to solve a resource-allocation problem in Grim Dawn (ARPG).<p>(2) A tiny bit of code added to Garmin&#x27;s developer kit, to pick apart their .fit files and show me some running metrics that were hard to get at otherwise.<p>I do have one other thing I&#x27;ve been wanting to do recently, which might even be worth putting out there if&#x2F;when I finish it. Then again, maybe not. Having been a maintainer for a project with hundreds of contributors before, I can say that coding for oneself feels very liberating. Only as much infrastructure and process as necessary to get the job done. No need to deal with feature requests or bug reports. No commit races, or battles in code-review comments. You know the requirements perfectly (or have a perfectly compliant customer who is willing to change) so if you want to take a short cut you can. I was often a stickler for doing things &quot;the right way&quot; when I was working, but part of the reason I left is that my work seemed to be <i>all</i> about shepherding the process and not the joy of making code grow and do new things. Having total freedom on a project, even a small one, is good balm for a jaded programmer&#x27;s soul.
airstrike11 months ago
I wrote an app that takes all localized strings in an Xcode project, turns it into a json, batch translates it with the OpenAI API, validates the json, and then converts it back into a .xcstrings file that you can drop into your project. I was writing an app that I wanted to translate into X different languages, of which I only spoke a couple and not perfectly, and this was the solution. It turned out pretty good.<p>I&#x27;ve considered putting a little bit more elbow grease and turning into a packaged product but I&#x27;m not sure if there&#x27;s demand for it out there.
Sancty11 months ago
I got really into breathwork a few years ago. For the longest time I struggled to find an app that had anything more than basic functionality. Also, I found it absurd that most wanted to charge a subscription fee.<p>I ended up creating my own application that lets me create advanced, multi-stage exercises. I spent time building the trimmings that I felt other applications were also lacking such as: background visuals with procedurally generated shaders, easy gestures, etc.<p>I think one day I&#x27;ll publish it to the app stores so other people who had similar desires have something.
ChuckMcM11 months ago
Yes. But the list is too long to put in a message here. Generally tools which do things that I needed done at the time, like convert PDF bank statements into CSV transaction files that can be ingested by a simple ledger application.<p>I always have a &#x27;hacks&#x27; directory in my home directory of code that does something I need doing. Sometimes I use it again and again, sometimes its a one-off that answers a question.<p>I&#x27;m more curious though about the motivation of the question. What was the observation that got you to wonder about this?
评论 #40885009 未加载
julianlam11 months ago
My blog (devnull.land) — I stood it up in a day or two, could run on a potato, and uses GitHub Gists as its data store. (More info: <a href="https:&#x2F;&#x2F;devnull.land&#x2F;github-gist-blog" rel="nofollow">https:&#x2F;&#x2F;devnull.land&#x2F;github-gist-blog</a>)<p>My VoIP provider supports SMS, and exposes an API. The community-made app wasn&#x27;t performant enough, so I cobbled together my own interface in a couple evenings. Then one day some dependencies shifted and it wouldn&#x27;t start on the latest Node :\ Oh well.
lurn_mor11 months ago
I wrote a hacky PHP web app that allows me to generate 5&quot; Optical Media artwork for imprinting using a inkjet disc printer. My script loads it&#x27;s own truetype fonts (to stay on brand) and produces print-caliber artwork in milliseconds, instead of minutes. I spent a single day mastering it, and have used it weekly for decades, saving untold hours of effort. Alas, this side of the business is failing due to lack of demand (who has an optical drive anymore??), so this code will also die someday.
dougdimmadome11 months ago
A few I can think of<p>- Note taking app that stores all data as markdown on Dropbox<p>- When I was getting married I created a photo upload site with a flickr backend where people could bulk upload all of the photos they took of our wedding, and as a result we got thousands of photos without needing to chase people up for memory cards etc.<p>- Every year I organise Secret Santa for all of my family and my wife&#x27;s family through a PHP web app I wrote.
willhackett11 months ago
I&#x27;ve made an email-based AI personal assistant I thought I&#x27;d roll into a business, but ultimately have kept it for personal use. I may open source this as it&#x27;s a fun project built entirely on Cloudflare Workers (with the exception of one Postgres DB &amp; mail routing).<p>I&#x27;ve written some really crappy Notion API (before the official API) to act as a CMS for a headless site.<p>I&#x27;m at a weird point in my life that I need to work on these little hacky projects because they bring me genuine joy. It&#x27;s like lego to me.
评论 #40887843 未加载
arusahni11 months ago
I wrote a series of scripts that parse song names from my music blog RSS feeds, match them against my music service of choice, and then build 200-track playlists for me to consume. It&#x27;s a great way for me to eliminate some of the drudgery of music discovery, especially in niche fields.<p>It&#x27;s a series of Python scripts backed by SQLite and reverse-engineered API clients for various music services. Over the years I&#x27;ve switched the backends from Google Play Music&#x2F;Youtube Music, to Apple Music, to Tidal.
scottshea11 months ago
I created a little game for my daughter when she was 3. She would press a button and it would show a random picture. If the picture was her, it played a little song and said You Win.
1in101011 months ago
While there is a plethora of Python back-testing and trading platforms, I was frustrated with many of them for a variety of reasons and ended up creating my own. This now drives the back-end of my website <a href="https:&#x2F;&#x2F;sugradh.com" rel="nofollow">https:&#x2F;&#x2F;sugradh.com</a>. Not sure if this is what you have in mind but I have spent more time(years) doing this than I should have. But when something goes wrong or does not work I know where to look and fix it.
hitchstory11 months ago
I created a command line app for applying jinja2 to orgmode. I did it to scratch the itch of being able to generate pretty latex PDFs for my CV and for printed letters with content from my note taking app on my phone.<p>I published it on pypi&#x2F;github out of habit, but it&#x27;s primarily about scratching my itch and I doubt anybody except me will really use it. There&#x27;s some interest in doing this type of thing with org mode but it all centers around LISP and emacs (neither of which I like).
imclaren11 months ago
Great question! Most of the articles I read only focus on apps with multiple millions of users, but most software has a much smaller user base.<p>I assume that most things I build will only be used by me and a small group of users, and sometimes will also eventually be used by others. I generally only build tools that I use every day. For example:<p>- iCloud&#x2F;Dropbox alternative macOS, iOS, and web app<p>- task management GTD macOS, iOS, and web app<p>- photos api for digital photo frames<p>- media management<p>Mostly built using go for backends and SwiftUI for macOS and iOS frontends.
tnvmadhav11 months ago
I dogfood almost all my side projects and a few are open for the public as well.<p>My most used (by me) software is my social media posting tool (twitter&#x2F;x). It&#x27;s public but I&#x27;ve disabled signups (due to free tier posting limits since Elon&#x27;s acquisition)<p>&gt; How did you make it?<p>It&#x27;s written in Django and hosted on DO<p>&gt; How often do you use it?<p>Almost everyday :)<p>Others are used intermittently and they include image generator, screenshot tools for iOS and macOS, etc.
smokel11 months ago
I&#x27;ve written a fully functional emulator for the Philips P2000T, my first true love [1].<p>As I still haven&#x27;t found a way to legally ship it with a ROM (partially copyrighted by Microsoft), I&#x27;ll keep it to myself. If anyone happens to know someone who knows someone at Microsoft willing to help me with this, please let me know.<p>[1] <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Philips_P2000" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Philips_P2000</a>
wchandler11 months ago
I built a checking program in C# to mainly use as a check register and balancing tool. Doesn&#x27;t do double entry accounting. Also build a simple notes program in both C# and python that can use the same data file. Also did a cheap and dirty internet radio player on an old Rasp. pi. Used one push button to cycle thru a list of internet radio feeds. Plus an led that flashed the index of the list which gave me an idea of which station I was on.
carom11 months ago
I wrote a desktop client for an IPTV service. They have a mobile app and Apple TV app that are good, but there was not a good way to watch on the computer.<p>I threw together a Python QT app that parses the show listings, displays them, allows filtering, and has some short cuts for searching IMDB and trailers on Youtube. The best part is that the media opens in VLC instead of some custom player.<p>Anyway, I will never publish it because of the whole facilitating copyright infringement thing.
Gualdrapo11 months ago
Just silly stuff as my development abilities let me do - the most &quot;significative&quot; one is a remote control to, ahem, control my TV from my pc (to save some batteries from it and some peace of mind so I don&#x27;t need to look for the remote control every time) - as a KDE Plasmoid w&#x2F; QML and some Javascript via IRCC-IP. It broke in the KDE5-&gt;KDE6 transition but I&#x27;ll fix it, try to improve it and share it when I have some spare time.
javier12345432111 months ago
I have like a dozen bash scripts that automate little actions locally. They each took from a few minutes to a few dozen minutes to make. I use them all the time at work.
ozfive11 months ago
I brute forced the IR codes for my Cambridge Audio CXA81 amp, wrote a web server in go that has endpoints to correspond with the actions, wired up a Raspberry Pi Zero W with an IR transmitter, and wrote a Android app as a virtual remote control that connects over WiFi to the webserver on the Raspberry Pi Zero W. I wanted to control my amp from anywhere in my house and Cambridge Audio didn&#x27;t make that Amp controllable through their app.
andruby11 months ago
We use planning poker when evaluating our work tickets. I built <a href="https:&#x2F;&#x2F;pokershirt.dev" rel="nofollow">https:&#x2F;&#x2F;pokershirt.dev</a> as a small app for use to vote and reveal the votes simultaneously.<p>Created with an early version of Phoenix (and re-created with LiveView)<p>Here&#x27;s a link to a room so you see it with multiple users: <a href="https:&#x2F;&#x2F;pokershirt.dev&#x2F;r&#x2F;hn" rel="nofollow">https:&#x2F;&#x2F;pokershirt.dev&#x2F;r&#x2F;hn</a>
RBerenguel11 months ago
Weave: <a href="https:&#x2F;&#x2F;github.com&#x2F;rberenguel&#x2F;weave">https:&#x2F;&#x2F;github.com&#x2F;rberenguel&#x2F;weave</a><p>It&#x27;s hard to explain what it is. Think personal knowledge manager text editor inspired by Acme. The readme and video there are very outdated, I add features faster than I update that (as the only user this is what I get). I post videos of new features on twitter though, as a reminder to myself of where I passed through
sohzm11 months ago
Made a browser app which used androids web view, added a few buttons and gave it to a friend and forgot about it. About a year later he messaged me he still used that dumb app. Lol<p>Also made a notes app for Android that just had one text view with only options to edit text and save it. Used it for years for pasting random stuff, and gave it to a twitter friend and forgot about it. Connected with that friend years later and he said he used that app as well :)
wewtyflakes11 months ago
A `jshell` wrapper that inherits the classpath of the current Gradle project. Wrote it using plain Bash, and it comes in handy when working with Java projects.
kitallis11 months ago
Yes!<p>The two most used ones in the past few years:<p>WAP – a small utility to control my balcony-local drip irrigation system <a href="https:&#x2F;&#x2F;github.com&#x2F;kitallis&#x2F;WAP">https:&#x2F;&#x2F;github.com&#x2F;kitallis&#x2F;WAP</a><p>hisaab – expense tracking and categorizing because my bank doesn&#x27;t do apis and sends credit card reports in PDFs <a href="https:&#x2F;&#x2F;github.com&#x2F;nid90&#x2F;hisaab-clj">https:&#x2F;&#x2F;github.com&#x2F;nid90&#x2F;hisaab-clj</a>
automatic613111 months ago
I control the RGB Leds of my gaming PC from the command line. And the overclock on my GPU based on the daily temp (this is just a few lines in a shell though).
WalterBright11 months ago
I wrote a program &quot;syncdir&quot; that will synchronize two directories. I use it every day for making backups. I originally wrote it for DOS eons ago.
评论 #40884726 未加载
axegon_11 months ago
Plenty as a matter of fact. Two large ones off the top of my head.<p>First one: cloud services are expensive and come with a lot of overhead. However I do enjoy the idea of lambda&#x2F;cloud functions a lot but I didn&#x27;t want to rely on cloud services for them, especially since I have a ton of hardware to self-host stuff. So I built a service which piggybacks on DIND where I could add templates for such lambdas for a few languages(just rust and python cause that&#x27;s mostly what I use) where I can allocate some resources and build tiny containers. In order to avoid wasting resources, they are all off by default but through the magic of what I build(management and something like a reverse proxy + container management for DIND), I can call an endpoint, which will check if there is a container to handle the requests and proxies the request and response to and from it or it will spin up the container, do the same and shut it down after a pre-defined amount of time. You could argue that I could have achieved the same with minikube or k3s but this has proven to use a lot more resources compared to a single rust binary I can run on anything x86 with docker on it. The downsides are that I can&#x27;t distribute it across multiple servers so it only runs locally. But that fits my needs perfectly. There might be some people that would be interested in it but I never got to open sourcing it so I&#x27;m the only user. I&#x27;ve been planning to open source it &quot;next week&quot; for the past 2 years or so.<p>Second one: I love data. Specifically unstructured, raw data and I&#x27;ve been collecting a ton of articles from the internet over the past 2 years or so. The ingestion involves a pipeline that automatically processes them and extracts data&#x2F;makes them a lot less unstructured: events, locations, timestamps, what has happened where and all that jazz. It&#x27;s a long list of ml models, data transformations, validations, 3 llm&#x27;s fighting each-other and a bunch of other stuff. Kinda feels like a child to me so I don&#x27;t want to open source it. I know that I could hypothetically convert it into a product and make some money off it but my past entrepreneurial experiences have been very unsuccessful, I have limited time and lack motivation. So at the moment I&#x27;m simply enjoying the data getting spit out on a grafana dashboard such as this [1].<p>[1] <a href="https:&#x2F;&#x2F;i.imgur.com&#x2F;fAoQghk.png" rel="nofollow">https:&#x2F;&#x2F;i.imgur.com&#x2F;fAoQghk.png</a>
piloto_ciego11 months ago
I have a notepad I built in Python that I really like. I keep a running list of notes in it that’s always available by typing “notepad” into the command line.<p>I have soil moisture sensors for my wife’s plants (and an air quality sensor) that’s generating a constant stream of sensor readings. I wrote my own OTA updating code for that because I was frustrated at having to plug in sensors to update the code.<p>I have a few calculators too.
评论 #40884408 未加载
torstenvl11 months ago
I think most software developers create software that&#x27;s specific for their own use, not for release.<p>A big chunk of these are proof of concept programs, test code that is good for trying an idea but won&#x27;t be complete enough for a test suite in the end result.<p>Others are random data fixes when you&#x27;re migrating file formats or end up with a bad CSV or something.<p>I have a toy program that just tells me what a keystroke looks like via raw mode.
goddamnyouryan10 months ago
This link orginization tool: <a href="https:&#x2F;&#x2F;link.horse" rel="nofollow">https:&#x2F;&#x2F;link.horse</a><p>The key is using the bookmarklet.
Epskampie11 months ago
Yes, I&#x27;ve got a shopping&#x2F;todo&#x2F;whatever list app that I made for myself and my girlfriend. So far it has multiplayer editing, offline mode, suggestions when adding, scraping ingredients from a recipe site we use. I love that I can just add random things that I need like that last one. I hate the multiplayer syncing, it&#x27;s kinda brittle. I guess I spent around 20 hours on it.
codingdave11 months ago
Quite a few, but the one that may be unique is a tool that scrapes the location data from an eBird list of rare birds sightings in my area and pops up a map for me, so I can see if any birds have been sighted near me that I don&#x27;t already have on my personal birding list.<p>It only took about 15 minutes to throw together into a bookmarklet, so it was a really low effort, but I use it daily.
zem11 months ago
<a href="https:&#x2F;&#x2F;github.com&#x2F;martindemello&#x2F;anthill">https:&#x2F;&#x2F;github.com&#x2F;martindemello&#x2F;anthill</a><p>does fairly basic word search stuff, and there are lots of more sophisticated programs out there, but none of them run in a linux terminal and that&#x27;s what i wanted. i have it constantly open in a tab, for various word game related things.
pryelluw11 months ago
I have a forever project that is only meant for my needs. It’s basically a web app with a bunch of tools to make my life easier. Things like a links board, blog engine, event tracker, and more. Now I’m adding an llm to include better search abilities. The thing is pretty nice and fast. Uses a simple architecture because I don’t want to spend a lot of time maintaining it.
ecesena11 months ago
<a href="https:&#x2F;&#x2F;priceeth.github.io" rel="nofollow">https:&#x2F;&#x2F;priceeth.github.io</a><p>First commit was 8y ago. It&#x27;s the only tool I&#x27;ve been checking consistently multiple times&#x2F;day.<p>Originally react, recently (like 2y ago lol) I rewrote it in svelte focusing on page speed and added some minor features like changing the symbols to track in local storage.
idatum11 months ago
Often for me, it&#x27;s building my own software around another FOS project. Home Assistant (HA) is a good example. I have several sensors that I collect via my own Zigbee, BLE, and RTL-SDR clients which output readings as MQTT messages.<p>The only thing HA does it display them via their MQTT sensor&#x2F;event entities. I&#x27;m not a big fan of developing UIs.
mynegation11 months ago
I was unhappy that bike share app in my city does not do a good job displaying availability of bikes or docks on the map so I wrote my own web app that gives me color coded availability of bikes and bike docks near my home, my typical destinations, and my current location (geolocation is supported, had to figure out https for it).
评论 #40884001 未加载
beretguy11 months ago
Currently working on a hub of “simple apps” which currently include a basic social network and car maintenance tracker. I plan to keep adding more useful apps, for example next on my list is budgeting app. Also will make it a PWA so that I can get notifications for example about posts from friends or maintenance reminders and such.
评论 #40884506 未加载
评论 #40879635 未加载
vishalontheline11 months ago
I&#x27;ve made some quick stuff:<p>- Created an &#x2F;etc&#x2F;hosts file switcher script to swap out websites that I allow myself to visit during working and non-working hours.<p>- My ISP provies dynamic IP addresses, so I created a IP address updater script that lets Cloudfront know my updated IP, to among other things, host a website from a personal computer.
_jsdw11 months ago
I made Highscore (<a href="https:&#x2F;&#x2F;github.com&#x2F;jsdw&#x2F;highscore">https:&#x2F;&#x2F;github.com&#x2F;jsdw&#x2F;highscore</a>) just for the purpose of keeping track of high scores with somebody on a few karaoke games that didn&#x27;t track individual peoples scores.. never been used for anything else :)
sawaali11 months ago
I made a music app for iOS for myself, after not finding anything that did what I wanted as a non-streamer: visualization, audiobooks support, section loops, bookmarks, sleep timers, import from any source, etc.<p>In the end, I did put it on the App Store (after months of cleanup!) but it&#x27;s easily the most used app on my phone.
suriya-ganesh11 months ago
I&#x27;ve written a bunch of web apps, extensions and bots to help me with tasks, taking notes on articles and books.
KolenCh11 months ago
A static site generator tailored for my own need.<p>A python package to code up reusable TeX expressions, which is used in the said site generator.<p>A python library for trip planning which let my wife make plans using Google MyMaps and Excels and then my library syncing them up and also shows some visualization in Jupyter Notebooks.
junon11 months ago
I created a component downloader from Ultra Librarian that imports directly into an in-repository KiCad library, along with models, metadata (Mouser ID, arrow ID) etc.<p>It was named out of annoyance so it doesn&#x27;t have the most &#x27;appropriate&#x27; name so I&#x27;m probably never going to release it. But it works very well.
ryanisnan10 months ago
I wrote a python program to accept in a list of lumber cut dimensions I want, and it determined the optimal cuts per board, taking into account blade length.<p>It minimized waste, and told me exactly where to cut.
Valord11 months ago
About 3 years ago I wrote a web app to make browsing and categorizing my YouTube subscriptions easier. I can, for example, select the music category and see all videos posted by channels I have marked as music. Really simple stuff backed by a sqlite db.<p>I spent a total of probably 20 hours on it and use it 5&#x2F;7 days a week.
igniuss11 months ago
A framework to make presentations in svelte and markdown files, exports to a static website on GitHub, used it for roughly 12 presentations so far, a lot of them programming focused. I tried a bunch of different ones but none that made it painless enough.<p>Also a bunch of Obsidian plugins, to have nicer macros and templating.
winchester678811 months ago
I made <a href="https:&#x2F;&#x2F;github.com&#x2F;notAI-tech&#x2F;fastDeploy">https:&#x2F;&#x2F;github.com&#x2F;notAI-tech&#x2F;fastDeploy</a> for ease of use of deploying Deep learning models.<p>Except me and the team at my company nobody uses it.<p>After I made it lot of solutions came in this space, but IMO this is the easiest one to use still.
hakfoo11 months ago
A little Python&#x2F;Tk script that scrapes weather.gov data and provides an icon with the local temperature and a forecast dump. It was sized to fit the fairly large-iconed dock of my X11 desktop and be a bit more modern than old WindowMaker dock apps.
benstein11 months ago
I made my own webmail client in 2001. The killer feature was a Heart button that one-click opened a new mail addressed to my then-girlfriend-now-wife. I&#x27;ve never seen that feature replicated then or now. And since it was hard-coded to my girlfriend, it was clearly (hopefully!) not broadly applicable.
JensenKarlsson11 months ago
I made a PWA for Miniflux because I&#x27;m a doomscroller deluxe and wanted a similar experience for my feeds [1]. It&#x27;s nice to be able to tailor something for my needs specifically.<p>1. <a href="https:&#x2F;&#x2F;github.com&#x2F;wolfhechel&#x2F;sidor">https:&#x2F;&#x2F;github.com&#x2F;wolfhechel&#x2F;sidor</a>
endofreach11 months ago
Most of the software i write is for my own use. But to be fair, most doesn&#x27;t see any light of day still.
xnx11 months ago
I couldn&#x27;t find any existing tool or technique to condense periods of low motion frames in long videos so I wrote my own Python&#x2F;ffmpeg utility with the aid of Google Gemini.<p>I love the results, though I have a strong hunch that there&#x27;s probably a different processing approach that would be 10x faster.
fwsgonzo11 months ago
I made a scripting solution for my game, mainly to keep motivation up. I really like writing an maintaining a high-quality emulator, while game development can be a slog sometimes. I believe this has kept me from losing motivation and perhaps it can be attributed to me one day releasing that game.
grogenaut11 months ago
When I was growing gourmet mushrooms I was just sending data from esp32s and humidity&#x2F;temp sensors to grafana&#x2F;graphite on my nas. A few hundred loc total.<p>Many years before that I did sports arbitrage. Wrote my own xpath system before xpath for it. Worked great.
awesomestartups11 months ago
I used to have python scripts that I wrote for my own use as the java packaging manager for a bank. Java versions are a moving target so it was difficult to build something that was generic and would work with each new release. I had to tweak things with most releases so I never published it.
paulcole11 months ago
I have a bunch of single-purpose Google Docs extensions that I use every day at work. For example one sets permissions on Docs based on groupings of users that I have set up (HR only, Finance only, Leadership Team only, Just me).<p>I think it took me like an hour to make and I use it several times a week.
rldjbpin11 months ago
a lot of cool projects here, but i will share my relatively mundane ones:<p>- made a tool to import all of my local music library to a spotify playlist by analysing the music itself. used a music tagging api to analyze a small section from the middle of the track to get its details. went through the effort because some of the music i had was very old and i did not keep up with updating their media tags.<p>- i finetuned musicgen on instrumentals of some of the music i like. i now have an interface that randomly generates a short track, which can sometimes create a nice banger. cannot publicly release due to licensing issues.<p>call me lazy and selfish, but i only bother doing things outside work if i am really interested in it and want to do it for myself.
dhuan_11 months ago
I built mock, an api tool and testing utility to be able to quickly manipulate API responses and act as a proxy server at the same time.<p>After some time, I decided to open-source it:<p><a href="https:&#x2F;&#x2F;dhuan.github.io&#x2F;mock&#x2F;" rel="nofollow">https:&#x2F;&#x2F;dhuan.github.io&#x2F;mock&#x2F;</a>
onassar11 months ago
Bookee: <a href="https:&#x2F;&#x2F;onassar.github.io&#x2F;extensions&#x2F;bookee&#x2F;" rel="nofollow">https:&#x2F;&#x2F;onassar.github.io&#x2F;extensions&#x2F;bookee&#x2F;</a> Chrome Extension to navigate my bookmarks a bit easier (I use the keyboard shortcut 50+ times a day)
ReK_11 months ago
I wrote something to bulk download my library from Bandcamp and actually packaged it as an excuse to mess with github actions: <a href="https:&#x2F;&#x2F;github.com&#x2F;ReK42&#x2F;bcamp-dl">https:&#x2F;&#x2F;github.com&#x2F;ReK42&#x2F;bcamp-dl</a>
bachmeier11 months ago
I wrote a productivity app for myself (basically my implementation of GTD). There are a gazillion such apps out there already, so I don&#x27;t see a reason to share mine. I did it because everything else was either too complex to be practical or too simple to be useful.
eternityforest11 months ago
At various times I&#x27;ve made apps for my own use. I tried a few times to do a DIY notes app.<p>But I usually find that the hassle of having to maintain it at random times whenever some platform changes happens, or else not be able to use some important feature,vis just not worth it.
textlapse11 months ago
I would love to hear from people who created their own esoteric programming language or a game engine with no game in sight.<p>[It does speak to a time where people create something they truly are passionate about but may not fit into the typical optimization of PMF, growth etc.]
评论 #40884439 未加载
评论 #40885641 未加载
评论 #40884424 未加载
marak83011 months ago
Voice controlled gaming assistant. Think of it as a copilot. I&#x27;ve since added overlays and responses.<p>Edit: As I think on it more (it&#x27;s been a few years since I dusted it off), added multithreading so some commands could process over time.<p>It was a great learning experience.
ezzabuzaid11 months ago
I built January.sh to finish more backend projects in less time.<p>Most of my freelance work is API development and most of it are repetitive tasks so I thought I could solve this through compiler generator.<p>Early this year I decided to open it up for others, still beta though
tealpod11 months ago
<a href="https:&#x2F;&#x2F;HelloEle.com" rel="nofollow">https:&#x2F;&#x2F;HelloEle.com</a> is a Cli tool to upload, download files with numbers.<p>I built it in the process of teaching a cli tool. Which I extensively use to move files between computers, especially to servers.
lelanthran11 months ago
Yes. My task tracker works better for me than anything else I&#x27;ve tried over the years (decades, even), including every single one showcased on HN.<p>It&#x27;s quick to start, non-laggy to use and matches my thought process exactly. Has both a CLI and a GUI.
makz11 months ago
I&#x27;m currently writing my own hashmap implementation. The goal is to make something small, simple, reliable, and that anybody can quickly integrate into their own projects. So far it has taken me around 40 hours and it&#x27;s 95% done.
Dachande66311 months ago
Yes. Several.<p>- My blog, which has lots of weird pages for stats, time jumps, old games&#x2F;tools&#x2F;utilities. - Flight tracker app. - Home control app (because HA was a pain to keep updated). - Wood working tool helper for my dad.<p>And more. It&#x27;s liberating.
评论 #40887904 未加载
steveridout11 months ago
I&#x27;ve got a bunch of scripts to handle my finances, both personal investments and to help with certain parts of my company tax reporting.<p>Among other things it uses ChatGPT to extract structured data from PDF invoices for reporting expenses.
galfarragem11 months ago
A chrome app to help me visually acknowledge new crypto coins that reach the <i>top</i> on coingecko. I use it daily.<p>I made also a custom spreadsheet that solves the same problem but an order of magnitude more precise. I use it weekly.
burn_cycle11 months ago
So many, it&#x27;s why I got into the field I suppose.<p>Like everyone else, I have a hacker news client, which is &quot;universal&quot; (in the Apple sense), and is made around how I use the site. I might even release this one, one day.
qsdf3810011 months ago
Most of my projects are like this. I’ve lost hope of convincing anyone of the usefulness of anything that’s not trendy.<p>I’m most confortable with modern C++, win32, boost, and I love templates. Everything everybody loves to hate.
michidk11 months ago
<a href="https:&#x2F;&#x2F;github.com&#x2F;michidk&#x2F;vscli">https:&#x2F;&#x2F;github.com&#x2F;michidk&#x2F;vscli</a><p>It allows me to launch vscode projects and devcontainers I often work on very quickly. Saves me so much time!
j4511 months ago
All the time<p>Many little handy scripts and tools I might even put in front of a web script to share.<p>None meant to see the light of day or ship.<p>One way to do it is just list them on a public website for yourself to use<p>Let seo pick them up and you’ll see if anyone wants it too.
SoftTalker11 months ago
I pretty much stopped writing code for myself&#x2F;as a hobby when I started writing code as my day job. There really is something about losing passion for a hobby once it becomes work, at least in my case.
评论 #40883846 未加载
sosborn11 months ago
My favorite personal project is a Japanese-English dictionary with full-text search (thank you JMDICT: <a href="https:&#x2F;&#x2F;www.edrdg.org&#x2F;jmdict&#x2F;j_jmdict.html" rel="nofollow">https:&#x2F;&#x2F;www.edrdg.org&#x2F;jmdict&#x2F;j_jmdict.html</a>).<p>It&#x27;s a Rails app and includes a flashcard system to help me study. It also emails me a daily list of 5 vocabulary words to study.<p>I use it all the time and it took about a month to get it into a state where I felt comfortable deploying it. I&#x27;m about to add a feature that will use the devices camera to scan and extract a vocabulary list from the image using OCR (I&#x27;ll use this when reading Japanese text).<p>It&#x27;s useful for me, but more importantly, it&#x27;s fun.
rqtwteye11 months ago
When I was freelance I had my own accounting software. I added things as needed and over the years it got really powerful. The whole thing was written in VBA with MS Access as backend.
vborovikov11 months ago
an online store item price watcher - saved me some money while shopping online<p>a feed reader - I was never satisfied with other feed readers so I&#x27;ve built my own<p>small utilities I use from time to time<p>All these apps were in active development for at least a year each and were deployed to my home server where they continue to work to this day. I fix bugs and add new features when I have time. Many of my apps use the libraries I publish publicly. It&#x27;s always a pleasure to work on my own projects.
broast11 months ago
I use a notepad I created for myself where each line displays a timestamp of when it was last modified, for my personal note taking workflows. Html&#x2F;vanilla js.
olalonde11 months ago
Coded a microcontroller that allows me to open my gate using my phone so I don&#x27;t have to carry the gate remote around. Also convenient when I have guests.
rpastuszak11 months ago
Yeah, quite a few! Here&#x27;s the list: <a href="https:&#x2F;&#x2F;untested.sonnet.io&#x2F;Projects+and+apps+I+built+for+my+own+well-being" rel="nofollow">https:&#x2F;&#x2F;untested.sonnet.io&#x2F;Projects+and+apps+I+built+for+my+...</a><p>Two highlights:<p>Enso (<a href="https:&#x2F;&#x2F;enso.sonnet.io" rel="nofollow">https:&#x2F;&#x2F;enso.sonnet.io</a>) - I use it every morning and generally keep it open throughout the day: <a href="https:&#x2F;&#x2F;untested.sonnet.io&#x2F;Stream+of+Consciousness+Morning+Notes" rel="nofollow">https:&#x2F;&#x2F;untested.sonnet.io&#x2F;Stream+of+Consciousness+Morning+N...</a><p>Sit. (<a href="https:&#x2F;&#x2F;sit.sonnet.io" rel="nofollow">https:&#x2F;&#x2F;sit.sonnet.io</a>) - I use it every morning and on some afternoons (I start my main job after lunch)<p>I made those for myself, and made them public after chatting with friends&#x2F;colleagues, that&#x27;s why they&#x27;re available online now.<p>I also have a bunch of small scripts&#x2F;apps&#x2F;productivity tools (automate boring job tasks).
jim_lawless11 months ago
A set of Python PIL scripts for generating background &#x2F; wallpaper montages. One of the output montages is here :<p><a href="https:&#x2F;&#x2F;jimlawless.net&#x2F;magsbooks.jpg" rel="nofollow">https:&#x2F;&#x2F;jimlawless.net&#x2F;magsbooks.jpg</a><p>A Perl script that formats a bbcode-like markup to HTML for some of my web pages.<p>A mostly-Powershell script that stops all Windows features and apps that I don&#x27;t want running. Some features&#x2F;apps start up again after Windows updates, so this shuts them back down.<p>Some SMTP&#x2F;POP3 scripts that I use in various languages to automate email management.<p>An ffmpeg script that converts an MP3 coupled with a static image to an MP4 so that I can upload podcasts to YouTube. I did provide this on a Twitter&#x2F;X post once, so maybe it&#x27;s not something I&#x27;ve kept to myself very well.<p>Some ffmpeg scripts to convert M4A audio file to MP3.<p>I have a web page that just displays the current time every second that I use when timing things. It&#x27;s all very simple client-side JS.<p>...and others.
评论 #40887909 未加载
dirteater_11 months ago
I hate flashcards so I made my own app for studying Chinese after finishing HelloChinese. Very similar interface, but allows me to bring my own content.
评论 #40884625 未加载
fullstick11 months ago
I made a compass app for when I&#x27;m driving. Shows direction, speed, and coordinates. Doesn&#x27;t work of you&#x27;re not moving. I love it.
hobs11 months ago
A recipe scraper and rehosting website that nobody cares about but me, a slack&#x2F;mumble&#x2F;link checker&#x2F;duper and chat logger, a bunch of arduino&#x2F;espressif stuff to manage and control little projects like a home gardening, a suite of database synchronization, troubleshooting, and monitoring tools.
denvermullets11 months ago
some very cool projects here!<p>the app i use the most is a simple budget app, no connecting to external accounts. just built w&#x2F;react and uses localStorage for storing info. i think i spent like a week on it and i definitely am the only one using it. <a href="https:&#x2F;&#x2F;simplebudgetcontrol.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;simplebudgetcontrol.com&#x2F;</a><p>another app i still use is an app that tracks my magic the gathering collection, ha. rails&#x2F;react and lots of outdated frontend code that i started to refactor and then realized i&#x27;m the only one using it so who cares haha. <a href="https:&#x2F;&#x2F;www.99staples.com&#x2F;collections&#x2F;denvermullets&#x2F;9" rel="nofollow">https:&#x2F;&#x2F;www.99staples.com&#x2F;collections&#x2F;denvermullets&#x2F;9</a><p>i just recently started working on my own event server in rails (similar in idea to mixpanel) and have it deployed for my portfolio site.<p>love starting projects and getting them rolling. i wish i could just work on stuff i cared about all the time honestly
stefanve11 months ago
created a car selection script, that collected data from several platforms, reliability data, occasion adverts, safety data, reviews and specs.<p>I used it to buy a secondhand car based on several parameters (price, doors, features, reliability etc) and by assigning weight to the parameters<p>Python in total a day or so of work (including tweaking and adding features) only used it a couple of times to buy a car
sghiassy11 months ago
I wrote some scripts that convert my Quickbooks accounting data into detailed reports that are insightful to me and beautifully printable
hdjY2811 months ago
I built a macOS app to securely encrypt my personal files. My password is converted to a key that’s used to decrypt files
binary13211 months ago
I wrote a portable Lua based build tool for C and C++ that I use pretty religiously. I have no plans to publish it.
heintzsight10 months ago
I built a payroll system for my business.
heywire11 months ago
Personal finance application, use it weekly.<p>Plenty of scripts and stuff to automate and data log various things in our household.
nashashmi11 months ago
I built a tool to upload photos to arcgis. never saw the light of day. but I had nothing against sharing it.
SinisterAlex11 months ago
I created a pollution-tracker app with functionality so i can track pollution i remove and GPS-tag it.
croisillon11 months ago
most software i created were made in a couple of weeks for mostly one person (with me dogfooding as much as possible of course):<p>- text format conversion for a former coworker<p>- bookmarking for my sister<p>- calendar &amp; bank account &quot;manager&quot; for my gf<p>- local weather log for my former boss
mharig11 months ago
I made a CLI password manager with Python.<p>It uses PBKDF2HMAC and Fernet to encrypt a SQLite DB.
01HNNWZ0MV43FF11 months ago
I&#x27;ve made myself a couple music players over the years.<p>Around 2007 VLC and friends didn&#x27;t automatically obey play-pause buttons when they were minimized, even though most dedicated music players did. But I found the dedicated ones like Amarok difficult to use. So I made a GUI music player that basically shuffled my whole collection and let me play, pause, skip, and play the previous track using my laptop&#x27;s media keys. I miss that laptop.<p>Later I made a web-based so I could listen to music at work without loading pirates music onto a work system. This one isn&#x27;t as good, but at least Firefox automatically handles play-pause for me.<p>Also it&#x27;s a huge bugbear for me that someone decided soft buttons means we can combine the play and pause buttons. Let them be idempotent! Sometimes I want to be sure it&#x27;s paused!<p>My next project is a thing to replace Jellyfin, and I might actually publish that, so I won&#x27;t get into details.<p>By amazing coincidence someone published a similar project here on HN right after I started on mine. But I have different features planned for mine so it&#x27;s fine<p>Oh yeah I used those music players nearly every day, especially the web one since it also works on my phone. I probably put 200 hours into the desktop one and 50 into the web one. The desktop one was a case of having to also learn a GUI framework, and gstreamer, plus it supported a couple of Internet radio stations and just had way more features than the Web one.
tpoacher11 months ago
I mean, others can use it too if they want, obvs, ... but, yes.<p>e.g. my misc-updater, I use daily, to check Manually-Installed &#x2F; Source-Compiled (MISC) packages for updates! [0]. Works like a charm.<p>I also do all my bugtracking &#x2F; milestone planning via my bashtickets program too (Ticketing for the terminal using structured textfiles. Implemented in bash. [1]) though technically this is still under development as it still lacks a couple of features &quot;others&quot; might reasonably need. But for me, it&#x27;s already perfect at doing what I need it to; I&#x27;ve already worked with colleagues on some pretty large academic projects with this, where all we had was access to an ssh server with no gui and no root access! Works great, and is git friendly!<p>[0] <a href="https:&#x2F;&#x2F;git.sr.ht&#x2F;~tpapastylianou&#x2F;misc-updater" rel="nofollow">https:&#x2F;&#x2F;git.sr.ht&#x2F;~tpapastylianou&#x2F;misc-updater</a><p>[1] <a href="https:&#x2F;&#x2F;git.sr.ht&#x2F;~tpapastylianou&#x2F;bashtickets" rel="nofollow">https:&#x2F;&#x2F;git.sr.ht&#x2F;~tpapastylianou&#x2F;bashtickets</a>
ceritium11 months ago
keepthis.site its open, i did It for me, there are some signip but i think i am the only active user.<p>Also consumebefore.jose.gr and a few small tools you can find on my blog.
uptownfunk11 months ago
why does everyone make their own note taking app - is it easier to specify the app in code than to build an app that gives you what you want?
cfeeley11 months ago
I wrote a tool in Haskell that continually polls my city&#x27;s (Toronto) bike share API and dumps it into a database, along with a web server component that does a bunch of on-the-fly analysis of the data and serves that up as various visualizations and stats.<p>I got so frustrated with my city&#x27;s bike share program one night and I wanted to figure out whether the problems I had been having were widespread or not.<p>Surprisingly enough there&#x27;s a standard for bike share APIs [0] that my city adheres to. I&#x27;d been looking for an excuse to learn Haskell and figured the best way to stay motivated was to make useful tool for myself.<p>I&#x27;ve been working on it for the better part of a year at this point (probably &gt;200 hours) and I use it roughly daily. After gathering a few months of station-level data it became clear enough that the system (specifically, how the e-bikes are handled) has some pretty serious issues.<p>I ended up sending the city a couple of freedom of information requests for some data I was missing and for the contract between them and the company that operates the system. The contract says that the operator gets paid a fee for every dead e-bike they move to a charging station - regardless of whether or not that bike actually manages to charge.<p>The city owns around 2000 e-bikes and there are frequently times where a whopping <i>20</i> are available - the rest are out of battery, sitting in docking stations for multiple days. Occasionally the operator shuffle the bikes over to the handful electrified charging stations, and about half the time the bikes don&#x27;t charge (they just completely fill the stations, meaning nobody can use them - one of those stations happens to be right outside my partner&#x27;s place). Then 4-7 days later they come around in a truck and get rid of the bikes, and the whole cycle repeats again in a couple days.<p>Basically, we&#x27;re getting fleeced by the system operator. It isn&#x27;t even clear to me if it&#x27;s intentional or not, or just the usual combination of lax municipal oversight and an apathetic operator.<p>I&#x27;ve been meaning to send my data and the contract over to a few reporters who care about that sort of thing, since (a) the bike share system is genuinely a great way to get around (when it works) and (b) financially it&#x27;s really good value for the city [1], and I&#x27;d like to see the problems fixed (especially given that the city is planning on massively expanding the e-bike fleet).<p>[0]: General Bikeshare Feed Specification: <a href="https:&#x2F;&#x2F;github.com&#x2F;MobilityData&#x2F;gbfs">https:&#x2F;&#x2F;github.com&#x2F;MobilityData&#x2F;gbfs</a><p>[1]: The per-trip subsidy is $0.67, versus $4.08 for a trip on our transit system (!)
评论 #40885444 未加载
Doches11 months ago
I’ve probably made dozens of tools for myself that no one else uses, but — sort of by definition — none of them are publicly available. Who needs my orchestration app, access control UI, or Jenkins replacement? Nobody, that’s who.<p>But a few years ago I took a couple weeks out and polished up one my personal tools for public use, and since then it’s seen exactly one other user. So, uhh, I guess that counts? It’s called Saascast (<a href="https:&#x2F;&#x2F;saascast.io" rel="nofollow">https:&#x2F;&#x2F;saascast.io</a>), and it builds revenue forecasts based on your Stripe subscription data. Took me probably two weeks to build, and required maybe half an hour of maintenance per month on average.<p>I use it every.single.day, though.
EddieLomax11 months ago
bookmarking system, made for me by me<p><a href="https:&#x2F;&#x2F;bookerics.com" rel="nofollow">https:&#x2F;&#x2F;bookerics.com</a>
publicdaniel11 months ago
All my software
spacecadet11 months ago
Tons. Lots of little games, a complete suite of data ETL tools, lots of stupid ML projects I never made public. A repo full of AI interpretability scripts, a private RAG bot, several private MoA type bots, extensions of nmap and wireshark for my side businesses, lots of payloads... I also like to try and implement papers for fun, I have this stupid toy that does deepfake detection using line detection, perspective checking and some ray tracing.<p>Much of it is absolute hacky python garbage that Im fine adjusting to my needs, but don&#x27;t need the burden of it being in the public.
Timshel11 months ago
Does not strictly match the &quot;will never see the light of the day for anyone else.&quot;<p>But forked an ActivityPub server (GoToSocial) to proxy Rss feeds (<a href="https:&#x2F;&#x2F;github.com&#x2F;Timshel&#x2F;RssTooter">https:&#x2F;&#x2F;github.com&#x2F;Timshel&#x2F;RssTooter</a>).<p>Spent a couple of days on it initially (but had made something similar for Nitter before). Mainly use it to track Xkcd and software release outside of Github.
Ey7NFZ3P0nzAe11 months ago
I&#x27;m a medical student with FOMO and who loves AI stuff. I have about 70 public github repos that nobody uses even though I take pride in at least trying to use good code and documenting everything.<p>Here&#x27;s a highlight (edit: more like an ego dump)<p>I couldn&#x27;t keep up with my news so I made the perfect summarizer that goes through the thought process of the author : <a href="https:&#x2F;&#x2F;github.com&#x2F;thiswillbeyourgithub&#x2F;DocToolsLLM&#x2F;">https:&#x2F;&#x2F;github.com&#x2F;thiswillbeyourgithub&#x2F;DocToolsLLM&#x2F;</a><p>I needed an AI based system that go through my anki cards, but might as well make it able to read dozens of file formats. Now I can put entire medical youtube playlists, conferences, anki databases, hundreds of PDFs and ask a single question across all of them at once : also <a href="https:&#x2F;&#x2F;github.com&#x2F;thiswillbeyourgithub&#x2F;DocToolsLLM&#x2F;">https:&#x2F;&#x2F;github.com&#x2F;thiswillbeyourgithub&#x2F;DocToolsLLM&#x2F;</a><p>I couldn&#x27;t keep up with my anki review so I made an embedding based review reranker (one of my first ever project!) : <a href="https:&#x2F;&#x2F;github.com&#x2F;thiswillbeyourgithub&#x2F;AnnA_Anki_neuronal_Appendix&#x2F;">https:&#x2F;&#x2F;github.com&#x2F;thiswillbeyourgithub&#x2F;AnnA_Anki_neuronal_A...</a><p>I needed to make my sleep more efficient : micropython to the rescue : <a href="https:&#x2F;&#x2F;github.com&#x2F;thiswillbeyourgithub&#x2F;sleep_tracker_pinetime_wasp-os">https:&#x2F;&#x2F;github.com&#x2F;thiswillbeyourgithub&#x2F;sleep_tracker_pineti...</a><p>I wanted to store everything and anything in Logseq ttps:&#x2F;&#x2F;github.com&#x2F;thiswillbeyourgithub&#x2F;LogseqMarkdownParser and <a href="https:&#x2F;&#x2F;github.com&#x2F;thiswillbeyourgithub&#x2F;LogseqPDFImporter">https:&#x2F;&#x2F;github.com&#x2F;thiswillbeyourgithub&#x2F;LogseqPDFImporter</a><p>I was so late for my medical exams I needed to learn FAST : I made an incredible app that turns hours long recordings of you talking aloud while reading your PDF into hundreds of flashcards that learns to mimic your style by using previous validated answers etc. Using stt and LLM. This one is not out yet but will be.<p>Also I made scripts that automatically reformulate old bad anki cards into more appropriate ones.<p>As well as creating complex mnemonics stories and images automatically added to your anki cards. Not yet public.<p>I needed help to sort through my many todos so I made an ELO based reranker made to be used in the CLI (careful, wet paint) : <a href="https:&#x2F;&#x2F;github.com&#x2F;thiswillbeyourgithub&#x2F;mini_LiTOY">https:&#x2F;&#x2F;github.com&#x2F;thiswillbeyourgithub&#x2F;mini_LiTOY</a><p>I wanted my anki OCR to be more legible so I made tesseracts try to preserve spacing : <a href="https:&#x2F;&#x2F;github.com&#x2F;thiswillbeyourgithub&#x2F;OCR_with_format">https:&#x2F;&#x2F;github.com&#x2F;thiswillbeyourgithub&#x2F;OCR_with_format</a><p>I lost my voice for some time but needed to be heard so I made speech.sh : <a href="https:&#x2F;&#x2F;github.com&#x2F;thiswillbeyourgithub&#x2F;speech.sh">https:&#x2F;&#x2F;github.com&#x2F;thiswillbeyourgithub&#x2F;speech.sh</a><p>And quite a few others.
irskep11 months ago
I wrote a web site builder that I only use to host my indie bands&#x27; web pages. It&#x27;s got a very silly backend vs the potential target market (musicians) in that it makes you write Markdown, so I don&#x27;t have delusions of grandeur, but it works well for my simple hosting needs and lets my bandmates make changes without going to git.
brink11 months ago
I made aquinas for myself. The source code is out there, but I don&#x27;t think anyone else uses it, but I use it almost daily. <a href="https:&#x2F;&#x2F;github.com&#x2F;codabrink&#x2F;aquinas">https:&#x2F;&#x2F;github.com&#x2F;codabrink&#x2F;aquinas</a><p>It&#x27;s a media player that sits in the console.
kleiba11 months ago
Isn&#x27;t that the majority of software one makes?
windowshopping11 months ago
Yeah, built an entire magic the gathering sandbox to play online with friends because I wasn&#x27;t happy with existing options. Mentioned it once in another thread here but have otherwise never shared it.
jimnotgym11 months ago
Yes, and I won&#x27;t even tell you about it
impossibleline11 months ago
I love to build things, and it&#x27;s especially fun to build stuff that solve my own problems, but it&#x27;s tricky to find enough time for larger pet projects on top of a full-time job, so most of my personal projects tend to be smaller scripts that try to do one thing well, and require little maintenance. I have created a plethora of scripts over the years that help me avoid doing boring and repetitive tasks and save me time in the long run. As I wrote these scripts for myself, these are either too opinionated, or depend on some of my other scripts&#x2F;libs, and not well documented, so it&#x27;s problematic to share with others. To name a few:<p>- A bash script to easily keep track of and manage multiple git repos. There are many similar projects out there, but I couldn&#x27;t find one that fit my needs exactly.<p>- Bash scripts that automate most of the periodic backup, update and cleanup process on my various machines. There are many things to backup (e.g. git repos, documents, notes, calendars, and other apps) and update (e.g. OS, packages from various pkg managers, plugins, stuff installed with standalone scripts) and most of these things can be automated to spare a ton of time in the long run.<p>- Scripts to declutter my downloads folder, which used to be a mess. E.g. automatically rename and neatly organize the downloaded invoices, warranties, movies, series, etc where they belong.<p>- Bash+pup+jq scripts to generate RSS feeds for websites that don&#x27;t provide one, or not good enough, so I don&#x27;t have to scroll through each one every day. E.g. new cinema releases, new products, and some blogs with no&#x2F;insufficient RSS.<p>- A web change monitor script that periodically fetches web pages, extracts the relevant content with pup+jq+pandoc, and then commits and pushes it if there were changes. GitHub provides an RSS feed of the repo changes with a link to an excellent diff interface. E.g. product promos, and wall-of-text changelogs.<p>- A price tracker script, that uses pup and jq to extract the price of various products and notifies me of about price drops using a telegram bot to spare some money.<p>- Bash scripts to automate the process of setting up various operating systems with the necessary tools I need on a bunch of machines, and to version control the config files, so I can easily set things up again without having to spend a lot of time with the migration, or worrying about losing sth.<p>- Bash &amp; powershell scripts to debloat Android, Windows, Mac and some Linux distros from the unwanted, performance hogging, and privacy-invading pre-installed crap and &quot;features&quot;.<p>- Userscripts to reduce unnecessary distractions and annoyances on the web. E.g. debloat Google, YouTube, Reddit, re-enable copy-paste, Jira ticket UX improvements.<p>- Python code and shell scripts to semi-automate double-entry accounting with beancount.<p>- A ton of small scripts for more efficient work ...
yellowapple11 months ago
I routinely turn any task I need to do more than three times into a script that automates it. I&#x27;ve published a couple of these, like<p>- This pair of scripts for starting an RDP session with a resolution matching the size of the current window (from back when I was using herbstluftwm): <a href="https:&#x2F;&#x2F;gist.github.com&#x2F;YellowApple&#x2F;6e6134b7493485aa3e56f2556506b1d2" rel="nofollow">https:&#x2F;&#x2F;gist.github.com&#x2F;YellowApple&#x2F;6e6134b7493485aa3e56f255...</a><p>- This script for running Windows programs in a specified Proton-managed Wine prefix (though nowadays there are better tools for this): <a href="https:&#x2F;&#x2F;gist.github.com&#x2F;YellowApple&#x2F;8f91daf000153195e643e8d721e734d0" rel="nofollow">https:&#x2F;&#x2F;gist.github.com&#x2F;YellowApple&#x2F;8f91daf000153195e643e8d7...</a><p>- This script that populates ID3 tags for MP3 files I&#x27;ve downloaded (via youtube-dl or yt-dlp or whatever) based on their filenames and folder structure (so that I can easily play what I want from a USB stick plugged into my truck&#x27;s head unit): <a href="https:&#x2F;&#x2F;gist.github.com&#x2F;YellowApple&#x2F;7b9cc54cf6fbc20bf79cf2408b7f550d" rel="nofollow">https:&#x2F;&#x2F;gist.github.com&#x2F;YellowApple&#x2F;7b9cc54cf6fbc20bf79cf240...</a><p>but a lot of them I&#x27;ve never gotten around to uploading, and most are buried away on old machines (or backups thereof) or lost forever on employer-owned machines that got presumably wiped after I left.<p>This post did, however, inspire me to go back through some of those backups and look through some of those scripts. Some results after a few minutes of spelunking and reminiscing:<p>- A couple Perl scripts that would convert hex digits into eight-dot Braille characters (to represent a fictional country&#x27;s number system, back when I was actively roleplaying on NationStates.org as a teenager)<p>- A trio of Perl scripts to turn CSVs into SQL insert&#x2F;update&#x2F;upsert statements (possibly related to the time I accidentally blew away some of a prior employer&#x27;s production data; we couldn&#x27;t bring down the whole DB to do a normal SQL Server restore, so instead I pulled up the CSV dumps of the relevant table (for our ETL pipeline) and used those to build the necessary inserts&#x2F;updates to restore what got deleted)<p>- A one-liner `tr &#x27;\r&#x27; &#x27;\n&#x27; &lt; $1 &gt; $2` called &quot;mac2unix&quot; because I was trying to import a CSV into SQLite for some analysis but the sender created it on a Mac and of course the default spreadsheet app still uses lone carriage returns for linebreaks like it&#x27;s nineteen-eighty-fucking-nine<p>- Another one-liner `exec xdg-open &quot;$@&quot;` called &quot;open&quot; (don&#x27;t remember why; maybe because people kept sending me shell scripts written on Macs?)<p>- A whole bunch of other little scripts to populate toolbars from my herbstluftwm-using days<p>- A bunch of scripts to generate ZPL code to print various labels on Zebra thermal printers
bcl11 months ago
yes.
davidguetta11 months ago
Nope