Motorbike Forums


Reply
Thread Tools Display Modes

That could liberate a few quid...

 
 
platypus
Guest
Posts: n/a
 
      03-17-2010, 11:18 AM

"Champ" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> On Tue, 16 Mar 2010 14:29:27 -0700 (PDT), antonye <(E-Mail Removed)>
> wrote:
>
>>Champ wrote:
>>>
>>> 01000110011101010110001101101011001000000111100101 10
>>> 11110111010100101100001000000111100101101111011101 01
>>> 00100000011001100111010101100011011010110110100101 10
>>> 11100110011100100000011001100111010101100011011010 11

>>
>>Oi! No binaries!

>
> I was rather hoping someone might figure out what it said...


Even if I could, I wouldn't.


 
Reply With Quote
 
 
 
 
Jérémy
Guest
Posts: n/a
 
      03-17-2010, 03:42 PM
Champ <(E-Mail Removed)> wrote in
news:(E-Mail Removed):

> On Tue, 16 Mar 2010 14:29:27 -0700 (PDT), antonye <(E-Mail Removed)>
> wrote:
>
>>Champ wrote:
>>>
>>> 01000110011101010110001101101011001000000111100101 10
>>> 11110111010100101100001000000111100101101111011101 01
>>> 00100000011001100111010101100011011010110110100101 10
>>> 11100110011100100000011001100111010101100011011010 11

>>
>>Oi! No binaries!

>
> I was rather hoping someone might figure out what it said...


I'm working on it. No parity bit, one stop bit, 8-bit EBCDIC, right? I'm
going to need another napkin, but so far it looks like it might be in
Turkish.

--
Jeremy
R1200RT
 
Reply With Quote
 
Ace
Guest
Posts: n/a
 
      03-17-2010, 04:57 PM
On Wed, 17 Mar 2010 15:42:06 GMT, "Jérémy" <(E-Mail Removed)> wrote:

>Champ <(E-Mail Removed)> wrote in
>news:(E-Mail Removed) :
>
>> On Tue, 16 Mar 2010 14:29:27 -0700 (PDT), antonye <(E-Mail Removed)>
>> wrote:
>>
>>>Champ wrote:
>>>>
>>>> 01000110011101010110001101101011001000000111100101 10
>>>> 11110111010100101100001000000111100101101111011101 01
>>>> 00100000011001100111010101100011011010110110100101 10
>>>> 11100110011100100000011001100111010101100011011010 11
>>>
>>>Oi! No binaries!

>>
>> I was rather hoping someone might figure out what it said...

>
>I'm working on it. No parity bit, one stop bit, 8-bit EBCDIC, right?


Bwahaha.

Most of these people haven't even heard of EBCDIC.

>I'm
>going to need another napkin, but so far it looks like it might be in
>Turkish.


I get
Ƥƒ’@¨–¤k@¨–¤@†¤ƒ’‰•‡@†¤ƒ’@

 
Reply With Quote
 
darsy
Guest
Posts: n/a
 
      03-17-2010, 05:04 PM
On Wed, 17 Mar 2010 17:57:56 +0100, Ace <(E-Mail Removed)> wrote:

>EBCDIC


for puffs.

proper coders used BCD, if they had to pander to non-binary readers.

--
d.
 
Reply With Quote
 
Ace
Guest
Posts: n/a
 
      03-17-2010, 11:44 PM
On Wed, 17 Mar 2010 23:10:34 +0000, Champ <(E-Mail Removed)> wrote:

>On Wed, 17 Mar 2010 15:42:06 GMT, "Jérémy" <(E-Mail Removed)> wrote:
>
>>>>> 01000110011101010110001101101011001000000111100101 10
>>>>> 11110111010100101100001000000111100101101111011101 01
>>>>> 00100000011001100111010101100011011010110110100101 10
>>>>> 11100110011100100000011001100111010101100011011010 11
>>>>
>>>>Oi! No binaries!
>>>
>>> I was rather hoping someone might figure out what it said...

>>
>>I'm working on it. No parity bit, one stop bit, 8-bit EBCDIC, right? I'm
>>going to need another napkin, but so far it looks like it might be in
>>Turkish.

>
>As Ace says - what? EBCDIC? What is this, the 70s?


Fooking cheater. It only takes a few lines of code:
data;
x='01000110011101010110001101101011001000000111100 10110111101110101001011000010000001111001011011110 11101010010000001100110011101010110001101101011011 01001011011100110011100100000011001100111010101100 01101101011'
;
length eights1-eights30 $ 8 ;
length c $ 30 ;
array eights eights1-eights30 ;
do i = 1 to ((length(x)/8)) ;
eights(i)=substr(x,(i*8-7),8) ;
p=input(eights(i),binary8.) ;
substr(c,i,1)=byte(p);
end;
E=put(c,$EBCDIC34.) ;
put c= e= ;
run;
>
>Just google for a binary -> text converter. It's what I did (in
>reverse) to create it in the first place.


 
Reply With Quote
 
CT
Guest
Posts: n/a
 
      03-18-2010, 08:50 AM
Ace wrote:

> Fooking cheater. It only takes a few lines of code:
> data;
> x='01000110011101010110001101101011001000000111100 10110111101110101001
> 01100001000000111100101101111011101010010000001100 11001110101011000110
> 11010110110100101101110011001110010000001100110011 10101011000110110101
> 1' ; length eights1-eights30 $ 8 ; length c $ 30 ;
> array eights eights1-eights30 ;
> do i = 1 to ((length(x)/8)) ;
> eights(i)=substr(x,(i*8-7),8) ;
> p=input(eights(i),binary8.) ;
> substr(c,i,1)=byte(p);
> end;
> E=put(c,$EBCDIC34.) ;
> put c= e= ;
> run;


It don't look like any kind of code I've ever written.

--
Chris
 
Reply With Quote
 
darsy
Guest
Posts: n/a
 
      03-18-2010, 09:02 AM
On 18 Mar 2010 08:50:29 GMT, "CT" <(E-Mail Removed)> wrote:

>Ace wrote:
>
>> Fooking cheater. It only takes a few lines of code:
>> data;
>> x='01000110011101010110001101101011001000000111100 10110111101110101001
>> 01100001000000111100101101111011101010010000001100 11001110101011000110
>> 11010110110100101101110011001110010000001100110011 10101011000110110101
>> 1' ; length eights1-eights30 $ 8 ; length c $ 30 ;
>> array eights eights1-eights30 ;
>> do i = 1 to ((length(x)/8)) ;
>> eights(i)=substr(x,(i*8-7),8) ;
>> p=input(eights(i),binary8.) ;
>> substr(c,i,1)=byte(p);
>> end;
>> E=put(c,$EBCDIC34.) ;
>> put c= e= ;
>> run;

>
>It don't look like any kind of code I've ever written.


I would have though your level of sophistication was along the lines
of:

10 PRINT "Chris is cool";
20 GOTO 10

--
d.
 
Reply With Quote
 
Dr Ivan D. Reid
Guest
Posts: n/a
 
      03-18-2010, 09:07 AM
On 18 Mar 2010 08:50:29 GMT, CT <(E-Mail Removed)>
wrote in <(E-Mail Removed)>:
> Ace wrote:


>> Fooking cheater. It only takes a few lines of code:
>> data;
>> x='01000110011101010110001101101011001000000111100 10110111101110101001
>> 01100001000000111100101101111011101010010000001100 11001110101011000110
>> 11010110110100101101110011001110010000001100110011 10101011000110110101
>> 1' ; length eights1-eights30 $ 8 ; length c $ 30 ;
>> array eights eights1-eights30 ;
>> do i = 1 to ((length(x)/8)) ;
>> eights(i)=substr(x,(i*8-7),8) ;
>> p=input(eights(i),binary8.) ;
>> substr(c,i,1)=byte(p);
>> end;
>> E=put(c,$EBCDIC34.) ;
>> put c= e= ;
>> run;


> It don't look like any kind of code I've ever written.


It's Swiss-German...

--
Ivan Reid, School of Engineering & Design, _____________ CMS Collaboration,
Brunel University. Ivan.Reid@[brunel.ac.uk|cern.ch] Room 40-1-B12, CERN
GSX600F, RG250WD "You Porsche. Me pass!" DoD #484 JKLO#003, 005
WP7# 3000 LC Unit #2368 (tinlc) UKMC#00009 BOTAFOT#16 UKRMMA#7 (Hon)
KotPT -- "for stupidity above and beyond the call of duty".
 
Reply With Quote
 
CT
Guest
Posts: n/a
 
      03-18-2010, 09:13 AM
darsy wrote:

> I would have though your level of sophistication was along the lines
> of:
>
> 10 PRINT "Chris is cool";
> 20 GOTO 10


That was a couple of years ago.

--
Chris
 
Reply With Quote
 
Ace
Guest
Posts: n/a
 
      03-18-2010, 09:20 AM
On Thu, 18 Mar 2010 09:07:20 +0000 (UTC), "Dr Ivan D. Reid"
<(E-Mail Removed)> wrote:

>On 18 Mar 2010 08:50:29 GMT, CT <(E-Mail Removed)>
> wrote in <(E-Mail Removed)>:
>> Ace wrote:

>
>>> Fooking cheater. It only takes a few lines of code:
>>> data;
>>> x='01000110011101010110001101101011001000000111100 10110111101110101001
>>> 01100001000000111100101101111011101010010000001100 11001110101011000110
>>> 11010110110100101101110011001110010000001100110011 10101011000110110101
>>> 1' ; length eights1-eights30 $ 8 ; length c $ 30 ;
>>> array eights eights1-eights30 ;
>>> do i = 1 to ((length(x)/8)) ;
>>> eights(i)=substr(x,(i*8-7),8) ;
>>> p=input(eights(i),binary8.) ;
>>> substr(c,i,1)=byte(p);
>>> end;
>>> E=put(c,$EBCDIC34.) ;
>>> put c= e= ;
>>> run;

>
>> It don't look like any kind of code I've ever written.

>
> It's Swiss-German...


You understood it then?

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off



All times are GMT. The time now is 01:47 PM.

1 2 3 4 5 6 7 8 9