Recent Notes

Displaying notes 21 - 30
Created by Dr. Xi on February 27, 2013 10:01:21    Last update: February 27, 2013 10:01:21
The SVN property svn:mergeinfo holds the history of merges made to a file or directory. To display mergeinfo in plain text: $ svn propget svn:mergeinfo . If you dig XML: $ svn propget svn:mergeinfo --recursive --xml
Created by woolf on February 14, 2013 15:42:24    Last update: February 14, 2013 15:42:24
Example to convert all upper case letters to lower case with tr : $ echo ABCD | tr [A-Z] [a-z]
Created by Dr. Xi on February 13, 2013 19:40:08    Last update: February 13, 2013 19:40:08
According to MSDN : On Windows 7 and on Windows Server 2008 R2 with the Wireless LAN Service installed, the operating system installs a virtual device if a Hosted Network capable wireless adapter is present on the machine. This virtual device normally shows up in the "Network Connections Folder" as "Wireless Network Connection 2" with a Device Name of "Microsoft Virtual WiFi Miniport adapter" if the computer has a single wireless network adapter. This virtual device is used exclusively for performing software access point (SoftAP) connections. The lifetime of this virtual device is tied to the physical wireless adapter. If the physical wireless adapter is disabled, this virtual device will be removed as well. On Windows 7, there's no UI to start or stop SoftAP....
Created by freyo on February 09, 2013 14:40:31    Last update: February 09, 2013 14:40:31
Use this link to lookup information on an IP address: http://bgp.he.net/ip/204.193.144.69 Whois lookup is also supported. Clean page, no clutter.
Created by freyo on February 09, 2013 14:22:42    Last update: February 09, 2013 14:22:42
To find out the DNS server ip address your computer is using, load this page in your browser: http://myresolver.info/
Created by freyo on February 09, 2013 14:17:32    Last update: February 09, 2013 14:17:32
More info on how to change DNS setting on the Android phone: How do you change the DNS? Custom DNS Servers
Created by freyo on February 06, 2013 21:10:47    Last update: February 06, 2013 21:12:18
I have an old Samung phone to be used as a toy. After restoring back to factory image and power on, I was stuck at the activate service screen. Unfortunately, the four corner magic touch did not work. So I did quite a bit of digging and this is what worked on my Samsung Continuum: Press emergency call button, then at the dialer, press * # 8 3 7 8 6 6 3 3 , press the Home key From the home screen, tap phone icon, Dial * # 2 2 7 4 5 9 2 7 Enter SPC code: ______ displays tap in white box to show virtual keyboard, enter 6 digit code (default: 000000), tap OK Select “Hidden menu Enable”, tap OK From...
Created by freyo on September 13, 2011 16:20:08    Last update: February 06, 2013 20:46:22
From ADB shell: show Android routing table: # cat /proc/net/route or # ip route show show DNS server: # getprop net.dns1 # getprop net.dns2 set DNS server: # setprop net.dns1 107.86.113.12 # setprop net.... add a default gateway # route add default gw 192.168.0.1 dev wifi I just learned that the DNS server properties can also be dhcp.eth0.dns1 and dhcp.eth0.dns2 for wifi. On my Samsung phone, DNS for wifi was configured through dhcpcd in /system/etc/dhcpcd/dhcpcd-hooks/20-dns.conf , the relevant section looked like this: set_dns_props() { case "${new_domain...
Created by freyo on February 05, 2013 20:10:35    Last update: February 05, 2013 20:29:51
Have to remount /system as read-write: mount -o rw,remount -t yaffs2 /dev/block/mtdblock3... Maybe this is safer: mount -o rw,remount /system
Created by voodoo on February 02, 2013 12:29:56    Last update: February 02, 2013 12:29:56
I got this error while compiling ucspi-tcp . The solution was to move #include <errno.h> from error.c to error.h . The following also works: echo gcc -O2 -include /usr/include/errno.h > conf-... The reason was explained in http://cr.yp.to/docs/unixport.html#errno
Previous  1 2 3 4 5 6 7 8 9 10 Next