Search found 16 matches

by whattheh@ck
Mon Feb 21, 2011 4:46 am
Forum: Challenges Solved
Topic: I Will Be Execute
Replies: 4
Views: 1664

I made it work in web page format with...

Code: Select all

javascript:alert(MAX_CYCLES  = 1000000);
got the answer pretty quickly. You could also just look at the pattern and get it with (9**4+16)
by whattheh@ck
Mon Feb 21, 2011 3:16 am
Forum: Challenges Solved
Topic: Broken Keys
Replies: 15
Views: 6232

I sort of cheated :wink: 0<1</9*0^52*/3>3<25**-3<+g1<p!000000000000000000000000000000000<p! all of those 0's seem to be a good enough buffer to pass all the tests... I just fixed it to be more exact: 1<0<1</9*0^52*/3>3<25**-3<+0^52*/3>3<25**-3<+3/gp!00<p! it works due to an interesting fact that the...
by whattheh@ck
Mon Feb 21, 2011 12:22 am
Forum: Challenges Solved
Topic: Broken Key
Replies: 12
Views: 6669

it turns out that the HVM doesn't store decimal numbers so i just used division to see which was bigger...

Code: Select all

0<1</4?0<p!1<p!
by whattheh@ck
Sat Feb 19, 2011 6:07 pm
Forum: Challenges Solved
Topic: King Mouse
Replies: 23
Views: 3754

I think that any solution accepted by the server is a valid solution. Even if that means playing the numbers game and having it get the correct number only most of the time :wink: The idea with these challenges is to force hackers to come up with novel solutions to problems. We should not frown on t...
by whattheh@ck
Wed Feb 16, 2011 11:58 pm
Forum: Challenges
Topic: harmonic
Replies: 44
Views: 68196

http://www.virtualpiano.net/

this site helped me out a ton... Just took a bit of practice listening for individual notes
by whattheh@ck
Wed Feb 16, 2011 1:45 am
Forum: Challenges Solved
Topic: Type Faster
Replies: 14
Views: 4370

a fun bit of overkill...

Code: Select all

javascript: var x=document.getElementsByTagName('b')[0].innerHTML;frm.answer.value=x;frm.submit();void(0);
:wink:
by whattheh@ck
Sat Feb 12, 2011 6:12 pm
Forum: Challenges Solved
Topic: Biggest Fib
Replies: 10
Views: 4257

I just used a simple perl script for bigger fib and biggest fib. It got both solutions almost instantaneously: #! /usr/bin/perl -w $root5 = sqrt(5); $phi = (1+$root5)/2; $fib = 150000000000000; $answer = ((2*$fib)*log($phi))-($fib*log($phi))-(log($root5)); printf "%.1f\n",$answer; this is ...
by whattheh@ck
Thu Sep 02, 2010 6:01 pm
Forum: Challenges Solved
Topic: Outer Space
Replies: 10
Views: 1600

I didn't have to do anything to enhace it. I literally got this one the moment i saw it... At first i thought it couldn't be all that simple but i tried it and it worked :)
by whattheh@ck
Fri Apr 16, 2010 9:21 pm
Forum: Challenges Solved
Topic: One Minute Man
Replies: 39
Views: 18855

I'm surprised nobody else used GreaseMonkey... it's great for automation and allows you direct accesses to information the way your browser would show it. Here's my code: function timedRefresh(timeoutPeriod) { setTimeout("location.reload(true);",timeoutPeriod); } var oracle=document.getEle...
by whattheh@ck
Tue Nov 17, 2009 6:29 pm
Forum: The Hacker's Server
Topic: New here and need assist PLZ!
Replies: 5
Views: 8310

The fastest way to learn a programming language is by using it for multiple tasks. I would suggest working on the challenges on this site. They are designed to help you progressively learn how to program/hack. Most major programming languages today are well documented on the web. Read the tutorials ...
by whattheh@ck
Sun Nov 08, 2009 1:24 am
Forum: Challenges
Topic: Big Fib
Replies: 36
Views: 52663

I was able to do it in about 10 minutes using Python... It's very good at handling large integers. The answer is 16 digits long so the actual number has to be over 320,000 digits long.
by whattheh@ck
Sun Oct 25, 2009 10:57 pm
Forum: Challenges Solved
Topic: Growing Bacteria
Replies: 24
Views: 9929

Did it in Python using 8 variables and a "while" statement... not too hard.
by whattheh@ck
Sun Oct 25, 2009 9:19 pm
Forum: The Hacker's Server
Topic: How to make a virus
Replies: 16
Views: 16428

the chinese basically says that Cain sucks and needs to actually learn how to program
by whattheh@ck
Sun Oct 25, 2009 3:28 am
Forum: Challenges Solved
Topic: The X Factor
Replies: 19
Views: 7396

I used python...
it handles large numbers well and i simply wrote a program to increment divisors that matched some simple tests for integer factors and prime numbers. it came up with only six possible values.... just tried them all from there and found the answer :)
by whattheh@ck
Sun Jul 20, 2008 3:44 pm
Forum: Challenges
Topic: about the little php
Replies: 8
Views: 13221

in PHP the "^" acts as a boolean XOR gate. you should be able to do this by hand.