Thursday, July 26, 2012

GPS

Interesting video about GPS. GPS signal is not encrypted and current location error is up to 2 meters in radius. However, the error in new devices is measured in centimeters or millimeters.

Interesting links about the topic:

Wave Bubble and GPS spoofer are dangerous for our society.

Tuesday, July 24, 2012

ifconfig.me

In the past, I used www.whatismyip.com external IP address. Today I stumble on better service www.ifconfig.me that suport JSON, XML, less ads and more.

- curl ifconfig.me/all.json
- curl ifconfig.me/all.xml

curl ipecho.net/plain ; echo

Monday, July 9, 2012

Monday, July 2, 2012

seq - print a sequence of numbers

Linux utility to generate sequence of numbers

seq 1 5
1
2
3
4
5