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
|
|
|
|
|
|
These two are the favourite ones that I wrote for personal use. |
|||
|
|
AssetsGraphed for tracking my personal finances. It was my first Ruby on Rails application. |
|||
|
|
A glut of AutoHotkey functions. Technically, it's all one program, but the code is pretty modular, and a lot of it consists of what you can get in the form of smaller apps. The modules include a clock/uptime tooltip, a take-a-break reminder, a stacked clipboard manager, cycling wallpaper, and a grid-based window mover/resizer that allows me to manipulate GUI windows with OCD precision without having to rely upon the mouse. The rest of the AHK stuff consists of hotkeys and automations for programs with accessibility problems. When I was 12 or so, I wrote a QBASIC program to help me improve my math skills. Later, I made a few Dragonball Z inspired typing games to help me increase my speed. (Alas, none of them were over 9000.) |
|||
|
|
|
|
Back in high school I wrote a garbage collector/defragger for my calculator. Last year I wrote myself an alarm clock that required entering a sequence of numbers, to force myself out of bed and my brain to start working coherently. Worked well for a few weeks but I began to mistrust the accuracy and stopped using it. |
|||
|
|
|
|
A firefox plugin to collect images. It does all the work of saving them, recording where I got them, renaming duplicate file names, and putting that info into a database for me. |
|||
|
|
|
|
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. |
|||
|
|
|
|
I wrote a Valentine's day program for my soon to be husband that used the Microsoft Agent w/voice (think the characters that appear on the search screen by default in WinXP) to read him his Valentine's greeting out loud. What looked good on paper, sounded really creepy when the Wizard started reading it. We had a good laugh though! |
|||
|
|
|
|
I wrote (or more accurately hacked up) an online photo gallery in PHP for use by myself and a group of friends. It's now got over 7,500 images on it and Twitters whenever someone uploads. |
|||
|
|
|
|
I wrote a one-pager web application using PHP and jQuery UI to load batches of images from a subdirectory and display as stacks using CSS on an interface where I can drag, position, and clear them. I use these images as reference for when I am drawing. I keep it on my local XAMPP install and bookmarked it with Prism as an application so it opens in its own window. I call the application Corkboard and find it way more useful than Windows Preview or any other application since they don't allow seeing full-resolution versions of multiple images. |
|||
|
|
|
|
I used to have a logic puzzle addiction.
But I got sick of making mistakes in "the monkey work". A simple typographical mistake like misplacing an "X" could take an hour to locate, and 2 seconds to fix;-), more often than not leading to an uncompleted puzzle, which allways feels like a failure, even if it's not worth diddly outside your own head. It just NEEDS to be solved, like a spotty Rubics Cube sitting on a bookshelf. Ergo: No fun! SO... I wrote a VB5 app (hey, it was the 1990s) which read the Categories and Values from a text file, and rendered the game-matrix (as pictured above) in a picture box. I even rotated the top-vertex labels 90 degrees (creating a rotated fontset) by bit-sampling the painted font and transposing x and y. I started out with a dumb (purely human driven) interface: - left-click to place an X; - right-click to place a O in the matrix. Then I added automatic X'ing when you placed a 0:
This gave me with a "half automated" problem solver which totally sucked because it was "stealing my thinking" but only half-doing the job. I still had to go through every "rule" iteratively to check that every implied oxymoron was X'ed. It was time to step-up to the next level. So... I wrote a simple "rule engine" to ease the pain. Let's take a simple example: In the above puzzle you might be given the statement: Lauren doesn't like soft cheese or red wine. Which implies that:
So the rules might be:
So then you simply parse each rule and place the appropriate O(s) and/or X(s) letting the "consequence engine" developed above fill in the rest of the matrix. Did I mention that the fun part is the recursion? You need to reparse every rule every time the board changes, which changes the board, which must eventually (but NOT immediately) trigger a complete reparse, until all rules are parsed and nothing new is "learned". This was an "interesting little problem" and the "genericness" of the matrix and rule engine make it more widely applicable. It's sort of primitive decision support system, fringing on an AI. Good fun. |
|||
|
|
|
|
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 |
|||
|
|
|
|
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. |
|||
|
|
|
|
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 had developed a simple "take a break indicator" |
|||
|
|
|
|
At one point we had some fairly flaky servers in our organisation. I wrote a screensaver for my machine which showed the Processor % for the various servers, much like the graph in Task Manager, but full screen (and showing processor usage from various machines). The idea being, even if my machine was locked and I was sat in a meeting on the other side of the office, I had a pretty good idea if one of the servers had spiked (or conversely, if one died). |
|||
|
|
|
|
I wrote a page in PHP scraper that extracted all the movie info from a movies page on IMDB for a large list of movie IDs, and put it into a database. A script would then read the info stored in the database, and generate an entirely different movies portal of my own, with full pagination, images, and so on. Another script would pull relevant products out of Amazon and Art.com and display products related to each movie on each movie page. To increase the size of the portal, I simply had to add more movie IDs into the database and re-execute the script. I learned so much from that experiment, I get a happy, warm fuzzy feeling whenever I recall.... |
|||
|
|
|
|
I implemented this with ASP.NET a few weeks ago: http://www.primroseleague.co.uk/ It has my own songs on it, with lyrics, free .mp3 downloads, comments, the usual stuff. I would have used ASP.NET MVC but the hosting service only supports .NET 2.0. I found it easy enough to get something like an MVC architecture. When I get some time, I'm going to get into jQuery and plaster it with ajax for no good reason. |
|||
|
|
|
|
I wrote a simple widget for Mac to convert back and forth between decimal and binary notation. For a bigger application I was working on, it became convenient to store "12345" as 2^1 + 2^2 + 2^3 + 2^4 + 2^5 = 62. So I wrote a widget that went from "12345" to "111110" to "62" so that I could see what I was actually working with when I debugged. In another moment of fun, I rebuilt the NY Times flashed based "kendoku" game into a standards compliant xhtml/javascript/css version as a proof that some flash games don't need to be flash. I ended up with a near identical version of their game, exact same functionality, plus some extras that I felt like they were missing. Good experience. |
|||
|
|
|
|
Back in the "good old days of VB3" I made a number of tools for my personal arsenal. 1) A program for auto-loading videos on cd/dvd that displayed cover art, a link to imdb and a play button. 2) A tool that did file comparisons. This one was my favorite. When I first got interested in programing it was for AOL2.5-AOL3.0 "proggies", "punters", "scrollers" and other damned annoying crap were the big thing. I didnt make those programs, thankfully. Someone released a program that would allow you to decompile them to VB3 source. Sure, the code looked like crap, all the varibles meant nothing, but you could change a few things, recompile the source if you wanted and make it "yours". Then someone came up with this idea to change a few bytes in the header of the VB3 program which would cause the decompiler to think the executable wasnt a valid VB3 file. Then out of no where, everyone was making their own 'decompile protectors'. So, I made a small 1 form, 1 label program and would run the so-called protector against it and do a file compare and undo what ever it was that they did to protect it. For the most part this was a simple byte change some where around byte 34 of the file. Then I added their changes to the list of changes my program watched for and undid them, leaving the program unprotected. The fun thing was, these "protectors" were protected by their own scheme. I would undo it, decompile it and post the source. Needless to say, some people didnt like it. I never released this program into the wild, but it had a ton of other things it could do, like generate subclassing code to get rid of the standard title bar of a program and make some gradiant thing instead. It also served as a very very bad screen saver. Sadly, a few years ago (something like 8 years ago) the harddrive it was saved to crashed and began making the dreaded click noises. Still to this day I wish that drive was good and I could go back and look at the code. Nostalgia at its finest. 3) I also made a very very basic game that subclassed AOL chat rooms and watched for commands. The game was called 'Wizards and Warriors'. It was a turn based two player game. It had something like 7 different attacks that varied in damage dealt and based on a random roll for if the attack landed, and what range of damage it would do. Was a fair amount of fun as it kept a scoreboard for kills based on the player's screename. Those were the Good Old Days :) |
|||
|
|
|
|
A few years ago, my internet connection was provided by the computer centre of my university. The only way to access the internet was to login via Cisco VPN. Now the problem was/is, that the cisco Client is (still) unable to keep your connection up 24/7. That's because as soon as the connection breaks (for whatever reason), the client displays a messagebox informing you that the connection broke. Great! Long story short: i reverse engineered the local Cisco protocoll and wrote my own client, namely the Evil Client. Many students at my place and even a few profs use it since then :) |
|||
|
|
|
|
I bought a DVD + SD card camcorder and found out that it wouldn't record video to the SD card, nor could one copy videos from the DVD-VR discs it created. So I wrote a program to extract the individual programs from the DVD-VR: http://www.pixelbeat.org/programs/dvd-vr/ |
|||
|
|
|
|
I created a learning tool, to learn the vocabulary of a new language (it shows you your progression, ask questions, and you can easily extend your vocabulary sheet) |
|||
|
|
|
|
I code demo effects and 3D engines for my own pleasure. |
|||
|
|
|
|
I wrote a drum machine back in 2005. http://gneutronica.sourceforge.net I had come up with a guitar riff that had 13 (or 26, depending how you count it) beats, and the riff resisted any effort to add or subtract beats by losing it's coolness. The only real linux drum machine at the time was hydrogen, and it didn't do weird timings. I wanted to learn gtk, had some MIDI synths lying around, and wanted to know how to drive those as well... so I wrote a step sequencer (a drum machine interface) that can handle arbitrary steps and timing. Probably the neatest feature it has is that you can cut/paste ascii drum tablature directly into it. It doesn't make any sound on its own, it just drives MIDI devices. (you can drive a softsynth with it though.) |
|||
|
|
|
|
Three lines of code. Profound change in game balance. Pretty nifty :-) |
|||
|
|
|
|
Wiimote XEvent Synthesizer. A program to listen to a wiimote for button presses (etc.) and generate X events (via the XTest extension), so that I can control my computer with my wiimote. Useful for running Elisa with my computer hooked to my TV. There are probably many other programs like it; for one, wminput. However, I've grown tired of it---it needs write access to /dev/uinput (bad for security), I need to tell it to synthesize keys pre-keyboard-mapping (so, since I'm using dvorak, I have to say "generate an s" if I want an o). And it really doesn't work well if you want to control the mouse with a nunchuk. So I wrote my own (in C). It embeds Guile (the GNU embeddable scheme implementation), and I do most of the heavy lifting in Scheme. |
|||
|
|
|
|
A program that took a list of track times on a CD, and figured out what tracks to pick to fit nicely onto each side of a cassette tape without cutting off half-way through a song. |
|||
|
|
|
|
I wrote a Windows Service that counted down the time to the first Lord of the Rings release. It had a One Ring that would sit in the system tray, and when you hovered over it would tell you the time remaining. There were other options when you clicked on the ring - I think opening the LOTR web page or something like that. |
|||
|
|
|
|
Last one was a program that tracks and saves song names from shoutcast radios I listen to. So later, I could use online music services to directly listen to lovely ones by just clicking on them. |
|||
|
|

