blademaster
I'm moving to Brazil
+2,075|6958
https://aleembawany.com/i/w/google_billboard.jpg

This is an example of an older billboard if posted by google if you solve the equation you would get a another clue which would be an another site composed of the numbers you came up with from the equation you made. After you get to the equation form the billboard and apply it to the new site you would get something like this.

“Congratulations. You’ve made it to level 2. Go to www.Linux.org and enter Bobsyouruncle as the login and the answer to this equation as the password.

f(1)= 7182818284
f(2)= 8182845904
f(3)= 8747135266
f(4)= 7427466391
f(5)= __________
darad0
Member
+40|6934|Centreville, VA
first post

so what happens at the end?

darad0 wrote:

first post

so what happens at the end?
Interview with google.
blademaster
I'm moving to Brazil
+2,075|6958
Well after you complete the second part and get the answer you were guaranteed a job at google, if you solved this equation. Since you already have f one to f four you would have to find f five, keep in mind dont disregard the e, e is composed of 5 million digits. Next you would apply the string of e to 100,000 decimal places. Then you would make a code in c or c++ which would look something like this if u make in c.

#include <stdio.h>


/*
   The first prime numbers, easy enough, let's just enter them
   here directly, why not
*/
int prime[] = {
    0,1,2,3,5,7,11,13,17,19,23,29,
    31,37,41,43,47,53,59,61,67,71,
    73,79,83,89,97,101,103,107,109,113,
    127,131,137,139,149,151,157,163,167,173,
    179,181,191,193,197,199,211,223,227,229,
    9999 /* just to detect when we're done */
};

/*
    Again, put here the output of the first program,
    with 2000 digits from e or so, or whatever way you'd
    like to do this....
*/
char *e= "....";

main() {
    double z;
    int zi,s,i;

    for(i=1;prime[i]<999;i++) {
       s = prime[i];

       /* Again, do this thing below any way you want it */
       zi = (e[s]-'0')   + (e[s+1]-'0') + (e[s+2]-'0') + (e[s+3]-'0')+
            (e[s+4]-'0') + (e[s+5]-'0') + (e[s+6]-'0') + (e[s+7]-'0')+
            (e[s+8]-'0') + (e[s+9]-'0');

        if(zi==49) {
            /* And again, you can get fancy here to get the output
               of the 10 digit sequences, but this will do */
            printf("Value %d (%d) = %c%c%c%c%c%c%c%c%c%c\n",
                i,s,
                e[s],  e[s+1],e[s+2],e[s+3],e[s+4],
                e[s+5],e[s+6],e[s+7],e[s+8],e[s+9]);

        }
    }
}

The only pattern that matters is that all 4 numbers are a string of 10-digit numbers adding up to 49 which is easy to get at. After that you would get a password in order to log in to the linux.org using bobsyouruncle as a user name and a answer that you came up with as your password to get in.
eusgen
Nugget
+402|7105|Jupiter
What the Fuhk?
LawJik
The Skeptical Realist
+48|6844|Amherst, MA
http://www.npr.org/templates/story/stor … Id=3916173

That's awesome, who else would do that?

Board footer

Privacy Policy - © 2025 Jeff Minard