« Previous entry | Next entry » Browse > Images
Skip to comments (30)
Playing with primes
Posted by Erik on Oct 18 2005 @ 23:48 :: 4367 unique visits

This is an interresting image created by the following code:
CODE: C
int main(int argc, char* argv[])
{
const int width = 1024;
const int height = 768;
int num = width * height;
unsigned char* data = new unsigned char[num * 3];
memset(data, 0, num * 3);
for (int n = 2; n < num; n++)
{
int i, t;
for (i = 2; (t = (n * i)) < num; i++) {
int t3 = t * 3;
#define opp(a) data[t3+a] += 2
opp(0);
opp(1);
opp(2);
}
}
makebmp(data, width, height);
return 0;
}
{
const int width = 1024;
const int height = 768;
int num = width * height;
unsigned char* data = new unsigned char[num * 3];
memset(data, 0, num * 3);
for (int n = 2; n < num; n++)
{
int i, t;
for (i = 2; (t = (n * i)) < num; i++) {
int t3 = t * 3;
#define opp(a) data[t3+a] += 2
opp(0);
opp(1);
opp(2);
}
}
makebmp(data, width, height);
return 0;
}
Previously I used this code to calculate prime numbers. Now I was playing with it and found this interresting image. The program starts with an all black image, then loops through all pixels (which have their own numer) and increment all the pixels which numers are a multiple of the current pixel.
So for pixel 2 pixels 2, 4, 6, 8, ... get their color value incremented by 2.
And for pixel 25 pixels 25, 50, 75, 100, ... get their color values incremented.
Everyone knows prime numers aren't realy predictable but in this image you can see some interresting non prime white lines. Every pure black pixel is a prime, only with the jpg encoding this isn't realy acurate anymore.
30 comments posted so far
Add your own »
2. On Oct 20 2005 @ 20:56 schabbs wrote:
that's pretty cool. i'm in a intro c++ course right now and wanted to play with it alittle though and i'm wondering what you had for include files. thanx3. On Oct 20 2005 @ 21:26 Erik wrote:
You needCODE: CPP
#include <windows.h> // for the BITMAPFILEHEADER and BITMAPINFOHEADER structures
#include <stdio.h> // for the fopen/fwrite/fclose functions
#include <stdio.h> // for the fopen/fwrite/fclose functions
And makebmp() is just a simple function I wrote:
CODE: CPP
void makebmp(unsigned char* data, int width, int height)
{
FILE *file;
BITMAPFILEHEADER BitmapFileHeader;
BITMAPINFOHEADER BitmapInfoHeader;
file = fopen("out.bmp", "wb");
if (file == NULL)
return;
BitmapFileHeader.bfSize = sizeof(BITMAPFILEHEADER);
BitmapFileHeader.bfType = 0x4D42;
BitmapFileHeader.bfReserved1 = 0;
BitmapFileHeader.bfReserved2 = 0;
BitmapFileHeader.bfOffBits = sizeof(BITMAPFILEHEADER) + sizeof(BITMAPINFOHEADER);
BitmapInfoHeader.biSize = sizeof(BITMAPINFOHEADER);
BitmapInfoHeader.biPlanes = 1;
BitmapInfoHeader.biBitCount = 24;
BitmapInfoHeader.biCompression = BI_RGB;
BitmapInfoHeader.biSizeImage = width * height * 3;
BitmapInfoHeader.biXPelsPerMeter = 0;
BitmapInfoHeader.biYPelsPerMeter = 0;
BitmapInfoHeader.biClrUsed = 0;
BitmapInfoHeader.biClrImportant = 0;
BitmapInfoHeader.biWidth = width;
BitmapInfoHeader.biHeight = height;
fwrite(&BitmapFileHeader, sizeof(BITMAPFILEHEADER), 1, file);
fwrite(&BitmapInfoHeader, sizeof(BITMAPINFOHEADER), 1, file);
fwrite(data, BitmapInfoHeader.biSizeImage, 1, file);
fclose(file);
}
{
FILE *file;
BITMAPFILEHEADER BitmapFileHeader;
BITMAPINFOHEADER BitmapInfoHeader;
file = fopen("out.bmp", "wb");
if (file == NULL)
return;
BitmapFileHeader.bfSize = sizeof(BITMAPFILEHEADER);
BitmapFileHeader.bfType = 0x4D42;
BitmapFileHeader.bfReserved1 = 0;
BitmapFileHeader.bfReserved2 = 0;
BitmapFileHeader.bfOffBits = sizeof(BITMAPFILEHEADER) + sizeof(BITMAPINFOHEADER);
BitmapInfoHeader.biSize = sizeof(BITMAPINFOHEADER);
BitmapInfoHeader.biPlanes = 1;
BitmapInfoHeader.biBitCount = 24;
BitmapInfoHeader.biCompression = BI_RGB;
BitmapInfoHeader.biSizeImage = width * height * 3;
BitmapInfoHeader.biXPelsPerMeter = 0;
BitmapInfoHeader.biYPelsPerMeter = 0;
BitmapInfoHeader.biClrUsed = 0;
BitmapInfoHeader.biClrImportant = 0;
BitmapInfoHeader.biWidth = width;
BitmapInfoHeader.biHeight = height;
fwrite(&BitmapFileHeader, sizeof(BITMAPFILEHEADER), 1, file);
fwrite(&BitmapInfoHeader, sizeof(BITMAPINFOHEADER), 1, file);
fwrite(data, BitmapInfoHeader.biSizeImage, 1, file);
fclose(file);
}
4. On Oct 23 2005 @ 21:44 predominant wrote:
How long did it take you to execute this? I can imagine that it perhaps would have talen a few minutes to complete?5. On Oct 23 2005 @ 23:04 Erik wrote:
It doesn't even take a minute on my system (Athlon 64 3000+). But the program runs in O(n^2) so increasing the image size will increase the time it takes by twice as much.6. On Oct 24 2005 @ 17:14 guest wrote:
Might be interesting to provide download link for .bmp or .tiff to eliminate the problems with .jpg compression.7. On Oct 24 2005 @ 22:26 guest wrote:
those lines are 'n % 2 = 0', but still very nice idea!8. On Jul 21 2008 @ 04:44 guest wrote:
E-mail transmissions cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete, or contain viruses. The sender therefore does not accept liability for any errors or roulette onlineomissions in the contents of this message which arise as a result of e-mail transmission.blackjackyou are hereby notified that you must not disseminate, copy or take any action in reliance on it. If you poker videohave received this message in error please notify the sender immediately.
9. On Jan 08 2009 @ 01:48 ASD wrote:
The game has become the people's lives in a large part of the game in the park where, <a href="http://www.dofusvault.com" title="dofus kamas">dofus kamas</a> is a favorite for all of the game,<a href="http://www.dofusvault.com" title="acheter des kamas">acheter des kamas</a> on dofusvault.com we will be very much on the <a href="http://www.dofusmax.com" title="dofus kamas">dofus kamas</a>, Come on, friends, to understand All your favorite,<a href="http://www.dofusmax.com" title="acheter des kamas">acheter des kamas</a> you should feel some happiness.10. On Jan 21 2009 @ 03:16 nfl4sale wrote:
Rolex WatchesWatch Boxes
Alain Silberstein
Anonimo
A.Lange & Sohne
Audemars Piguet
Baume & Mercier
Bell & Ross
Blancpain
Breguet
Breitling
Burberry
Bvlgari
Cartier
Chanel
Chopard
Christian Dior
Chrconoswiss
Corum
Dewitt
Ebel
Fendi
Frank Muller
Gerald Genta
Glashutte
Graham
Gucci
Hermes
Hublot
Iwc
Jacob & Co
Jaeger Le Coultre
Longines
Louis Vuitton
Maurice & Lacroix
Mont Blanc
Movado
Oris
Panerai
Parmigiani Fleurier
Patek Philippe
Paul Picot
Piaget
Porsche Desing
Prada
Rado
Roger Dubuis
Rolex
Tag Heuer
Technomarine
Vach. Constantine
Versace
Zenith
Chronomatic
Montbrilliant
Superocean
11. On Feb 27 2009 @ 01:04 ASDF wrote:
In winter, I have<a href="http://www.rs2powerleveling.com" title="Runescape Money">Runescape Money</a> in the indoor<a href="http://www.rs2powerleveling.com" title=" Runescape Power leveling">Runescape Power leveling</a> comfort. My <a href="http://www.runescapedaddy.com" title="Runescape Gold">Runescape Gold</a> apartment colleagues, friends, I<a href="http://www.ffxigilgold.com" title="Final Fantasy XI gil">Final Fantasy XI gil</a> worked day and<a href="http://www.ffxigilgold.com" title="ffxi gil">ffxi gil</a> night. They are <a href="http://www.ffxigilgold.com" title="buy ffxi gil">buy ffxi gil</a> accustomed to behind <a href="http://www.dofusmax.com" title="dofus kamas">dofus kamas</a> the soul, the need <a href="http://www.dofusmax.com" title="acheter des kamas">kamas dofus</a> for money was so official. I <a href="http://www.dofusvault.com" title="dofus kamas">dofus kamas</a> would like to spend<a href="http://www.dofusvault.com" title="acheter des kamas">kamas dofus</a> the night<a href="http://www.dofusfr.com" title="dofus kamas">dofus kamas</a> in strange house, with <a href="http://www.dofusfr.com" title="kamas dofus">kamas dofus</a> creaks of the wall, I do <a href="http://www.dofusmall.com" title="dofus kamas">dofus kamas</a> not know, and sit<a href="http://www.dofusmall.com" title="kamas dofus">kamas dofus</a> on the phone that our<a href="http://www.dofus-kamas.fr" title="dofus kamas">dofus kamas</a> landlord had been <a href="http://www.dofus-kamas.fr" title="kamas dofus">kamas dofus</a> closed, and talk about<a href="http://www.kamas-dofus.com" title="buy kamas">buy kamas</a> the past, to the voice of my mother's ring, my best friend12. On Feb 27 2009 @ 01:05 QER wrote:
In winter, I have in Runescape Moneythe indoor comfort. MyRunescape Power leveling apartment colleagues, friends, IRunescape Gold worked day and night. They Final Fantasy XI gil are accustomed to behind ffxi gil the soul, the needbuy ffxi gil for money wasdofus kamas so official. I would acheter des kamas like to spenddofus kamas the night in acheter des kamas strange house, with dofus kamas creaks of the kamas dofus wall, I do not know, and dofus kamas sit on the phone kamas dofus that our landlord had been closed, and dofus kamas talk about the past, to the voice of kamas dofus my mother's ring, my best friend, I lose, and buy kamas I would like to write letters,13. On Feb 27 2009 @ 01:07 QWE wrote:
I drank a lot, I replica handbagshave toreplica watches work, and I withwholesale clothing the people, and IMen's Clothes mean ambling inDesigner clothing the city, which was Designer replica handbagsnot from me. Every replica handbagFriday my work Wholesale jewelryfor free drinks, and body jewelryI catapulted toReplica rolex watches the bar, I sipped 8) heavily replica watcheson wine, beer, drunk, I'm horrible wholesale shoesand the person nike shoesthat I do Replica Handbagsnot, but he wants Replica Handbagto be released. It Coach Handbagsis loud, lively, articulate, Gucci Handbagsspend an evening infashion sandals conversation with ladies sandalsstrangers, and sometimes leather walletlaugh, flirt! It seemed tocoach wallets me to go and look inwholesale jewelry amazement. After drinks, I louis vuitton bagwould Stumble Upon palladium14. On Feb 27 2009 @ 01:08 zxc wrote:
He was better, better, and data processing service you do not know data processing better, and I data process fell in my life, Idata processing service slowly enjoyed his victim, I havedata processing on the data process climate, the people, and data processing service one day, I went data processingto my new apartment, butdata process not with mine everquest 2 gold of course, buteq2 plat my temporary residence Ever Quest 2 permit, which I eve isk rented, I have garbage eve online isk in the fall from Saturday eve online in my pajamas, with a hellgate london palladium TV and a falseHellgate Londoncomfort, I looked gaia online gold at the gray, I sucked, and I gaia gold am very pleased wow gold prices that this romantic make wow gold quality, this iswow gold making seen as the darkvery cheap wow gold myself, because they selling wow gold ultimately with my wow gold price character. I liked it. I buy guild wars gold went inside andcheapest wow gold shivered content wow gold guides chills, I enjoyed wow europe gold the cold, and the wow hacks idea of the opportunity buy gold for wow to get warm,
15. On Mar 09 2009 @ 09:14 guest wrote:
[link][link=http://hr-soft.co.jp/]http://hr-soft.co.jp/サイト制作[/link]
[link=http://www.cutierelax.com/]http://www.cutierelax.com/秋葉原 メイド[/link]
[link=http://www.aishinn.jp/]http://www.aishinn.jp/ペット火葬 つくば[/link]
[link=http://www.aishinn.jp/]http://www.aishinn.jp/つくば ペット火葬[/link]
[link=http://www.aishinn.jp/]http://www.aishinn.jp/つくば ペット霊園[/link]
[link=http://www.aishinn.jp/]http://www.aishinn.jp/つくば ペット葬儀[/link]
[link=http://www.motailcer.com/]http://www.motailcer.com/立食パーティー用プレート[/link]
[link=http://www.deshiko.com/]http://www.deshiko.com/でしこ[/link]
[link=http://www.soulsource.jp/]http://www.soulsource.jp/soul source production[/link]
[link=http://thang-thanh.com/modules/none/]http://thang-thanh.com/modules/none/ベトナム シーフード[/link]
[link=http://www.hanaparasite.jp/]http://www.hanaparasite.jp/高収入 アルバイト[/link]
[link=http://www.hanaparasite.jp/mobile/]http://www.hanaparasite.jp/mobile/高収入 アルバイト[/link]
[link=http://www.a-onemp.co.jp/]http://www.a-onemp.co.jp/アパレル 求人[/link]
[link=http://www.a-onemp.co.jp/]http://www.a-onemp.co.jp/アパレル 派遣[/link]
[link=http://www.to-mirai.net/]http://www.to-mirai.net/人妻 出会い[/link]
[link=http://www.aaa-ch.net/]http://www.aaa-ch.net/風俗[/link]
[link=http://www.aaa-ch.net/m/]http://www.aaa-ch.net/m/風俗[/link]
[link=http://www.aaa-ch.net/m/deli/]http://www.aaa-ch.net/m/deli/デリヘル[/link]
[link=http://www.akibain.com/]http://www.akibain.com/アダルトゲーム[/link]
[link=http://www.offre.cc/]http://www.offre.cc/高収入求人[/link]
[link=http://www.offre.cc/m/]http://www.offre.cc/m/高収入求人[/link]
[link=http://www.pure-soapland.com/i/]http://www.pure-soapland.com/i/ソープランド[/link]
[link=http://www.amour-group.com/]http://www.amour-group.com/性感マッサージ 名古屋[/link]
[link=http://www.amour-group.com/]http://www.amour-group.com/M性感 名古屋[/link]
[link=http://chuh.jp/]http://chuh.jp/出会い[/link]
16. On Mar 09 2009 @ 09:15 guest wrote:
[url=http://hr-soft.co.jp/]http://hr-soft.co.jp/サイト制作
秋葉原 メイド
ペット火葬 つくば
つくば ペット火葬
つくば ペット霊園
つくば ペット葬儀
立食パーティー用プレート
でしこ
soul source production
ベトナム シーフード
高収入 アルバイト
高収入 アルバイト
アパレル 求人
アパレル 派遣
人妻 出会い
風俗
風俗
デリヘル
アダルトゲーム
高収入求人
高収入求人
ソープランド
性感マッサージ 名古屋
M性感 名古屋
出会い
17. On Mar 09 2009 @ 09:15 guest wrote:
<a><a href="http://hr-soft.co.jp/">サイト制作</a><a><a href="http://www.cutierelax.com/">秋葉原 メイド</a>
<a><a href="http://www.aishinn.jp/">ペット火葬 つくば</a>
<a><a href="http://www.aishinn.jp/">つくば ペット火葬</a>
<a><a href="http://www.aishinn.jp/">つくば ペット霊園</a>
<a><a href="http://www.aishinn.jp/">つくば ペット葬儀</a>
<a><a href="http://www.motailcer.com/">立食パーティー用プレート</a>
<a><a href="http://www.deshiko.com/">でしこ</a>
<a><a href="http://www.soulsource.jp/">soul source production</a>
<a><a href="http://thang-thanh.com/modules/none/">ベトナム シーフード</a>
<a><a href="http://www.hanaparasite.jp/">高収入 アルバイト</a>
<a><a href="http://www.hanaparasite.jp/mobile/">高収入 アルバイト</a>
<a><a href="http://www.a-onemp.co.jp/">アパレル 求人</a>
<a><a href="http://www.a-onemp.co.jp/">アパレル 派遣</a>
<a><a href="http://www.to-mirai.net/">人妻 出会い</a>
<a><a href="http://www.aaa-ch.net/">風俗</a>
<a><a href="http://www.aaa-ch.net/m/">風俗</a>
<a><a href="http://www.aaa-ch.net/m/deli/">デリヘル</a>
<a><a href="http://www.akibain.com/">アダルトゲーム</a>
<a><a href="http://www.offre.cc/">高収入求人</a>
<a><a href="http://www.offre.cc/m/">高収入求人</a>
<a><a href="http://www.pure-soapland.com/i/">ソープランド</a>
<a><a href="http://www.amour-group.com/">性感マッサージ 名古屋</a>
<a><a href="http://www.amour-group.com/">M性感 名古屋</a>
<a><a href="http://chuh.jp/">出会い</a>
18. On Apr 03 2009 @ 10:12 huong wrote:
サイト制作秋葉原 メイド
ペット火葬 つくば
つくば ペット火葬
つくば ペット霊園
つくば ペット葬儀
立食パーティー用プレート
でしこ
soul source production
ベトナム シーフード
高収入 アルバイト
高収入 アルバイト
アパレル 求人
アパレル 派遣
風俗
風俗
デリヘル
美少女ゲーム
高収入求人
高収入求人
ソープランド
出会い
デリヘル
19. On Apr 03 2009 @ 10:12 huong wrote:
<a href="http://www.cutierelax.com/">秋葉原 メイド</a><a href="http://www.aishinn.jp/">ペット火葬 つくば</a>
<a href="http://www.aishinn.jp/">つくば ペット火葬</a>
<a href="http://www.aishinn.jp/">つくば ペット霊園</a>
<a href="http://www.aishinn.jp/">つくば ペット葬儀</a>
<a href="http://www.motailcer.com/">立食パーティー用プレート</a>
<a href="http://www.deshiko.com/">でしこ</a>
<a href="http://www.soulsource.jp/">soul source production</a>
<a href="http://thang-thanh.com/modules/none/">ベトナム シーフード</a>
<a href="http://www.hanaparasite.jp/">高収入 アルバイト</a>
<a href="http://www.hanaparasite.jp/mobile/">高収入 アルバイト</a>
<a href="http://www.a-onemp.co.jp/">アパレル 求人</a>
<a href="http://www.a-onemp.co.jp/">アパレル 派遣</a>
<a href="http://www.aaa-ch.net/">風俗</a>
<a href="http://www.aaa-ch.net/m/">風俗</a>
<a href="http://www.aaa-ch.net/m/deli/">デリヘル</a>
<a href="http://www.akibain.com/">美少女ゲーム</a>
<a href="http://www.offre.cc/">高収入求人</a>
<a href="http://www.offre.cc/m/">高収入求人</a>
<a href="http://www.pure-soapland.com/i/">ソープランド</a>
<a href="http://chuh.jp/">出会い</a>
<a href="http://www.erogle.net/m/">デリヘル</a>
20. On Apr 13 2009 @ 14:44 Steve wrote:
That's looking pretty cool and can u tell me does it for some thing special or you just created it with this code as experiment whatever it looks nice and i would love to do it after my 70-290 managing and maintaining a Microsoft windows server 2003 environment exam about which i am confident to pass in first attempt as i have already pass my 70-640 windows server 2008 active directory exam with high score along with the 70-649 Upgrading MCSE on windows server 2003 to windows server 2008 exam in first attempt as i will get time from all this i must try this code as i work in C++ too to do some things like this.21. On Apr 30 2009 @ 05:40 ASD wrote:
Since I parted<a href="http://www.forvault.com/world-of-warcraft-usa-gold-2.html" title="wow gold">wow gold</a> with my friend <a href="http://www.forvault.com" title="wow gold">wow gold</a>last fall, I will <a href="http://www.forvault.com/world-of-warcraft-eur-gold-3.html" title="wow power leveling">wow power leveling</a>confine myself <a href="http://www.forvault.com" title="world of warcraft gold">world of warcraft gold</a>to my narrow <a href="http://www.world-of-warcraft-gold.ws" title="wow gold">wow gold</a>room, refusing to<a href="http://www.world-of-warcraft-gold.ws" title="wow power leveling">wow power leveling</a> express my innermost <a href="http://www.psii.org" title="wow gold">wow gold</a>feelings to <a href="http://www.wowgold.ws" title="wow gold">wow gold</a>everyone. I felt as if I <a href="http://www.wowgoldkaufen.com" title="wow gold">wow gold</a>am not all that I had, with nothing left to fight me<a href="http://www.wowtao.fr" title="wow gold">wow gold</a> tomorrow.22. On Apr 30 2009 @ 05:40 ASD wrote:
Since I parted wow gold with my friend lastwow gold fall, I will confine wow power levelingmyself to my narrow room, world of warcraft goldrefusing to express my wow goldinnermost feelings wow power levelingto everyone. I felt as wow goldif I am not all wow goldthat I had, with nothing left to fight me tomorrow. Thewow gold whole October was the darkest time of mywow gold life. Scenes from the past rose before my eyes, my ears are ringing with your statement: I will for my whole life caring for you. Remember, I squatted again and beat my forehead hard to sober me.23. On Apr 30 2009 @ 05:41 QWE wrote:
all the mistakes cheap wow goldthat our finalbuy wow gold ruin. It takes two world of warcraft goldto make a dispute. I buy wow goldscreamed, Idofus kamas wailed, and I begged forkamas dofus you to Final Fantasy XI gilstay. But ffxi gilall the tricks I lotr goldcould conjure were useless flyff penyaagainst a cold buy flyff goldheart. I tried to use Maple Story Mesosyour hands, you Maple Story mesosuddenly broke away from EverQuest 2 goldmy grasp, and eq2 platwithout the Runescape goldslightest compassion. Gazing Runescape moneylovingly number Runescape Moneyafter the Runescape Power levelingwithdrawal, I feltRunescape Gold my whole world ffxi gilcollapsed. For the first few dofus kamasdays, like a walking kamas dofuscorpse, I did what dofus kamasI do and criedkamas dofus hard-to-day, dofus kamasunder the blanket, until deep kamas dofusinto the night. It is dofus kamassaid that the frustration kamas dofusand failure are the richness of life. After all this, I gradually realized fracture was not the end of the world.24. On Apr 30 2009 @ 05:41 ZXC wrote:
I am dying hair straightenersfor love, butGHD now I have chi hair straightenersthe risk of hurt. The replica handbagssingle is notwholesale handbags the goal for replica designer handbagsa girl. It was ourreplica watch history. Last swiss replica watchesnight, you were replica rolex watchesin front ofpuma shoes my eyes. Thenike shoes sixth sensewomens clothes told me we were ed hardy clothingboth shy and replica handbagsintroverted replica watchespeople. Amazed at Designer clothingyour stature tall Designer replica handbagsand robust, I slowly Wholesale jewelryand his eyes Replica rolex watchesstared into the facereplica handbag for a few secondsReplica Handbags while you cut Replica Watchesthe head, sizing mereplica designer handbags closely. At the Coach Handbagsmoment when Gucci Handbagsour eyes met, we Rolex Watchesboth smiled.25. On May 09 2009 @ 19:11 maryzheng wrote:
TradeTang is your dream come true for all your wholesale products shopping needs. Our inexpensive selection of quality wholesale merchandise is out of this world. We sell everything you can imagine from candles to baby products and children's toys to pet supplies. If you are buying bulk merchandise for an apparel shop, then our amazing line of clothes, jewelry, flip-flops and shoes are perfect for you. We also carry incredible wholesale supplies that would be great at a home improvement or China Wholesale.26. On Jun 03 2009 @ 07:04 guest wrote:
i'm in a intro c++ course right now and wanted to play with it alittle though and i'm wondering what you had for include files.Club Penguin
27. On Jun 14 2009 @ 05:44 guest wrote:
DVD Audio RipperFree DVD Audio Ripper
DVD Audio Ripper for Mac
DVD to MP4 Converter
DVD to MP4 Converter for Mac
DVD to iPod Converter
free DVD to iPod Converter
DVD to iPod Converter for Mac
DVD Ripper
Diablo 2 CD Key
Diablo 2 CD Keys
Free DVD Ripper
DVD Ripper for Mac
NFL Jerseys
Scoccer Jerseys
Hockey Jerseys
MLB Jerseys
NHL Jerseys
28. On Jul 09 2009 @ 12:07 guest wrote:
HD DVD Burning,How Do I Burn Videos to DVD,
DVD Music Burning Software,
DVDClone Software,
CD DVD Burner,
AVI DVD Burner,
MPEG to DVD Burner,
MOV to DVD Burner,
Burn Mp4 to DVD,
Burn WMV to DVD,
DVD Burner for Mac
29. On Jul 14 2009 @ 04:00 guest wrote:
buy wow goldmy wow power leveling
buy wow gold
good wow power leveling
BUY wow gold
my wow power leveling
CHEAP rs gold
cheap wow power leveling
CHEAPEST lotro gold
MY aion gold
buy wow gold
cheap wow gold
CHEAPEST wow gold
1. On Oct 19 2005 @ 13:42 dustin wrote:
I did this sort of thing, only using the decimal places of pi and then giving a higher value a lighter color image (i.e. 6 is lighter than 2). I didn't come up with anything too great though, and I really maxed out php by only going ~5,300 decimal places.http://aerno.com/pi/