- A program that parses the stdout of the finger command (which is issued for the name of all subdirectories of /home/ ) and then issues an id command for each user on the server of my university. This way I made a 250KB textfile containing usernames, realnames, registration numbers, emails and years of registration; just by organizing information that is normally available by using these two commands. Of course this program in it's present form works correctly only for my university...
- A simple crawler. After making the main crawler part I tried to find something more useful to collect than emails but I came up with nothing so I made it seek email addresses. (but I hate spam :-P )
Saturday, December 15, 2007
Pattern matching
This week I used for my first time (at least seriously) the pattern matching functions of Lua. I am amazed of how powerful they are! I made two programs using them.
Categories:
My Progs,
Programming
Subscribe to:
Posts (Atom)
Popular Posts
-
The other day, while browsing Wikipedia, I wondered how hard it must be to have weird fetishes without being able to share them with someone...
-
Brainfuck is a very beautiful esoteric programming language with only 8 commands. You can make any algorithm you can think of on this langu...
-
Here is a nice way to implement an indexed table in Brainfuck , using only n+4 memory for n table cells. I will soon release a new version o...