Desinerd : Dipankar's Blog

Twitter background generator version 0.1

Published: in Technical, , , , , , , , , , by . Leave a Comment on Twitter background generator version 0.1.

Working on a very basic twitter background generator, right now focusing on how to get the sidebar width right. It is very much under use at my twitter handle @dipankarsarkar (http://twitter.com/dipankarsarkar). The core idea is to be abe to communicate more information about what i do as a person using the background image. Some features […]

CodeIgniter + nginx : Facebook application

Published: in Technical, , , , , , , by . Leave a Comment on CodeIgniter + nginx : Facebook application.

This is a basic tutorial on how to get CodeIgniter facebook application on nginx (with the gotchas). The nginx configuration would be like the following server { listen 80; server_name blah.com; location ~ /index.php/ { root /home/production/blah; index index.html index.htm index.php; include conf/fcgi.conf; fastcgi_param SCRIPT_FILENAME /home/production/fb_apps/quickdate/index.php; fastcgi_pass 127.0.0.1:9000; } access_log /usr/local/nginx/logs/blah.access_log; error_log /usr/local/nginx/logs/blah.error_log; } The […]

Django : using a seperate memcached cloud for sessions

Published: in Technical, , , , , , , by . 2 Comments on Django : using a seperate memcached cloud for sessions.

When you are using a platform like django you realise how slow sessions can get when you are using the database as a backend. The problem of using a memory cache like memcached is the fact that when you restart the server to refresh the cache or remove stale objects, the problem is that you […]