Mar 31, 2010

Beta Update: Translate for Linux, SSL fix

Google Chrome 5.0.342.7 has been released to the Beta channel for Linux.

We’ll be releasing 342 to Mac and Windows soon, but we wanted to get the Linux update out as quickly as possible to fix an issue with Google SSL sites failing with ‘error 107 (net::ERR_SSL_PROTOCOL_ERROR)’ (issue 37722).

Here are the highlights since the 307.11 update:

  • Automatic translations and greater control over content for privacy. The Google Chrome 4.1 Beta announcement for Windows explains these features in more detail.
  • Really, really reload. A normal reload causes the browser to check with the server before reusing its cached content. The server can decide whether or not the browser should use its cached content. A force reload causes the browser to ignore its cached content and ask the server for a fresh copy of the page. Use Shift+Reload to force a reload (the reload keyboard shortcut varies by platform).
To get on the Beta channel, you can download Google Chrome from http://www.google.com/chrome?platform=linux

If you find issues, please let us know: http://code.google.com/p/chromium/issues/entry?template=Defect%20on%20Linux

--Mark Larson, Google Chrome Team

Mar 30, 2010

How to NVidia -> linux

  • Firstly, look at the kernel version by typing: uname -r
  • apt-get install kernel-headers-OUTPUT (uname -r's output)
  • apt-get install binutils
  • wget http://download.nvidia.com/XFree86/Linux-x86/1.0-6111/NVIDIA-Linux-x86-1.0-6111-pkg1.run
  • sudo /etc/init.d/gdm stop -> to turn to console
  • sh NVIDIA-Linux-x86-1.0-6111-pkg1.run --kernel-include-path=/usr/src/kernel-headers-YOURS/include/

Mar 22, 2010

How to delete all .svn folder in Linux?

  • Start Terminal
  • change your current directory to your project folder (ex: /Users/me/Sites/project_a)
  • type find ./ -name ".svn" | xargs rm -Rf
  • and enter.
Done, all your .svn folder has been deleted.

Mar 21, 2010

Test from ipod

İt is a test from ipod touch..i will keep give hints ,bugs,solutions...:) keep in touch...

Coderyy

Mar 15, 2010

Network Manager “device is unmanaged" error

How to solve:

$ sudo nano /etc/NetworkManager/nm-system-settings.conf

output:

[main]
plugins=ifupdown,keyfile

[ifupdown]
managed=false

*** change “managed=true”

$ sudo killall nm-system-settings

that will restart your connection.


Visual Studio Keyboard Shortcuts

Playing with keyboard shortcuts is very interesting and reduce the headache of using the mouse again and again while programming with visu...