8
Survey says Samsung Galaxy phones are simpler than the iPhoneview story

http://www.talkandroid.com – There are a lot of people that think Android is better than iOS for many reasons, but most fans won’t put simplicity at the top of the list. Well according to a survey by Siegel+Gale, Samsung Galaxy phones are simpler than the iPhone. This survey was conducted with 400 people, and while both phones scored well, Samsung’s Galaxy line came out as the winner. (IT news)

8
Calling a script on machine shutdownview story

http://unix.stackexchange.com – I want to call a script on machine shutdown and restart. I have written code like #! (HowTos)

8
How do I get a field in bash's job list using awk?view story

http://unix.stackexchange.com – I wanted to write a function to retrieve a field from the list of background jobs in bash. (HowTos)

8
Python: module not found after manual installview story

http://askubuntu.com – I've recently updated to the current version of Ubuntu, 13.04 and Python 2.7.4. Since then I have problems importing the gobject module and dunno what to do to fix it. I'd like to use dreampie which currently fails at startup with the ImportError below. (HowTos)

8
Linux permissions are not respectedview story

http://serverfault.com – I've run into a perplexing problem where user permissions are not being respected on a Linux computer. Other users are able to move and delete files they don't own. Is there a way to restrict this? Why is this happening? Here's an example. # Become user jen [root@localhost test]# su jen # Display files in the current directory [jen@localhost test]$ ls -al total 24 drwxrwxrwx. (HowTos)

8
How to delete lines where the given part of the line is more then 100 chars?view story

http://unix.stackexchange.com – I know I can delete lines that are longer than 100 chars with this: sed '/^.\{100\}..*/d' But I have the following example line: <a href="http://xxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx">YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY (HowTos)

8
Killing tcp connection in linuxview story

http://unix.stackexchange.com – I have some dead connection in one application which is in hanged state if client machine is dead. ->192.168.1.214:49029 (ESTABLISHED) Is there a way to terminate these option from linux command line without restarting the server? After search I found solution called as tcpkill. But it will not work for me. As it permanently blocks that ip. (HowTos)

8
Google To Be Pushed To Improve The Visibility Of Specialised Search Rivals To Comply With EU Antitrust Probe, Says FTview story

http://techcrunch.com – With the outcome of a two-year long European Commission investigation into its search practices looming, Google is likely to have to change how it presents search results in Europe to improve the visibility of rival specialised search engines, according to the FT. The newspaper says the visibility of “vertical search” results in areas such as mapping, weather and finance is one of the (IT news)

8
[ubuntu] Hp Pavillion G6/ Ralink RT5390/Ubuntu 12.10 wireless card disabledview story

http://ubuntuforums.org – Hello all, I did a fresh install of Ubuntu 12.10 and opted to delete windows 7. (Hardware)

8
Switch from Desktop to Mobile version in PHPview story

http://stackoverflow.com – I am using the following php to switch between mobile and desktop versions of my site $mobile_browser = '0'; if (preg_match('/(up.browser|up.link|mmp|symbian|smartphone|midp|wap|phone|android)/i', strtolower($_SERVER['HTTP_USER_AGENT']))) { $mobile_browser++; } if ((strpos(strtolower($_SERVER['HTTP_ACCEPT']),'application/vnd.wap.xhtml+xml') > 0) or ((isset($_SERVER['HTTP_X_WAP_PROFILE']) (HowTos)