2005-04-01

randomfox: (Default)
2005-04-01 05:29 pm

Maze Generator in C#

This program generates mazes. It works by starting at an empty cell and doing a random walk, drawing a wall as it goes, until it collides with another maze wall. It does that until all the cells are full.

Read more... )
randomfox: (Default)
2005-04-01 05:30 pm

Hopalong Strange Attractor in C#

This is an example of a strange attractor, a formula that generates each subsequent point from the previous one and produces intriguing and surprising patterns when plotted on screen. Different values of P, Q, and R will produce different patterns.

Read more... )
randomfox: (Default)
2005-04-01 05:53 pm

Yearly Calendar in C#

C# program that prints out the calendar for one year. It uses Zeller's congruence to determine the day of the week for each date, and so it is incorrect for any date before the start of the Gregorian calendar.

Read more... )
randomfox: (Default)
2005-04-01 05:54 pm

Calculate bills and hits needed to add 1 to the George Score (C# version)

Same as the Perl version of the program, but rewritten in C#.

Read more... )
randomfox: (Default)
2005-04-01 06:17 pm

Using Lingua::EN::Fathom to analyze readability and list the most common words

This script is almost identical to the example given in that module's documentation. The only enhancement is some simple processing on the word frequency table.

Read more... )
randomfox: (Default)
2005-04-01 10:43 pm

Javascript Monthly Calendar

Javascript code that fills a table with the calendar for the current month. Has links to go back to the previous month and forward to the next month. Also has a form to go to any month and year. The calendar code uses Zeller's congruence to determine which day of the week each date is on, so it is not correct for dates before the start of the Gregorian calendar.

Read more... )