Tuesday, June 9, 2009

Hexadecimal, Binary, and Decimal chart

HEX BIN DEC
0 0 0
1 1 1
2 10 2
3 11 3
4 100 4
5 101 5
6 110 6
7 111 7
8 1000 8
9 1001 9
A 1010 10
B 1011 11
C 1100 12
D 1101 13
E 1110 14
F 1111 15
10 10000 16

Wednesday, June 3, 2009

Make a Matrix batch

UPDATE!!!:
In order to make this a screensaver, you simply:
1)run the file
2)Right-click the Title bar
3)Choose full screen>all future windos with this title
4)rename to Matrix.scr
5)right-click icon
6)Install
7)choose as screen-saver in desktop properties
_____________________________________________________________________________________


Make a Matrix batch
Unfortunatley its just a script, you cant make this a screen-saver :(
First: Open notepad
Second:Type the following:
@echo off
title Matrix
color 2
:start
echo %random% %random% %random% %random% %random% %random%
%random% %random% %random% %random% %random% %random%
%random% %random% //all on one line
cls
goto:start

Third: Click File > save as
Note: Before saving, change file type to 'All Files'
Fifth: Save the file as 'whatever'.bat
('whatever can be replaced with whatever you want, as long as you put .bat at the end)
You're done!!!!!


Syntax:
@echo off - Only executes command, does not display the command itself
color [2a] - determines color of background and text (2:text::a:background)
tilte - determines title of open window
:start - determines a marking place for script (i.e :start, :top, :bottom, ect.)
echo - displays that line (or result of command for that line)
%random% - generates a random number
cls - clears the screen
goto:[start] - goes to a section [marked start]
.bat - file extension for batch files
batch file - a file that consists of C++ coding which is executed in command promt
______________________________________________________________________________________________________
© 2009 All Rights Reserved by the National Company of Computer Modifications [not really] :P

Monday, June 1, 2009

Make a computer turn off in 30 sec with Batch

Things you need:


1) You need access to the computer
2)you need some time (not alot, but still)

Step 1:


Open a simple text editor (i.e. notepad)
type the following:shutdown.exe -s -t 30 -c "YOUR MESSAGE HERE"
click: File>Save as
change file type to "All Files"
Name it whatever.bat
(you can name it whatever you want as long as it has ".bat")

Syntax:


-s turns off the computer
-f forces the computer to do the command before (i.e -s -f=forced shutdown)
-l logs off computer
-r restarts the computer
-t is the time (in seconds) untill computer executes command [shutdown only]
-c adds a comment
______________________________________________________________________________________________________
How this was, at least, interesting to you people!!! ENJOY!!!
Please comment/sudscride :)


© 2009 All Rights reserved by the National Company for Computer Modifacations [ not really :P ]