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.
|
47
|
|
|
|
|
|
Wiitones, an application that lets you play music with a Wii Remote (and Nunchuk). The application has three channels. Channel 1:
Channel 2:
Channel 3:
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. |
||||
|
|
|
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 :) |
|||
|
|
|
|
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 :) |
|||
|
|
|
|
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. |
|||
|
|
|
|
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.) |
|||
|
|
|
|
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. |
|||
|
|
|
|
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 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 |
||||
|
|
|
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. |
|||
|
|
|
|
I code demo effects and 3D engines for my own pleasure. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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... |
|||
|
|
|
|
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. |
|||
|
|
|
|
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 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 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) |
|||
|
|
|
|
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. |
|||
|
|
|
|
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/ |
|||
|
|
|
|
Most important right now: my own Windows Mobile Twitter client. |
|||
|
|
|
|
I wrote an app that finds my wife a temp job (so important in today's economy). It logs into a website, keeps refreshing the list of available jobs, and if there is anything in the list, it selects a gig based on certain criteria. And I may not be the direct user, but I do directly benefit :-) |
|||
|
|
|
|
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 made a converter from color document (highlighted code in HTML) to a nicely grayscaled document. So when I print my code with syntax highlights on a black-white laser printer, it is easy to read. |
|||
|
|
|
|
I started writing an app for Debian systems which works kind of like the RedHat network does. I had every intention of finishing it off some day but for the past 2 years it's sat idle, barely able to read the package database, detect available updates and schedule scripted tasks. I guess I should get around to implementing the server so that it can be controlled... |
|||
|
|
|
|
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! |
|||
|
|
|
|
"Who's round is it?" Many moons ago in my first job we went to the pub every lunchtime. Every day someone bought a round of beers for the team. Problem was there were one or two tight-wads who always had to nip to the loo or had a coughing fit when the question was asked: "Who's round is it?" So I wrote a desktop app in Delphi that listed on pub attendees and kept a score of number of times they'd been to the pub and the number of rounds bought. I think it also factored in how many beers they bought on their round. Very useful but there was still one guy who simply never bought a round, ever. |
|||
|
|
I used to do extemporaneous speaking in high school. I used a lot of online sources but you couldn't have computers in the prep room - just paper (you carried HUGE file tubs with newspaper clippings, magazine articles, etc around. They probably still do). I had to print out all of these online articles and make notes of dates accessed, authors, etc. But the graphics were awful on our printer, so I made a program to strip out IMG tags, then other graphics-intensive tags that were extraneous, and then I standardized font sizes, spacing, etc so it was easier to read in print. Kind of an automatic print version. |
|||
|
|
|
|
Instead of iTunes, we use Media Monkey. We love it except for when we added a remote control. The UI uses very small fonts that makes it very difficult to use a clumsy remote pointer to do much unless you are close enough to just use a mouse anyway. So I made an alternate UI for it. It's big and ugly and really functional. The buttons go to the edge of the screen with no buffer zone. Everything is in black and white and where ever the cursor is gets highlighted. We use it daily and love it. |
|||
|
|
|
|
dailystrips, a program to automatically download multiple daily webcomics. |
|||
|
|
|
|||
|
|
|
|
Programs I wrote in C# for personal use:
|
|||
|
|
