Friday, 28 December 2012

[Links] #1


  • http://www.twitch.tv
  • http://ipv4.download.thinkbroadband.com/1GB.zip
  • http://thelinuxvideo.com/
  • http://wiki.openwrt.org/toh/tp-link/tl-mr3020
  • http://pami.biz.tm/index.php
  • http://code.google.com/p/winsetupfromusb/
  • http://darkgiovy.forumcommunity.net/?t=52893584
  • http://ps3repack.com
  • http://www.linuxandlife.com/2011/11/how-to-configure-xmonad-arch-linux.html
  • http://mydigitallife.info

userscript
  • http://userscripts.org/scripts/show/154011
  • http://userscripts.org/users/496689/scripts
  • http://userscripts.org/scripts/show/118033
youtube
  • http://www.youtube.com/watch?v=eCo0ZC5jq7M

[Random] #1

router add default gw 192.168.1.100



[HowTo] Check celcom balance and quota using sms

celcom balance

bal

send to 2888

celcom quota

vol status

send to 22188

Tuesday, 2 October 2012

[HowTo] Check public ip via command line

mkdir bin
cd /bin
nano whatismyip.sh

#!/bin/bash

echo Your external IP Address is :
#wget http://www.whatismyip.com -O - -o /dev/null | grep '<TITLE>' | sed -r 's/<TITLE>WhatIsMyIP\.com \- //g' | sed -r 's/<\/TITLE>//g'
wget http://automation.whatismyip.com/n09230945.asp -O - -o /dev/null
echo

exit 0


press ctrl+o
press enter
press ctrl+x


chmod u+x

to run :

/bin/./whatismyip.sh


ref : http://ubuntuforums.org/showthread.php?t=526176