Posts Tagged: open source


25
Mar 10

The greatest program ever

The telecrapper 2000 telemarketer interception system is quite possibly the greatest program of all time. Basically, you hook your phone into your computer and the computer filters out the telemarketer. That alone is a pretty great feature. But, it gets better.

You configure the application with 2 simple configuration files. The first one is a list of phone numbers to filter out. The second one is a simple list of .wav files. Instead of just hanging up the phone on the telemarketer, the application immediately plays the first .wav file in the config. The program then waits for silence. Then the app plays the next .wav file. This simple loop will continue until A) the telemarketer gives up B) the app runs out of wav files to play.

As if this was not good enough, the app records the conversations. Check out some examples…

What is your favorite color?

Garbled

Is this Chris?

Most people around here are family folk.

The app is open source, but it looks like the hookup to the phone is kinda janky. Check it out: TC2K

Cheers,
Jonathan


14
Oct 09

New platform for open data

Factual is a new web application that facilitates the open contributing of data on the internet.  Think of it as wikipedia for databases.  I’m pretty stoked.  I’m not sure if this experiment will turn out to be a winner or not.  But, I sure hope they make it.

The data stored in it is very much open ended.  For example here is a database of one of my favorite things, beer. Go ahead, edit the data. Add whatever details you you want.


8
Jun 09

ddate is fun

ddate is a unix utility. It is glorious. Just read the man page.

ddate prints the date in Discordian date format.

If called with no arguments, ddate will get the current system date, convert this to the Discordian date format and print this on the standard
output. Alternatively, a Gregorian date may be specified on the command line, in the form of a numerical day, month and year.

If a format string is specified, the Discordian date will be printed in a format specified by the string. This mechanism works similarly to the format
string mechanism of date(1), only almost completely differently. The fields are:

%A

Full name of the day of the week (i.e., Sweetmorn)

%a

Abbreviated name of the day of the week (i.e., SM)

%B

Full name of the season (i.e., Chaos)

%b

Abbreviated name of the season (i.e., Chs)

%d

Ordinal number of day in season (i.e., 23)

%e

Cardinal number of day in season (i.e., 23rd)

%H

Name of current Holyday, if any

%N

Magic code to prevent rest of format from being printed unless today is a Holyday.

%n

Newline

%t

Tab

%X

Number of days remaining until X-Day. (Not valid if the SubGenius options are not compiled in.)

%{

%}

Used to enclose the part of the string which is to be replaced with the words “St. Tib’s Day” if the current day is St. Tib’s Day.

%.

Try it and see.

Examples

% ddate
Sweetmorn, Bureaucracy 42, 3161 YOLD

% ddate +'Today is %{%A, the %e of %B%}, %Y. %N%nCelebrate %H'
Today is Sweetmorn, the 42nd of Bureaucracy, 3161.

% ddate +"It's %{%A, the %e of %B%}, %Y. %N%nCelebrate %H" 26 9 1995
It's Prickle-Prickle, the 50th of Bureaucracy, 3161.
Celebrate Bureflux

% ddate +"Today's %{%A, the %e of %B%}, %Y. %N%nCelebrate %H" 29 2 1996
Today's St. Tib's Day, 3162.

Bugs

ddate(1) will produce undefined behaviour if asked to produce the date for St. Tib’s day and its format string does not contain the St. Tib’s Day
delimiters %{ and %}.

Note

After ‘X-Day’ passed without incident, the Church of the SubGenius declared that it had got the year upside down – X-Day is actually in 8661 AD rather than
1998 AD. Thus, the True X-Day is Cfn 40, 9827.

Author

Original program by Druel the Chaotic aka Jeremy Johnson (mpython@gnu.ai.mit.edu)
Major rewrite by Lee H:. O:. Smith, KYTP, aka Andrew Bulhak (acb@dev.null.org)

Five tons of flax.

Distribution Policy

Public domain. All rites reversed.

See Also

date(1),
http://www.subgenius.com/
Malaclypse the Younger, Principia Discordia, Or How I Found Goddess And What I Did To Her When I Found Her


16
Jun 08

Visualizing the Apache HTTPD project

This visualization, called code_swarm, shows the history of commits in a software project. A commit happens when a developer makes changes to the code or documents and transfers them into the central project repository. Both developers and files are represented as moving elements. When a developer commits a file, it lights up and flies towards that developer. Files are colored according to their purpose, such as whether they are source code or a document. If files or developers have not been active for a while, they will fade away. A histogram at the bottom keeps a reminder of what has come before.


code_swarm – Apache from Michael Ogawa on Vimeo.

Cheers,
Jonathan


16
Jun 08

Visualizing the Eclipse IDE project

This visualization, called code_swarm, shows the history of commits in a software project. A commit happens when a developer makes changes to the code or documents and transfers them into the central project repository. Both developers and files are represented as moving elements. When a developer commits a file, it lights up and flies towards that developer. Files are colored according to their purpose, such as whether they are source code or a document. If files or developers have not been active for a while, they will fade away. A histogram at the bottom keeps a reminder of what has come before.


code_swarm – Eclipse (short ver.) from Michael Ogawa on Vimeo.

Cheers,
Jonathan