This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions..

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions..

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions..

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions..

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions..

วันศุกร์ที่ 26 กันยายน พ.ศ. 2557

Facebook Emotions

EmoticonNameShortcode
thumbs up!NEW Like(y)
facebook emoticon angelAngelO:) O:-)
facebook emoticon confusedConfusedo.O O.o
facebook emoticon cryCry:’(
facebook emoticon curlylipsCurlylips:3
facebook emoticon devilDevil3:) 3:-)
facebook emoticon frownFrown:-( :( :[ =(
facebook emoticon gaspGasp:-O :O :-o :o
facebook emoticon glassesGlasses8-) 8) B-) B)
facebook emoticon grinGrin:-D :D =D
facebook emoticon grumpyGrympy>:( >:-(
facebook emoticon heartHeart<3
facebook emoticon kikiKiki^_^
facebook emoticon kissKiss:-* :*
facebook emoticon pacmanPacman:v
facebook emoticon penguinPenguin<(“)
facebook emoticon putnamChris Putnam:putnam:
facebook emoticon robotRobot:|]
facebook emoticon sharkShark(^^^)
facebook emoticon smileSmile:-) :) :] =)
facebook emoticon squintSquint-_-
facebook emoticon sunglassesSunglasses8-| 8| B-| B|
facebook emoticon tonguetongue:-P :P :-p :p =P
facebook emoticon unsureUnsure:/ :-/ :\ :-\
facebook emoticon upsetUpset>:O >:-O >:o >:-o
facebook emoticon winkWink;-) ;)
facebook emoticon 4242:42:

วันพุธที่ 17 กันยายน พ.ศ. 2557

แปลงค่า ASCII Hex Decimal Binary

ASCII Converter - Hex, decimal, binary, and ASCII converter

ASCII (Example: a b c)

Hex (Example: 0x61 0x62 0x63)

Decimal (Example: 97 98 99)

Binary (Example: 01100001 01100010 01100011)

วันอังคารที่ 9 กันยายน พ.ศ. 2557

สร้าง menu โปรแกรมจาก cmd file

ECHO OFF
CLS
:MENU
ECHO.
ECHO ...............................................
ECHO PRESS 1, 2 OR 3 to select your task, or 4 to EXIT.
ECHO ...............................................
ECHO.
ECHO 1 - Open Notepad
ECHO 2 - Open Calculator
ECHO 3 - Open Notepad AND Calculator
ECHO 4 - EXIT
ECHO.
SET /P M=Type 1, 2, 3, or 4 then press ENTER:
IF %M%==1 GOTO NOTE
IF %M%==2 GOTO CALC
IF %M%==3 GOTO BOTH
IF %M%==4 GOTO EOF
:NOTE
cd %windir%\system32\notepad.exe
start notepad.exe
GOTO MENU
:CALC
cd %windir%\system32\calc.exe
start calc.exe
GOTO MENU
:BOTH
cd %windir%\system32\notepad.exe
start notepad.exe
cd %windir%\system32\calc.exe
start calc.exe
GOTO MENU