Author Topic: Happy Birthday, the_bigg!  (Read 3811 times)

Offline Kulyok

  • Global Moderator
  • Planewalker
  • *****
  • Posts: 6253
  • Gender: Female
  • The perfect moment is now.
Happy Birthday, the_bigg!
« on: June 12, 2008, 05:19:38 AM »
Do you know that you were born on the Day of Russia? Or, rather, first you were born, then Soviet Union, ahem, "togo", and they decided to make your birthday the Day of Russia(formerly Independence Day). Now about ~150 million people are celebrating your birthday! Cool, isn't it?

Offline the bigg

  • The Avatar of Fighter / Thieves
  • Planewalker
  • *****
  • Posts: 3804
  • Gender: Male
Re: Happy Birthday, the_bigg!
« Reply #1 on: June 12, 2008, 05:27:30 AM »
Oh. I'm not very special either: one of my friends and my high school Italian teacher were both born on the 14th of July, which is more widely reckognized as an important date in the world (curse you pompous French people!).

Trivia: if you take 25 random people, it's more likely to have two that share a birthday than not to find any (not counting 29 February and actual twins). If you take 100, it's more likely to have a triple Birthday than it isn't. I should mention it on the SHS Maths topic too.

Thanks for your good wishes BTW.
« Last Edit: June 12, 2008, 05:29:16 AM by the bigg »
Author or Co-Author: WeiDU (http://j.mp/bLtjOn) - Widescreen (http://j.mp/aKAiqG) - Generalized Biffing (http://j.mp/aVgw3U) - Refinements (http://j.mp/bLHoCc) - TB#Tweaks (http://j.mp/ba02Eg) - IWD2Tweaks (http://j.mp/98OFYY) - TB#Characters (http://j.mp/ak8J55) - Traify Tool (http://j.mp/g1Ry9A) - Some mods that I won't mention in public
Maintainer: Semi-Multi Clerics (http://j.mp/9UeIwB) - Nalia Mod (http://j.mp/dng9l0) - Nvidia Fix (http://j.mp/aRWjjg)
Code dumps: Detect custom secondary types (http://j.mp/hVzzXG) - Stutter Investigator (http://j.mp/gdtBn8)

If possible, send diffs, translations and other contributions using Git (http://j.mp/aBZFrq).

Offline Kulyok

  • Global Moderator
  • Planewalker
  • *****
  • Posts: 6253
  • Gender: Female
  • The perfect moment is now.
Re: Happy Birthday, the_bigg!
« Reply #2 on: June 12, 2008, 05:32:26 AM »
Quote
Oh. I'm not very special either: one of my friends and my high school Italian teacher were both born on the 14th of July, which is more widely reckognized as an important date in the world (curse you pompous French people!).

My classmate was born on this day, too, and I *wish* I didn't remember that! It's awfully hard to forget these little things now.

(And, yes, I wish I went to study probability theory instead of artificial intelligence. I mean, what _is_ there to learn about AI except that it can never exist? And probabilities are here, ripe and juicy and fun to use in everyday posts.)

Enjoy yourself. :)

Offline the bigg

  • The Avatar of Fighter / Thieves
  • Planewalker
  • *****
  • Posts: 3804
  • Gender: Male
Re: Happy Birthday, the_bigg!
« Reply #3 on: June 12, 2008, 06:37:09 AM »
(And, yes, I wish I went to study probability theory instead of artificial intelligence.
Probability? I whipped up a program to study this statistically  :)
actually, 20 people = 2 birthdays is known as the Birthday paradox in Probability (and in crypto analisis), but it took me less time to write said program than it'd have taken to correctly study the probabilities and do the calculations.

Code: [Select]
let rec ask str =
try
print_endline str;
int_of_string (read_line ());
with _ -> ask str
;;

let main () =
let tries = ask "How many times shall I repeat the calculation?" in
let people = ask "How many people?" in
let max = 30 in
let exists = Array.make max 0 in
let counts = Array.make max 0 in
Random.self_init ();
for i = 0 to tries - 1 do
let days = Array.make 365 0 in
let exists_now = Array.make max false in
  for j = 0 to people - 1 do
  let x = Random.int 365 in
days.(x) <- days.(x) + 1;
  done;
  for j = 0 to 364 do
counts.(days.(j)) <- counts.(days.(j)) + 1;
if not exists_now.(days.(j)) then begin
exists_now.(days.(j)) <- true;
        exists.(days.(j)) <- exists.(days.(j)) + 1;
end
  done
done;
for i = 0 to max - 1 do
if exists.(i) > 0 then begin
Printf.printf "Days with exactly %d birthdays: average %f per run, happened in %f%% of the runs\n%!"
i ((float_of_int counts.(i)) /. (float_of_int tries))  ((float_of_int exists.(i)) /. (float_of_int tries) *. 100.);
end
done
;;

try
main ()
with e ->
print_endline (Printexc.to_string e)
Author or Co-Author: WeiDU (http://j.mp/bLtjOn) - Widescreen (http://j.mp/aKAiqG) - Generalized Biffing (http://j.mp/aVgw3U) - Refinements (http://j.mp/bLHoCc) - TB#Tweaks (http://j.mp/ba02Eg) - IWD2Tweaks (http://j.mp/98OFYY) - TB#Characters (http://j.mp/ak8J55) - Traify Tool (http://j.mp/g1Ry9A) - Some mods that I won't mention in public
Maintainer: Semi-Multi Clerics (http://j.mp/9UeIwB) - Nalia Mod (http://j.mp/dng9l0) - Nvidia Fix (http://j.mp/aRWjjg)
Code dumps: Detect custom secondary types (http://j.mp/hVzzXG) - Stutter Investigator (http://j.mp/gdtBn8)

If possible, send diffs, translations and other contributions using Git (http://j.mp/aBZFrq).

Offline cmorgan

  • Planewalker
  • *****
  • Posts: 1424
  • Gender: Male
  • Searcher of Bugs
Re: Happy Birthday, the_bigg!
« Reply #4 on: June 12, 2008, 10:55:39 AM »
Happy birthday, the bigg - have a great day!

Offline Meira

  • Planewalker
  • *****
  • Posts: 188
  • Gender: Female
  • I'm the snow on your lips
    • Amber's Home
Re: Happy Birthday, the_bigg!
« Reply #5 on: June 12, 2008, 11:01:08 AM »
Happy birthday!  ;D

Offline Azazello

  • The Anti-Spammer
  • Planewalker
  • *****
  • Posts: 405
  • Gender: Male
    • Azazello’s Music Profile at Last.fm
Re: Happy Birthday, the_bigg!
« Reply #6 on: June 12, 2008, 11:40:17 AM »
Whoa, the nerdiest birthday talk -ever- on the Internet (not just the Web)!

Happy Birthday!

Dude, may that CompSci prof open her eyes, drop her loser-boyfriend, and go for you!  ;D
Community Contributions
Level 1 NPCs * gMinion: expanded TP2 for MegaInstalls * PSM (PSQM): expanded scripts for Melanthium * non-detectable Cloak of Non-Detection ?? * Weimer's-Tactics: revised TP2 for MegaInstalls
========================================
"Deception has many faces. Truth...has only one."

Offline the bigg

  • The Avatar of Fighter / Thieves
  • Planewalker
  • *****
  • Posts: 3804
  • Gender: Male
Re: Happy Birthday, the_bigg!
« Reply #7 on: June 12, 2008, 11:54:20 AM »
Happy birthday, the bigg - have a great day!
Dude, it's bad luck to say HB more than once per BD  :/

Dude, may that CompSci prof open her eyes, drop her loser-boyfriend, and go for you!  ;D
Where did I post that pic anyway?
Author or Co-Author: WeiDU (http://j.mp/bLtjOn) - Widescreen (http://j.mp/aKAiqG) - Generalized Biffing (http://j.mp/aVgw3U) - Refinements (http://j.mp/bLHoCc) - TB#Tweaks (http://j.mp/ba02Eg) - IWD2Tweaks (http://j.mp/98OFYY) - TB#Characters (http://j.mp/ak8J55) - Traify Tool (http://j.mp/g1Ry9A) - Some mods that I won't mention in public
Maintainer: Semi-Multi Clerics (http://j.mp/9UeIwB) - Nalia Mod (http://j.mp/dng9l0) - Nvidia Fix (http://j.mp/aRWjjg)
Code dumps: Detect custom secondary types (http://j.mp/hVzzXG) - Stutter Investigator (http://j.mp/gdtBn8)

If possible, send diffs, translations and other contributions using Git (http://j.mp/aBZFrq).

Offline Qwinn

  • Planewalker
  • *****
  • Posts: 111
Re: Happy Birthday, the_bigg!
« Reply #8 on: June 12, 2008, 01:42:14 PM »
Happy birthday :)

Qwinn

Offline Eleima

  • Planewalker
  • *****
  • Posts: 162
  • Gender: Female
  • Be warned! Stickler for spelling & continuity =*)
    • My Fanfiction.net
Re: Happy Birthday, the_bigg!
« Reply #9 on: June 12, 2008, 02:07:34 PM »
Happy birthday, Bigg!!!!   :D
Check out my DeviantArt account<br />as well as my scribbling on FanFiction.net[/font]

Offline Azazello

  • The Anti-Spammer
  • Planewalker
  • *****
  • Posts: 405
  • Gender: Male
    • Azazello’s Music Profile at Last.fm
Re: Happy Birthday, the_bigg!
« Reply #10 on: June 12, 2008, 04:15:28 PM »
Dude, may that CompSci prof open her eyes, drop her loser-boyfriend, and go for you!  ;D
Where did I post that pic anyway?
http://www.shsforums.net/index.php?showtopic=30560&st=35

It points to a mp3 now.  :P

Got a new link? She was yummy.
Community Contributions
Level 1 NPCs * gMinion: expanded TP2 for MegaInstalls * PSM (PSQM): expanded scripts for Melanthium * non-detectable Cloak of Non-Detection ?? * Weimer's-Tactics: revised TP2 for MegaInstalls
========================================
"Deception has many faces. Truth...has only one."

Offline the bigg

  • The Avatar of Fighter / Thieves
  • Planewalker
  • *****
  • Posts: 3804
  • Gender: Male
Re: Happy Birthday, the_bigg!
« Reply #11 on: June 12, 2008, 06:37:58 PM »
ht tp :/ /www.i sg roup.un im o .it / s imon a.asp

strip the spaces. I'd rather not leave entries in the referrals, so I'll leave you the work  ;)
Author or Co-Author: WeiDU (http://j.mp/bLtjOn) - Widescreen (http://j.mp/aKAiqG) - Generalized Biffing (http://j.mp/aVgw3U) - Refinements (http://j.mp/bLHoCc) - TB#Tweaks (http://j.mp/ba02Eg) - IWD2Tweaks (http://j.mp/98OFYY) - TB#Characters (http://j.mp/ak8J55) - Traify Tool (http://j.mp/g1Ry9A) - Some mods that I won't mention in public
Maintainer: Semi-Multi Clerics (http://j.mp/9UeIwB) - Nalia Mod (http://j.mp/dng9l0) - Nvidia Fix (http://j.mp/aRWjjg)
Code dumps: Detect custom secondary types (http://j.mp/hVzzXG) - Stutter Investigator (http://j.mp/gdtBn8)

If possible, send diffs, translations and other contributions using Git (http://j.mp/aBZFrq).

Offline KIrving

  • Planewalker
  • *****
  • Posts: 159
  • Gender: Female
Re: Happy Birthday, the_bigg!
« Reply #12 on: June 13, 2008, 02:53:23 AM »
Happy Birthday, the bigg!!  May there be beer because beer is good.   :)
Look at the stars.
Listen to the rain.
Walk backwards.
Talk to a rock.

Offline jastey

  • Global Moderator
  • Planewalker
  • *****
  • Posts: 1524
  • Gender: Female
Re: Happy Birthday, the_bigg!
« Reply #13 on: June 16, 2008, 02:09:58 PM »
Happy belated birthday!

Offline the bigg

  • The Avatar of Fighter / Thieves
  • Planewalker
  • *****
  • Posts: 3804
  • Gender: Male
Author or Co-Author: WeiDU (http://j.mp/bLtjOn) - Widescreen (http://j.mp/aKAiqG) - Generalized Biffing (http://j.mp/aVgw3U) - Refinements (http://j.mp/bLHoCc) - TB#Tweaks (http://j.mp/ba02Eg) - IWD2Tweaks (http://j.mp/98OFYY) - TB#Characters (http://j.mp/ak8J55) - Traify Tool (http://j.mp/g1Ry9A) - Some mods that I won't mention in public
Maintainer: Semi-Multi Clerics (http://j.mp/9UeIwB) - Nalia Mod (http://j.mp/dng9l0) - Nvidia Fix (http://j.mp/aRWjjg)
Code dumps: Detect custom secondary types (http://j.mp/hVzzXG) - Stutter Investigator (http://j.mp/gdtBn8)

If possible, send diffs, translations and other contributions using Git (http://j.mp/aBZFrq).