Donate to support Ukraine's independence.

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.

Continue reading

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.

Continue reading

05 Jan'12

Google Reader

want some kind of page archiving, maybe somewhat mobile preparation after i star an rss item

Continue reading

Category: 

28 Dec'11

Производная

Чебаненко: “Производная от константы равна константе”.

Continue reading

Category: 

06 Dec'11

Connect to VPS from clean machine

  1. download putty
  2. generate ssh key pairs on the client
  3. download winSCP
  4. upload public ssh key to the server
  5. open putty key with puttygen
  6. 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”.

Continue reading

Category: 

26 Nov'11

Kindle Collections

http://www.applied-mathematics.net/tools/kindleCollectionManager.html

Больше привлекла http://www.colegate.net/KindleCollectionManager/screenshots.aspx, но никаких писем из обещанных мне не досталось.

Continue reading

02 Nov'11

The biggest risk is not to take any risk

Link:

Watch live video from Startup School on Justin.tv

Continue reading

Category: 

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

Continue reading

21 Jun'11

Nautilus refuses to set some application as default for mimetype?

Navigate to ~/.local/share/applications/ and edit mimeapps.list

Continue reading

Category: 

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 …

Continue reading

← Previous Next → Page 8 of 10