I don't mean scripts or tools for your work project. I mean actual software for your personal use, such as party organizer, CD administrator, whatever.
|
46
|
|
|
|
|
|
A clock, which shows money not time, a brilliant way to stay focused at work. I toyed with creating a multi-user version, known as the meeting clock, where we could cost the meeting in realtime, really good for keeping meetings short, but it didn't catch on as everyone would then know who earned what. |
||||||||||||||||||||
|
|
|
I've tried several Mac OS X dashboard widgets that retrieve lyrics from the Internet, but I never found one that I liked. So I wrote my own. |
|||
|
|
|
|
I wrote a ScreenSaver that rendered the US (with US Presidential Polling Data), but I couldn't find decent geometry data for all the states. So I wrote a Python tool to trace out textures on a image. I had fun one night loading up a high resolution Google map of the US into my Python tool and then painstakingly tracing each state and saving the data to individual files. I now have a pretty decent set of geometry data for North American states. |
|||
|
|
I wrote a neat system to organize my snippets. I had literally thousands of them consisting of various mini libraries for conf file parsing, malloc() logging / debugging, general logging, socket functions, all kinds of stuff. I had to be able to search for what I wanted and easily 'grab' the snippets via the command line. So, I could:
Voila, done. I did it with sqlite3, I may even release it one day once I clean it up. |
|||
|
|
I wrote a templating language for a website. It's pretty simple, but effective. The main requirement was so that I could add new articles to a list-like page by adding a few lines in one file, instead of modifying four files in just the right way. I'm still impressed by how useful it is. |
|||
|
|
|
|
In 11th grade, I was presented 200 words to define with synonyms. Rather than complete the assignment as given, I downloaded an online dictionary (Project Gutenberg) and created a mass word definer. Most students took 8 hours to complete the project, as the rules for definitions were rather strict. It took me 1 hour, and none of that time was spent doing laborious copying. The MassWordDefiner sat on Download.com for a while. You can still find remnants of it if you do a Google search. |
||||
|
|
|
Like many programmers, I tried doing Sudokus, then felt compelled to save time by writing a program that solves them by brute force. I triumphantly showed it to my wife, who just shook her head. |
||||||||||||||||
|
|
|
A desktop application named 'IOU' that my girlfriend and I use to keep track of how much we owe each other. It has two tables of data, one where we enter money that we lent each other, and another where we enter joint expenses that were paid for by me/her/both. It assumes that each party is responsible for 50% of joint expenses and shows how much I owe her (or vice versa). It also has an 'archive' feature which hides all previous transactions, but preserves the balance owed. Prior to IOU we used to use a spreadsheet, but her Excel-foo is weak, so she kept overwriting the cells containing formulae. |
||||||||||||||||
|
|
|
Ummm... quite a bit. Some of the more interesting ones:
No doubt I've missed a lot. Those are just ones that I quickly saw sitting around in a version control repository... |
||||
|
|
|
A program that computes the date of transition from standart time to daylight savings time and back in any given year. It's ironic that Windows knows when it is to happen, but never tells in advance, it only does tell post-mortem. And I don't want to painfully recall or find this online. |
||
|
|
|
|
When I switched from Windows to Linux, I was glad to finally get rid of Quickbooks for my tiny investment company. So I took the opportunity to also switch from Excel to OOoCalc. I put together a double-entry bookkeeping (did you know that's the only English word with three consecutive double-letters (well, other than bookkeeper)?) into which I could just enter balanced multi-line transactions and it would check them produce nicely formatted reports (P&L, balance sheet and transaction lists for both). Then I just hand that over to the accountant at the end of the year. He's actually expressed an interest in marketing it to several of his smaller clients and I'm in the process of polishing it up and providing a direct feed into his own accounting package. Other than that, I've got spreadsheets in OOoCalc for managing the share portfolios. Not much else that isn't toy stuff (connect4 and maze games for the kids). |
||||||||||||
|
|
|
AnyGen. A program that can be used for generating random stuff. I used it as a vehicle for learning C#. It lets you create tables, reference other tables, and give weighted values to items in the tables. Some of the tables I created were:
|
||||||||||||
|
|
|
Replacement for the calculator included with Windows Vista is something I wrote for myself last night in Clojure using Swing. Simple enough and fun, maybe even useful. http://www.acidrayne.net/node/52 |
|||
|
|
|
|
The most recent thing I have written for personal use was to address problems with this digital frame I own that has a lack of features such as random picture viewing and max delay of 30 seconds for a picture. I wrote a quick win app to solve it. To solve the random issue, it takes a directory and then randomly generates filenames for all the pictures. To solve the problem of wanting a longer delay it then uses the random filename and adds and number to it makes duplicate images for every 30 seconds of delaying that I want. So if I want it to cycle pictures every 5 mins, it makes 10 identical pictures. Space became an issue with the delay making all the duplicates so I built in picture resizing to match the frames resolution and converting to jpg. It actually ended up doing a better job of resizing than the frame was doing so as a side effect I actually got better looking pictures displaying as well :) I have also written many tools for online games to help me in a variety of ways. |
|||
|
|
Does a generational AI solver for the light-bot game because i simply couldn't figure it out count? |
|||
|
|
|
|
These two are the favourite ones that I wrote for personal use. |
|||
|
|
Rest and Stretch - a program to manage my RSI by not allowing too much keyboard or mouse activity. Dialog Automation - automates responses to dialogs and windows as they appear. Keyword Expander - can automatically resize dialog and windows to make bigger or move around - also can resize and move child elements of the dialogs Do your Homework - stops me playing on facebook or stack overflow too much. A Program to reset the corporate mandated screen saver timeout. Podcast filler - fills my music player with random un-heard so far podcasts that I've subscribed to, keeps track of 'em so I can't listen more than once. Seems I'm both lazy and undisciplined. |
|||
|
|
At the moment I'm working on a "run" program for Windows that functions similarly to the Vista start menu. Type in what you want to run and it lists the results. I built it because of my hate of using the start menu in Windows. Click click click. |
|||
|
|
Versioning File System for Windows built using IFS Kit. Quite similar to DEC VMS file versions - every revision of any file in protected directories are retained automatically. Complete with file explorer with adjustable timeline. Pretty cool actually. Was going to market it but didn't detect much demand so I use it myself for some projects. [movie] |
|||
|
|
When my wife got pregnant the first time I wrote a due date calculator. I also wrote my own app to copy images off of my digital camera. It did rotation and a few other tricks, but nothing too fancy. Then there are 100 other project I've started but never finished. |
|||
|
|
|
|
I wrote a "secret santa" program for a gift exchance between friends. It accepts a list of people along with blacklists, gift suggestions, etc. The results are mailed out to the recipients so not even the person running it needs to know who has whose name. The initial version was written in C about 10 years ago. It then migrated to C++ and finally to C#. We still use it yearly. |
|||
|
|
I wrote a plugin for Windows Media Center that displays in how many minutes buses and trams arrrive at my stop. Parsed from the traffic-company website. |
||||
|
|
|
The last one I wrote was a simple accounting application for tracking daily expenses. It was a Windows Mobile application. |
|||
|
|
|
|
3-4 years ago I wrote a Windows Desktop Wallpaper changer that allowed you to select a set of image files and have them change at configurable intervals in sequence or randomly with options to set the mode for stretching/tiling etc. I still use it on all my machines. However it looks like Windows 7 has added this functionality to its wallpaper option in Control Panel - so it looks like it might be obsolete in the near future. A while back, I also wrote a piano chord/scale finder utility for personal use - it displays the notes of a chord and/or scale on a piano keyboard, plays the chord and features inversions and quite a few other things. It was originally written in VB6.0 and I am currently porting it to a Silverlight version. |
|||
|
|
|
|
A small program that would take a bunch of IP addresses (of proxy servers), ping them and separate them into two lists - dead and good ones. Still use it once in a while. |
|||
|
|
|
|
I wrote my wife an app that allowed her to tap the spacebar to indicate the start and end of her contractions (about all you can do at this stage, apparently!). This then gave her a precise indication of how far apart her contractions were (with a nice chart, of course). When the midwives arrived I could tell that they were impressed, even if they didn't want to admit it! |
||||||||||||||||||||
|
|
|
I DL a lot of radio shows and I wanted to automate the process of organising them into folders. The files generally don't have ID3 tags, or tagging is patchy or inconsistent. They do tend to have useful names though, like "I Clavdivs", "Clavdivs the God", "Documentary on Clavdivs". I wrote a C# app that parses a directory files and, with a bit of jiggery-pokery, it matches file names to common sub-sequences and uses a ranking to find the most "popular" sub-sequences, which it then uses as the basis for folder names. To cut a long story short, I can run it on a folder of files and in a few seconds everything is organised into meaningful folder names. For the example 3 file names above, I get a folder "Clavdivs" with all three files inside. Sweet! As it does not rely on ID3 it works on any file types: it's equally good at organising photos, data files, movies, rar & par sets, etc. PaulS |
|||
|
|
I wrote an app that compares cell phone costs across the spectrum. It was a few years back, when the 3 national operators were doing all they could to obfuscate costs so we couldn't compare apples with apples. My app would take your itemised bill (csv file), and calculate against a selection of packages. It worked well, and I learned a great deal while writing it. |
|||
|
|
AssetsGraphed for tracking my personal finances. It was my first Ruby on Rails application. |
|||
|
|
Back in the mid 1990s, I wrote a repeating alarm clock called OOSAlarm to remind me to take Micropauses (12 second pause every 4 minutes) recommended by my physiotherapist. I've had it available for download on my website ever since. Every time I get a new PC, whether at work or home, OOSAlarm is one of the first tools I install. It bugs the living daylights out of me - but has undoubtedly helped me stay healthy. |
|||
|
|
