2008/09/15
Modular Origami - Menger Sponge - Index Cards
Menger Sponge i have built some time ago. It's quite simple to make, altho it does require alot of patience. Below are some instructions on how to make such a thing (shamelessly stolen from www.mengermania.com - go there if the images aren't descriptive enough) :
2008/09/04
PHP - Array In Array Function
This is simply a function in PHP to check if all rows from array1 exist in array2. I needed this function some time ago, thought I'll post it to save others the trouble of making it.
function array_in_array($array1,$array2) {
$result=array_intersect($array1,$array2);
if ($result==$array1) {return 1;}
else {return 0;}
}
If array1 exists in array2 --> returns TRUE.
function array_in_array($array1,$array2) {
$result=array_intersect($array1,$array2);
if ($result==$array1) {return 1;}
else {return 0;}
}
If array1 exists in array2 --> returns TRUE.
2008/09/01
Snood Game v.1.2
Link : Click Me!
This is simply a remake of the game that was avalible on motorola cellphones. This flash game was made by me and my friend a long time ago. My friend did most of the coding, because i have almost knew nothing about programming back then.
This is simply a remake of the game that was avalible on motorola cellphones. This flash game was made by me and my friend a long time ago. My friend did most of the coding, because i have almost knew nothing about programming back then.
Macromedia Flash 5 - Tutorial 01 - How To Draw Lines
In the video below, you will see how to use these two tools
to make a line, bend it and move it.
Notice how the cursor changes when it points at different parts of the line.
At the end of the video the whole line was moved. To do that you need to click on the line to highlight it, and then click and hold the button again to drag it anywhere you need it.
Now try to do everything shown in the video yourself!
to make a line, bend it and move it.
Notice how the cursor changes when it points at different parts of the line.
At the end of the video the whole line was moved. To do that you need to click on the line to highlight it, and then click and hold the button again to drag it anywhere you need it.
Now try to do everything shown in the video yourself!
Subscribe to:
Posts (Atom)