Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 64787
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T18:50:40+00:00 2026-05-10T18:50:40+00:00

My friend was given this free google website optimizer tshirt and came to me

  • 0

My friend was given this free google website optimizer tshirt and came to me to try and figure out what the front logo meant.

t-shirt

So, I have a couple of guesses as to what it means, but I was just wondering if there is something more.

My first guess is that each block represents a page layout, and the logo ‘You should test that’ just means that you should use google website optimizer to test which is the best layout. I hope that this isn’t the answer, it just seems to simple and unsatisfying.

Well, I’ve spent the past hour trying to figure out if there is any deeper meaning, but to no avail. So, I’m here hoping that someone might be able to help.

I did though write a program to see if the blocks represent something in binary. I’ll post the code below. My code tests every permutation of reading a block as 4 bits, and then tries to interpret these bits as letters, hex, and ip addresses.

I hope someone knows better.

#This code interprets the google t-shirt as a binary code, each box 4 bits. # I try every permutation of counting the bits and then try to interpret these # interpretations as letters, or hex numbers, or ip addresses.  # I need more interpretations, maybe one will find a pattern  import string  #these represent the boxes binary codes from left to right top to bottom boxes = ['1110', '1000', '1111', '0110', '0011', '1011', '0001', '1001']  #changing the ordering permutations = ['1234', '1243', '1324', '1342', '1423', '1432',                  '2134', '2143', '2314', '2341', '2413', '2431',                 '3124', '3142', '3214', '3241', '3412', '3421',                  '4123', '4132', '4213', '4231','4312', '4321']  #alphabet hashing where 0 = a alphabet1 = {'0000':'a', '0001':'b', '0010':'c', '0011':'d',              '0100':'e', '0101':'f', '0110':'g', '0111':'h',              '1000':'i', '1001':'j', '1010':'k', '1011':'l',              '1100':'m', '1101':'n', '1110':'o', '1111':'p'}  #alphabet hasing where 1 = a alphabet2 = {'0000':'?', '0001':'a', '0010':'b', '0011':'c',              '0100':'d', '0101':'e', '0110':'f', '0111':'g',              '1000':'h', '1001':'i', '1010':'j', '1011':'k',              '1100':'l', '1101':'m', '1110':'n', '1111':'o'}  hex       = {'0000':'0', '0001':'1', '0010':'2', '0011':'3',              '0100':'4', '0101':'5', '0110':'6', '0111':'7',              '1000':'8', '1001':'9', '1010':'a', '1011':'b',              '1100':'c', '1101':'d', '1110':'e', '1111':'f'}   #code to convert from a string of ones and zeros(binary) to decimal number def bin_to_dec(bin_string):     l = len(bin_string)     answer = 0     for index in range(l):         answer += int(bin_string[l - index - 1]) * (2**index)     return answer          #code to try and ping ip addresses def ping(ipaddress):     #ping the network addresses      import subprocess      # execute the code and pipe the result to a string, wait 5 seconds     test = 'ping -t 5 ' + ipaddress     process = subprocess.Popen(test, shell=True, stdout=subprocess.PIPE)      # give it time to respond     process.wait()      # read the result to a string     result_str = process.stdout.read()      #For now, need to manually check if the ping worked, fix later     print result_str     #now iterate over the permuation and then the boxes to produce the codes for permute in permutations:     box_codes = []     for box in boxes:         temp_code = ''         for index in permute:             temp_code += box[int(index) - 1]         box_codes.append(temp_code)      #now manipulate the codes using leter translation, network, whatever      #binary     print string.join(box_codes, '')      #alphabet1     print string.join( map(lambda x: alphabet1[x], box_codes), '')      #alphabet2     print string.join( map(lambda x: alphabet2[x], box_codes), '')      #hex     print string.join( map(lambda x: hex[x], box_codes), '')      #ipaddress, call ping and see who is reachable     ipcodes = zip(box_codes[0:8:2], box_codes[1:8:2])     ip = ''     for code in ipcodes:         bin = bin_to_dec(code[0] + code[1])         ip += repr(bin) + '.'     print ip[:-1]     #ping(ip[:-1])     print     print 

t-shirt.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T18:50:41+00:00Added an answer on May 10, 2026 at 6:50 pm

    I emailed the Website Optimizer Team, and they said ‘There’s no secret code, unless you find one. :)’

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 70k
  • Answers 70k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer To quote Reg Braithwaite: The difference between self-interpreters and meta-circular… May 11, 2026 at 12:49 pm
  • added an answer Side note regarding random numbers: In fact, no, your specific… May 11, 2026 at 12:49 pm
  • added an answer There is a meta tag you can use that will… May 11, 2026 at 12:49 pm

Related Questions

My friend accidentally bought a laptop with Windows Vista Home Basic Edition. He figured
My friend produced a small proof-of-concept assembler that worked on x86. I decided to
My friend and I are having a disagreement over an application development issue. It's
My friend is working on a project in which he needs to get some
Is it absolutely necessary to use "arrows" to show association between an actor and
I am writing a small matrix library in C++ for matrix operations. However, my
The C++ friend keyword allows a class A to designate class B as its
I helped a friend out by doing a little web work for him. Part

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.