Show DevBest Simple Matrix Code (read)

Status
Not open for further replies.

Macemore

Circumcised pineapples
Aug 26, 2011
1,681
819
Have you seen the Matrix? (if no them please gtfo)
You know that black & green screen with the 1s and 0s
I made a simple (VERY simple) script to make something look like that...
Commented code (WILL NOT WORK)
Code:
@ECHO OFF //Make is so people can't see the ECHO and all the other commands
color 02 //Changes the color (make it look matrix-y)
:1 //tells the computer where 1 is located
ECHO 10100100101010100100100100010001001010101010010100110010101001100101010111101000 //displays text
goto 2 //Tells the computer to go to 2
:2 //tells the computer where 2 is located
ECHO 01010101001010101010010101010101010100101011001011010101010010101001010101001010 //displays the text
goto 3 //tells the computer to go to 3
:3 //tells the computer where 3 is located
ECHO 11101001010001001010100101010100101010010101010101010010101010100101001010101010 //displays the text
goto 1 //tells the computer to go to 1
Okay to use this script you will need to open notepad (sorry Mac users, I think you're SOL)
& paste the fallowing code into it:
Code:
@ECHO OFF
color 02
:1
ECHO 10100100101010100100100100010001001010101010010100110010101001100101010111101000
goto 2
:2
ECHO 01010101001010101010010101010101010100101011001011010101010010101001010101001010
goto 3
:3
ECHO 11101001010001001010100101010100101010010101010101010010101010100101001010101010
goto 1
once that's done, click "save as" choose where you want to save it once the dialog box opens
before you save, you must select "save as type:" and change it from "text documents (.txt)" to
"all files (*.*)" and once you've done that change the file name to anything you want.bat
find the location of the file, double click it (run it) and enjoy.
 

Macemore

Circumcised pineapples
Aug 26, 2011
1,681
819
Cool, i've seen this before some where on google.
Maybe I should of googled before hand then. But I created this from scratch :)
Nice I like it, it's a shame CMD can't go full screen ;P!

By the way, the 1's and 0's is called binary! :p
I know ;( maybe once I learn C++ I might be able to create this in full screen!
and I never knew is was called Binary ;o Learned something today!
 

Markshall

Русский Стандарт
Contributor
Dec 18, 2010
2,638
2,393
Maybe I should of googled before hand then. But I created this from scratch :)

I know ;( maybe once I learn C++ I might be able to create this in full screen!
and I never knew is was called Binary ;o Learned something today!
Binary is the numbering system for computers.
You may think that computers are the most intelligent creations on the planet, well they're not! They're actually really dumb. They can only understand "1" and "0" -- which is called Binary. It was us humans who made computers behave like that and understand everything we input on a computer, so technically you could say that humans are more intelligent than computers!

When you press the number one (1) on your computer, the computer will read it as "0001" and output it as "1".
 

Macemore

Circumcised pineapples
Aug 26, 2011
1,681
819
Binary is the numbering system for computers.
You may think that computers are the most intelligent creations on the planet, well they're not! They're actually really dumb. They can only understand "1" and "0" -- which is called Binary. It was us humans who made computers behave like that and understand everything we input on a computer, so technically you could say that humans are more intelligent than computers!

When you press the number one (1) on your computer, the computer will read it as "0001" and output it as "1".
I already knew aboot the hole 101010101001 (thanks matrix) Never knew it was called binary though.
 

Benson

Member
Oct 13, 2010
57
3
Added to it so it doesn't just look like its putting the same numbers, its kinda just random..;D.
Code:
@ECHO OFF
color 02
:1
ECHO 10100100101010100100100100010001001010101010010100110010101001100101010111101000
goto 2
:2
ECHO 01010101001010101010010101010101010100101011001011010101010010101001010101001010
goto 3
:3
ECHO 11101001010001001010100101010100101010010101010101010010101010100101001010101010
goto 4
:4
ECHO 10101001100101011101111110101010101110101001010010100100111011001010101011010101
goto 5
:5
ECHO 01001101010111010101010101010011110100110101101010101010010010010000101010101010
goto 6
:6
ECHO 11101101010101010101001000001001010101011111110101010100110111100101010101010101
goto 7
:7
ECHO 10101001111111100101000000101010111101010010101001100101010110101011101010101010
goto 8
:8
ECHO 10000011101010101111010101010101000111101010101010010101001001001001010001101011
goto 9
:9
ECHO 10101010110101010101110101010111101101000101001010101011110100101010001010101010
goto 10
:10
ECHO 10011100100101001010111010100100101001001010010010100010010100101111010010110111
goto 11
:11
ECHO 10111111111010100010001010111101010000000000000000000011011010100010011001101011
goto 12
:12
ECHO 11111111010100100110001011110011001000100101000100100100101001000000100101001011
goto 13
:13
ECHO 11110101001010100010101110101001001011101001100010100101011010101011010101010101
goto 14
:14
ECHO 11010100101110101001001010001000010101101010111110101111110110101110100010111110
goto 15
:15
ECHO 10100101010010101111001011010101010110010010101000101010101011110000000100100001
goto 16
:16
ECHO 00000011001000001000100111000100100100101000101010101001010101011100100101001011
goto 17
:17
ECHO 10100101110101010010011000001010101110101010010100101011101011101011010100100111
goto 1
 

Macemore

Circumcised pineapples
Aug 26, 2011
1,681
819
Added to it so it doesn't just look like its putting the same numbers, its kinda just random..;D.
Code:
@ECHO OFF
color 02
:1
ECHO 10100100101010100100100100010001001010101010010100110010101001100101010111101000
goto 2
:2
ECHO 01010101001010101010010101010101010100101011001011010101010010101001010101001010
goto 3
:3
ECHO 11101001010001001010100101010100101010010101010101010010101010100101001010101010
goto 4
:4
ECHO 10101001100101011101111110101010101110101001010010100100111011001010101011010101
goto 5
:5
ECHO 01001101010111010101010101010011110100110101101010101010010010010000101010101010
goto 6
:6
ECHO 11101101010101010101001000001001010101011111110101010100110111100101010101010101
goto 7
:7
ECHO 10101001111111100101000000101010111101010010101001100101010110101011101010101010
goto 8
:8
ECHO 10000011101010101111010101010101000111101010101010010101001001001001010001101011
goto 9
:9
ECHO 10101010110101010101110101010111101101000101001010101011110100101010001010101010
goto 10
:10
ECHO 10011100100101001010111010100100101001001010010010100010010100101111010010110111
goto 11
:11
ECHO 10111111111010100010001010111101010000000000000000000011011010100010011001101011
goto 12
:12
ECHO 11111111010100100110001011110011001000100101000100100100101001000000100101001011
goto 13
:13
ECHO 11110101001010100010101110101001001011101001100010100101011010101011010101010101
goto 14
:14
ECHO 11010100101110101001001010001000010101101010111110101111110110101110100010111110
goto 15
:15
ECHO 10100101010010101111001011010101010110010010101000101010101011110000000100100001
goto 16
:16
ECHO 00000011001000001000100111000100100100101000101010101001010101011100100101001011
goto 17
:17
ECHO 10100101110101010010011000001010101110101010010100101011101011101011010100100111
goto 1
Thanks, that'll make it look more 'legit'.
as legit as The Matrix can get I guess...
 
Status
Not open for further replies.

Users who are viewing this thread

Top