grimpirate's Contributions
Below are the tutorials, code snippets, and resources grimpirate has submitted to dream.in.code. For more information on Kudos and contributing to dream.in.code visit: http://home.dreamincode.net/?p=about#kudos.
Tutorials
Code Snippets
3D Engine in PHP by grimpirate
Submitted: November 15, 2006        Views: 7301
A 3D engine written in PHP which highlights you can do anything if you set your mind to it.
Submitted: November 15, 2006        Views: 4299
This snippet takes an input file of the type gif, jpg, or png and then modifies it to display as a sequence of colored text in your browser window.
Bezier Curve Generation in ActionScript by grimpirate
Submitted: November 15, 2006        Views: 12049
This little snippet draws Bezier Curves on the screen
Submitted: August 12, 2008        Views: 1332
A function which given n, m-sided dice returns an array with the probabilities of each collective score.
Submitted: November 28, 2007        Views: 1664
This snippet takes a directory and returns or excludes certain files/directories from the output.
Submitted: November 15, 2006        Views: 7762
I created this to keep track of all the backups I make of data on CDs from my computer.
Hex Tiling in ActionScript by grimpirate
Submitted: November 15, 2006        Views: 2465
Draws a hexagonal grid on the screen as opposed to the traditional square grid.
Submitted: November 15, 2006        Views: 5649
A class of static functions that lets you work with multidimensional arrays so as to perform operations in Linear Algebra (find the determinant of a matrix, etc.)
Submitted: November 15, 2006        Views: 2572
Java already has an md5 computation method in it, but I wanted to work it out myself and see if I could make the implementation. These are my results.
Submitted: January 15, 2008        Views: 10642
This function locks files without using the flock function provided by PHP, as this function does not work on certain types of filesystems.
Submitted: March 19, 2007        Views: 2360
This is a php script that takes a php file as an input and then outputs its code with the standard php highlighting but with line numbers as well.
Submitted: November 15, 2006        Views: 2981
A tiny snippet that generates a random quote onto the page based on an array of quotes input by the user.
Submitted: August 20, 2008        Views: 1809
Implementation of the Sieve of Eratosthenes algorithm for finding prime numbers from 2 to N.