Check out our blog!
Forumwarz is the first "Massively Single-Player" online RPG completely built around Internet culture.

You are currently looking at Flamebate, our community forums. Players can discuss the game here, strategize, and role play as their characters.

You need to be logged in to post and to see the uncensored versions of these forums.

Log in or Learn about Forumwarz

Civil Discussion
Switch to Role-Playing Civil Discussion
Fun haxlrose's profile info - vague spoiler

pOOpey

Avatar: pOOpey's Avatar
4

Level 10 Camwhore

“Leave it to Cleavage”

MrThePlague, U R my Log in to see images!

Fer’sriously!

*slowly opens her legs*

_____________________________________________________________________________________

Log in to see images! I’m cooler that you, so I get a sig even here!

pOOpey

Avatar: pOOpey's Avatar
4

Level 10 Camwhore

“Leave it to Cleavage”

Skyreal Posted:

Easiest thing to “try” is to:

[an hour of work deleted!!]

EDIT: I deserve a slap. Using clock worker’s link is probably easier.

*****slap*

...that was… surprisingly fun!

OO

_____________________________________________________________________________________

Log in to see images! I’m cooler that you, so I get a sig even here!

Thelostcup

Avatar: Cockroach
8

Level 18 Troll

“Li'l Hellraiser”

Nice job.

I didn’t think really think much of it at first, hats off to ya.

d000dl3s

Avatar: Red Green Flashing

[****LANS]

Level 10 Troll

I LIEK CAKE.

damnit why didnt i find this thread last night. i just worked it out myself using the switcheroo method and a online thingy to thingy .. thingy.

Miggle

Avatar: Sneakers
2

Level 17 Emo Kid

God won't kill me, he likes to see me suffer.

I DON’T UNDERSTAND

Log in to see images!

markchd

Avatar: 12369 2010-01-24 16:26:11 -0500
18

[Brainfreeze]

Level 69 Camwhore

Craves Power like it's Crystal Pepsi

d000dl3s Posted:

online thingy to thingy .. thingy.

Awesome. Instantly clear to anyone who’s done it, but completely incomprehensible to the uninitiated. Ha!

Sancdar

Avatar: Sancdar's Avatar
35

[Team Shortbus]

Level 50 Camwhore

LCC club

Damn, the special E-Peen™’s icon doesn’t decode to anything meaningful.

connor

Avatar: connor's Avatar
4

Level 10 Camwhore

“Leave it to Cleavage”

Sancdar Posted:

Damn, the special E-Peen™’s icon doesn’t decode to anything meaningful.

surely you have something better to be doing.

The Serised

Avatar: Woman's Abs

Level 10 Camwhore

“Leave it to Cleavage”

Zaratustra Posted:

Even easier:

1) Exchange all the 0s and 1s with notepad or something

2) Remove the last five 1s they’re there for spacing

3) http://www.roubaixinteractive.com/PlayGround/Binary_Conversion/Binary_to_Text.asp

4) Profit!

How do you consider that profit??

Eglath

Avatar: Pink Dress
10

[The Flamers of Loa-
thing
]

Level 35 Camwhore

Gnefarious Gnymphomaniac

The thing that is bugging me is why the source data has an incomplete byte at the end… I’m guessing just so that the binary would make a solid block of square text when posted in the profile, but every other sentence in the code ends in punctuation and the last line does not.

I know I am just being picky, but it would have made more sense to me if the sequence had ended with

1101000111111011 instead of the five trailing zeros.

When bit-flipped and ascii-fied, this would have ended the final line with a period and then inserted a [EOT] marker, which is commonly used in unix-like systems to signal an end-of-file. (cite)

Truthfully, when I first looked at the block of binary, my first instinct was to ascii’fy the text, and then when that was unintelligible, try a rot13 to decrypt it. When that didn’t work I set it aside to try and crack it later, but guess I waited too long. Log in to see images!

Anyhow, great job MrThePlague, congratulations! *applause*

black_jesus

Avatar: Sneakers

[Klan Tasty]

Level 10 Emo Kid

“Gloomy Gus”

to demonstrate how awesome ruby is, here is a c version

#include <stdio>
#include <memory>
char inp[] = {
"100011001001101010010001100010111"
"000110110010110100100111001001110"
"010110100100001001000111011000100"
 -- snip -- 
"100001000101010001011110111111000"
"101110010111100101101000110000000\n"
};

int main(void)
{
  char out[1024];
  char * pos = out;
  char * inpos = inp;
  int bits = 0;

  char currentc = 0; 
  
  memset(out, 0, sizeof(char) * 1024);
  
  while(*inpos)
  { 
    if(*inpos == '0' || *inpos == '1')
    {
      if(!(bits++ % 8)) { *pos++ = 0xFF^currentc; currentc = 0; }      
      currentc = (currentc << 1) + (*inpos=='1'?1:0);
    }
    inpos++;
  }
  
  printf("%s\n", out);  
}

arbitrayer

Avatar: arbitrayer's Avatar

Level 18 Troll

“Li'l Hellraiser”

whats this fancypants “binary” stuff u young’uns keep talking aboot

Wishlist

Avatar: Schoolgirl Uniform
5

Level 10 Camwhore

“Leave it to Cleavage”

for those too ****ing lazy to do it themselves even WITH the walkthrough

sentrillion’s search results are so perfect. what kind of algorithm is at work here? i’ve tried to hack into their system several times, but it’s locked up tighter than fort knox.

who have they hired to dream up such a magnificent piece of code? i thought i was on a first name basis with all the world’s hackers.

i should ask around about this

Balloon

Avatar: Balloon's Avatar
28

[Grey Goose Mafiosi]

Level 35 Camwhore

Inflate my ovaries until they pop out of me and float away

I think there was a reason people didn’t post it… to stop people from being too damn lazy. It’s really not that hard to run in it through a program.

black_jesus

Avatar: Sneakers

[Klan Tasty]

Level 10 Emo Kid

“Gloomy Gus”

DonSlice Posted:

for those too ****ing lazy to do it themselves even WITH the walkthrough

or too lazy to read page two of this very thread…

Randomisation

Avatar: Emo Girl
2

Level 12 Emo Kid

“Gloomy Gus”

Are there people still complaining about not being able to run it through a program? It in normal language got posted on ****ing page 2 and up above.

Randomisation edited this message on 04/03/2008 6:05AM

markchild

Avatar: Piggy Bank
9

[Brainfreeze]

Level 51 Permanoob

“Noob-ian Prince”

Evil Trout flat out said he designed it by swapping 1’s for 0’s. You can solve it in 20 minutes with pencil, paper, and a binary to text converter. It took me almost one minute with wordpad.

FAIL

Avatar: 36735 2015-06-13 23:04:37 -0400
6

[Full of SbumSS]

Level 25 Re-Re

Head of the Ministry of Man bumes

markchild = 0% FAIL

FAIL edited this message on 04/04/2008 4:27AM

Dynmitrave

Avatar: 77264 Tue Nov 04 15:31:25 -0500 2008

[7 VIBRATING DOLDOES]

Level 35 Hacker

“43 4f 44 45 20 4d 41 53 54 45 52”

Yeah, FFS, you can write something in VB.NET to do it in like 10 minutes.

Inertia

Avatar: 60995 Fri Apr 03 12:59:05 -0400 2009
34

[Shii is gay]

Level 35 Troll

also wow i have no male reproductive organ

Dynmitrave Posted:

Yeah, FFS, you can write something in VB.NET to do it in like 10 minutes.

i did it in less than 2

Internet Delay Chat
Have fun playing!
To chat with other players, you must Join Forumwarz or Log In now!