vote up 57 vote down star
46

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.

flag
show 3 more comments

108 Answers

vote up 0 vote down

Most important right now: my own Windows Mobile Twitter client.

link|flag
vote up 1 vote down

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/

link|flag
vote up 0 vote down

Dragonpaint (Dragon 32 BASIC)

When I was a kid (in the eighties) I wrote this application which mimicked MacPaint after seeing a MacSE for the first time. I wrote it in BASIC. It had some nice features like UNDO and printing. It used the joystick as a mouse.

File Sieve (Ruby)

This very naive script sorts the file in a directory according to the tags. Saves lots of time.

Many small scripts (Autohotkey, Javascript, Ruby...)

I love to automate small tasks (like grabbing some files from a web site, generate code, autologin to some site, etc.) and I have various scripts in different languages.

link|flag
vote up 1 vote down

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)

link|flag
vote up 2 vote down

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.

link|flag
vote up 0 vote down

I wrote a chess clock that runs in the browser using jquery. It supports 5 different time control modes. You enter the time for the players and the time control settings, start the game by pressing s, and end your turn by pressing the space bar.
I'd be happy to get some feedback.

link|flag
vote up 0 vote down

I've written these Firefox addons:

Affiliator - Generates Amazon affiliate links with one click from any page on Amazon.com

baNdit - A port of Farkit for banniNation.com, with a bunch of additional features, like the ability to ignore users, paste links or images from the clipboard as formatted HTML tags, and copy/paste memes with a few clicks.

CopyURL - Copies the current page or image URL to the clipboard, wrapped in an anchor or image tag. It defaults to HTML, but comes with BBCode and Wiki formats, or you can build your own.

TextSaver - I built this in 3 days for the Extend Firefox 3 competition, and to keep my wife from getting upset when she spent a lot of time on a post or email, then accidentally closed the tab and couldn't get it back. It's not maintained, and I've since written a much smaller GreaseMonkey script after being inspired by StackOverflow's feature that stops you from closing the tab if you've started typing an answer.

link|flag
vote up 0 vote down

A few years ago I was taking a finite mathematics course, and one of the topics we had to learn was matrix multiplication. I learned the technique pretty quickly, but solving them by hand was frustrating - you might not catch one little mistake until several pages later.

The process of multiplying matrices is very algorithmic, of course, and so is the perfect kind of thing for a computer to do. I reasoned that if the purpose of the course was to learn how to do matrix multiplication, writing a program to do it would demonstrate an adequate mastery of the subject.

The end result isn't exactly a beautiful work of art, but it functions quite well. I decided to release it as freeware...

MatrixCalc

link|flag
vote up 0 vote down

I've written quite a few toy programs. The recent one was a bit serious one. We are using DAL (generated by SubSonic) in our project. It is a big project so there was to be a business logic layer (BLL). We didn't want to access the DAL objects directly from UI layer. So we had to implement properties of DAL objects in bll objects. My colleagues were very opposed to the idea. They were not able to see the benefit of separating the responsibilities.

So I wrote a code generator using C# utilizing Reflection which took DAL Assembly generated by SubSonic, browsed for the types implementing ActiveRecord and generated a stub class exposing the (column) properties in DAL objects through BLL objects and writing constructor and save method.

link|flag
vote up 0 vote down

Simple requirement management tool - it took me one week. Buying commercial package would cost me few months of my work at the time, so it was a good deal.

link|flag
vote up 1 vote down

I code demo effects and 3D engines for my own pleasure.

link|flag
vote up 0 vote down

A few years ago I wrote a Family Tree website in ASP.NET for my own use that I am still using. It is not focused on graphics at this point. More with storing of the data and detailed notes about events and people and connecting all of the relationships. It also has pages that show aggregates of the data, like number of people with a surname and pins on a map for births, deaths, weddings, etc.

Like someone else mentioned in a previous answer, soon I'll throw a bunch of jQuery, ajax and probably convert to ASP.NET MVC for no specific reason.

link|flag
vote up 3 vote down

I wrote a throw-away utility (using D) to re-arrange large volumes of detective conan manga.

The manga I downloaded was organized in volume/chapter hierarchy with different style for naming (e.g. Chapter 10, Ch11, etc), the files inside them were numbered in all different kinds of ways.

I wanted to re-organize them into stories/episodes.

So the command line tool would receive a range of chapters and a name, and would pull all images from those chapters and rename them and put them inside a folder called [v.ch][v.ch]Episode Title

i.e.:

[01.01][01.02]Shinichi Shrinks [Episode 001]
[01.03][01.05]Kidnapped Girl
[01.06][01.09]Idol's Locked Room Case [Yoko]
[02.01][02.03]Perfect Alibai
[02.04][02.07]100 Million Yen Robbery [Miyano Akimi]
[02.08][02.10]Imprisoned Killer in Haunted Mansion [Shonen Tantei]
[03.01][03.06]Hatamato Family Ship Murder
[03.06][03.10]Strange Presents
[04.01][04.03]Art Museum Murder
[04.04][04.06]Train Bomb [Gin][Vodka]
[04.07][04.10]Treasure Code of Italian Gang
[05.01][05.05]Bandaged Man
[05.06][05.09]Karaoke Case
[05.10][06.01]Conan Kidnapping [Shinichi's Parents]
[06.02][06.05]Three Visitors
..... etc
link|flag
1  
+1 for detective conan! – ebrown Nov 11 at 20:37
vote up 0 vote down

All my open source projects were written for my own benefit - going back 20 years or more. They ranged from screenblankers to image views to games played on calculators. My sourceforge projects are the same - AstroInfo, PDF2PSP, HPConnect, Sound Bridge Commander were all written for my own use and shared out. Even the facebook app I wrote is really for my own use.

link|flag
vote up 1 vote down

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.)

link|flag
vote up 0 vote down

Blog app where 90% of the interface is the texteditor.

Of course I stopped using it altogether after a few weeks, but it certainly had a nice interface.

link|flag
vote up 0 vote down

A screenshot taking app called Screeny.

When I was 16 and first learning C# (And was enthusiastic with how easy it was to write programs as opposed to C++, in MY case), I used to use a certain screenshot taking app (It looks different now) that was actually a trial. I didn't have the money to buy it, so I decided to shoot down two birds with one stone by trying to write one myself: I would have my screenshot taking app and I would learn a bit more about C#. I ended up modeling it exactly like the trial app down to the UI and functionality, and called it Screeny. It was my first full-blown app I wrote. I then added some extra functionality and many of my friends also used the app.

Now I'm mostly on my MacBook, OS X, which has some pretty good screenshot taking functionality built in that suffices for me. I haven't used Screeny in a while, I wouldn't be surprised if it doesn't work on newer systems (Vista or 7), and some friends told me there were some bugs with multi-monitor setups, that I never got around to fixing. But it did serve it's purpose a few years ago and helped to motivate me to continue learning about programming :)

link|flag
vote up 0 vote down

Filling, an implementation of the `Fillomino' puzzle as seen on http://nikoli.co.jp. Find my implementation at http://www.chiark.greenend.org.uk/~sgtatham/puzzles/java/filling.html.

The rules are simple: fill an n-by-m grid with numbers; coalesce the numbers into maximal chunks such that there are no two different numbers in any chunk. The size of each chunk must be equal to the number it contains.

I did it mostly for the fun and challenge of writing it, but I've played it a few times too, so I guess it counts :)

link|flag
vote up 6 vote down

Wiitones, an application that lets you play music with a Wii Remote (and Nunchuk).

The application has three channels.

Channel 1:

  • A: enable sound
  • vertical angle of the Wii Remote (i.e. its pitch): control the pitch (i.e. tone) of the channel, in semi-tone steps (frequency factor: 12th root of 2) over 441 Hz.
  • B: enable bend
  • Wii Remote roll (i.e. angle around the vector from the expansion slot to the IR camera): control the bend. Vertical is none, each 90 degrees (left=down, right=up) is one semitone. (Or was it two?)

Channel 2:

  • C: enable sound
  • pitch of Nunchuk: control pitch (also from 441 Hz in 2(1/12)-factor steps)
  • always bends
  • Nunchuk stick, x axis: control the bend (full range is one or two semitones)

Channel 3:

  • Z enable sound
  • roll of Nunchuk: controls the pitch
  • always bends
  • Nuchuk stick, y axis: control the bend (full range is one or two semitones)

Use + and - to control the volume (shown in binary on the wiimote LEDs). Use the d-pad plus 1 and 2 to offset the channels by an octave. Home quits, IIRC.

The tones are all sinus tones; Hand-computed sound waves, ftw. :)

It's kind of tricky, though. When the user disengages a tone, you have to continue the sound wave until the elongation hits 0, or else you'll get clicks. While keeping track of the fact that you're going to zero, you also have to deal with the user re-engaging the tone. And you need to do good mixing (hopefully without overflows). And you need to deal with the tone changing frequency not at (conceptual) wavelength markers, but in mid-wave.

link|flag
1  
Theremin 2.0 – DR Aug 6 at 13:56
show 2 more comments
vote up 1 vote down
  1. I play Nexuiz against a girl I just met, beating her silly
  2. I implement a handicap system. You ask for a damage multiplier (between 1 and 100); all damage dealt to you is modified by that multiplier.
  3. I play Nexuiz against her again, this time beating her (but not silly).

Three lines of code. Profound change in game balance. Pretty nifty :-)

link|flag
vote up 1 vote down

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.

link|flag
vote up 2 vote down

I used to have a logic puzzle addiction.

an example of a logic puzzle grid

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:

  • which led to X'ing all other impossibilities;
  • which led to automatic O'ing when 1 possibility remained;
  • Recursion is fun!

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:

  • Lauren is not associated with feta.
  • Lauren is not associated with (merlot, pinot noir, port, or zinfadnel); and therefore Lauren must like champagne.

So the rules might be:

  • person[Lauren] != cheese[feta]
  • person[Lauren] == wine[champagne]

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

Most of the items on this page are things I wrote for personal usage. http://riteshnayak.com/hacks.html

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

Key-mapping utility, that removes the need for shift and altgr keys. By using it you can press '1' simultaneously with any key lower to it, and get '!'-character. Pressing 2 and any key lower to it will in turn result in "-mark and so on. In the similar way you can input lowest row characters ",.-", by pressing them simultaneously with any key above them ("JKL") or left to them ("M,."). First combination will result in ";:_"-characters, second in "<>|"-characters (based partially on nordic- and partially on us-layouts).

link|flag
show 1 more comment
vote up 0 vote down

I've done a couple of things like this myself, some of which were published in a (quazi-) finished state:

Published:

idnet - A lightweight image viewing utility.

findexe - A Windows equivalent to which on Unix. (Which i did not know about at the time... ;P)

silentcmd - Allows you to run a Windows console command without the Command Prompt showing.

Unpublished:

mpwgen - A simple random string generator.

xclip - A program to change the clipboard via the command line. (I didn't know about the Unix program of the same name at the time.)

Smartcuts - A program to modify a command line with a simple substitution language.

Gmail/Reader Notifier - Sits in the system tray and checks your Gmail inbox and Google Reader list for unread items.

TimeSync Checker - Compares clock drift over SNTP.

TempExtract - Automatically unzips ZIP and TAR files to a temporary directory.

Unfinished:

wdialog - A command-line-based wrapper for common Windows dialogs.

link|flag
vote up 4 vote down

I wrote a unix command-line to find HEX numbers that look like words, so I could use them as arbitrary numeric constants / magic numbers in code.

cat /usr/share/dict/words | grep -i '^[a-fsoi]\+$' | tr 'a-z' 'A-Z' | tr 'SOI' '501'

Got some nice constants out of it, such as:

0xCA5CADE
0xDECEA5ED
0x0B5E55ED
0x1D10C1E5
0x5EAF00D

Lots more great results when you run it.

link|flag
vote up 1 vote down

I wrote a Python script to download all the then-newly-published-online Calvin & Hobbes comics.

link|flag
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.