Search found 41 matches

by nighthalk
Wed Mar 30, 2016 1:06 am
Forum: Challenges
Topic: A Hundred 0s
Replies: 33
Views: 63983

holy crap, just find the right archive/list for what you seek (i really didnt have to dig that hard), and everything you read just works.

as for the "official" source, almost 2/3 of them are missing and in one case just incorrect.

and fragman i see what you did there ;)
by nighthalk
Mon Mar 28, 2016 2:14 am
Forum: Challenges
Topic: Train Wreck
Replies: 7
Views: 14289

talk about embarrassing. i was stumped on this for years. until i realized my cipher went on the wrong track. test your algorithms!
by nighthalk
Sun Dec 29, 2013 12:40 am
Forum: Challenges Solved
Topic: Soviet Intercept
Replies: 10
Views: 868

i probably went a tad overboard, i wrote my own 'font maker' type program, you give it some text, start drawing the black pixels out, an option to scale it (in case i was slightly off, or in this case, unless the source image appears to be resized from the original font text size) then you can grab ...
by nighthalk
Sun Jan 29, 2012 12:47 pm
Forum: Challenges Solved
Topic: Don't fear the Maths
Replies: 9
Views: 690

heh i was stumped for a while until i remembered the original mentioned euler as a hint. fixed up the equation, and started plotting a black/white image for whose that satisfy it. the eps ^ (huge thing) is also hard to see from images generated by the equation... had to parse it manually to make sur...
by nighthalk
Thu Jan 13, 2011 1:33 am
Forum: The Hacker's Server
Topic: a few questions for me planning to upgrade my machine
Replies: 0
Views: 10675

a few questions for me planning to upgrade my machine

HI guys im working on a poor core 2 duo that really needs to be replaced and given some of the challenges here i got something new to aim for then "ready for games for next few years" basically... im debating if i splurge for one of those 1000$ intel 6 core 12 thread processors, or just st...
by nighthalk
Mon Jan 10, 2011 1:25 am
Forum: Challenges
Topic: Available for help with challenges
Replies: 29
Views: 31397

md5 is less likly to have hash colisions but requires more memory (16 bytes vs 4) and since i use c# for most of my coding it has a built in library to just hash whatever byte[] array you give it. on the plus side crc32 can be compaired as a simple int and even sorted nativly, requires slightly more...
by nighthalk
Wed Dec 15, 2010 10:52 pm
Forum: Challenges
Topic: Didactic Scrambled Egg Cipher
Replies: 22
Views: 28774

holy crap, i put in a solid month of man hours into the warmup solution (really only reason i solved it today was a very lucky guess) and saw this one.... impossible.... every letter is directly effected by 5-6 keys (26 - 27 bits, this doesnt count the other keys causing which key is picked)...might...
by nighthalk
Sun Dec 05, 2010 12:05 am
Forum: Challenges
Topic: harmonic
Replies: 44
Views: 63493

i was actually amazed at how many of the notes my sister could pick out by ear, turned out to be only 1 short(but a lot of the "answers" were maybys), theres no anagraming needed, no sharp/flat notes, the order low to high is the answer....but keep in mind, there is a (depending on the pro...
by nighthalk
Mon Nov 15, 2010 3:06 am
Forum: Challenges
Topic: Latin Lesson
Replies: 1
Views: 7111

you need the full...answer... not the first copy you see...
by nighthalk
Sun Nov 14, 2010 9:33 pm
Forum: Challenges
Topic: Quine
Replies: 33
Views: 34062

holy @#$%# this is a tough one, managed to get mine down to 865 instructions, (curse that cycle limit) and i seriously have no idea how those insane people can get it to 97, too many symbols need to be stored which takes too many instructions to save which propagates through the functions needed to ...
by nighthalk
Thu Nov 11, 2010 9:30 pm
Forum: Challenges Solved
Topic: RedEye
Replies: 12
Views: 1138

wow, i was copying the text so i can start processing it for patterns or invalid words and i eventually come across that... landmine.. i was like #$%@ wasted 15 minutes.... heh.
by nighthalk
Thu Nov 11, 2010 7:32 pm
Forum: Challenges Solved
Topic: Biggest Fib
Replies: 10
Views: 922

i wrote a "bigfloat" library using a few bigints so i could take an accurate ln to (in my case) 40 places but it was SLOOOWWW hehe. i didnt optimize it at all so it was inherently transfering back and forth to strings and working in base 10 half the time. if i knew mathmatica had one built...
by nighthalk
Thu Nov 11, 2010 2:27 am
Forum: Challenges
Topic: V.I.L.E.
Replies: 15
Views: 36317

wow talk about annoyingly simple, it had me stumped for like a year. and ya everyone treat the 503 as 593 but you really dont "need" it
by nighthalk
Mon Nov 08, 2010 6:56 pm
Forum: Challenges Solved
Topic: Smell as Sweet
Replies: 15
Views: 1275

at first i tried just dumping all the pngs (since the html was obviously a single packet so you knew where to start and stop) but the background image was corrupt. assuming it was important (silly me) i then started writing my throw away program i wrote my own packet parser from scratch using wiresh...
by nighthalk
Mon May 24, 2010 6:08 pm
Forum: Runaway Robot Puzzle
Topic: Teach me how to hack this puzzle
Replies: 25
Views: 75880

heres a C# implimentation its for crossflip but its easy to modify for any of them, i obviously edited out stuff to make sure you get practice. i only provided necisary parts for the web interaction. technically i also changed the username password to be seperate strings im not entirly sure if it le...