05 Jan'12
Widget problem on Android
If you expect the widget, and it’s missing in the list, move the app to the phone memory.
05 Jan'12
win win 2011
so-so film, but i enjoyed it quite a bit. If you look closer, there is no win win everywhere. The reason for that is a trade-off you always have to face.
choose the right end and will be win win.
don’t be doomed.
05 Jan'12
Google Reader
want some kind of page archiving, maybe somewhat mobile preparation after i star an rss item
28 Dec'11
06 Dec'11
Connect to VPS from clean machine
- download putty
- generate ssh key pairs on the client
- download winSCP
- upload public ssh key to the server
- open putty key with puttygen
- save it to proprietary format
Remember to use echo correctly:
echo "something" > file
means that everything that’s in “file” will be deleted, and “something” will be written to it (which means that “something” will be right at the beginning of “file”.
Code:
echo "something" >> file
means that “something” will be appended to “file”, so nothing will be deleted from “file”, and “something will be at the end of “file”.
26 Nov'11
Kindle Collections
http://www.applied-mathematics.net/tools/kindleCollectionManager.html
Больше привлекла http://www.colegate.net/KindleCollectionManager/screenshots.aspx, но никаких писем из обещанных мне не досталось.
02 Nov'11
The biggest risk is not to take any risk
Link:
Watch live video from Startup School on Justin.tv
27 Jun'11
Installing Ruby & Ruby on Rails on Ubuntu box
Start by: http://itshouldbeuseful.wordpress.com/2011/05/04/setting-up-ubuntu-11-04-for-rails-development/
Dig deeper with: http://ryanbigg.com/2010/12/ubuntu-ruby-rvm-rails-and-you/
If you install rvm as root and fall in bunch of problems, visit: http://stackoverflow.com/questions/5253643/cannot-install-rvm-permission-denied-in-usr-local-rvm
21 Jun'11
Nautilus refuses to set some application as default for mimetype?
Navigate to ~/.local/share/applications/ and edit mimeapps.list
27 May'11
Symfony2 w/PHP5.3 on Ubuntu 11.04 / Nginx
sudo apt-get install php5 sudo apt-get install php5-suhosin
Nginx.conf:
try_files $uri $uri/ /index.php; location ~ \.php(/.*)?$ { fastcgi_split_path_info ^(.+\.php)(.*)$; fastcgi_pass backend; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /var/www$fastcgi_script_name; include fastcgi_params; fastcgi_param QUERY_STRING $query_string; fastcgi_param REQUEST_METHOD $request_method; fastcgi_param CONTENT_TYPE $content_type; fastcgi_param CONTENT_LENGTH $content_length; fastcgi_intercept_errors on; fastcgi_ignore_client_abort off; fastcgi_connect_timeout 60; fastcgi_send_timeout 180; fastcgi_read_timeout 180; fastcgi_buffer_size 128k; fastcgi_buffers 4 256k; fastcgi_busy_buffers_size 256k; fastcgi_temp_file_write_size 256k; } #error_page 404 /404.html; location /web/ { root /var/www/; allow all; }
Restart Nginx
ps -ax | grep nginx kill 1021 sudo /etc/init.d/nginx restart
Install PHP-FPM:
sudo apt-get install php5-fpm sudo /etc/init.d/php5-fpm restart …