Desinerd : Dipankar's Blog

Twitter feed wall – great for projectors

Published: in Technical, , , , , , , , , by . 3 Comments on Twitter feed wall – great for projectors.

Inspired by http://twistori.com/. I wrote a generic tool which will allow people to setup a simple wall where people can post and it will automatically refresh. I built this tool specifically because it was needed at proto.in. I am very sure it will be useful to a lot of people out there. Uses JQuery and […]

First wordpress plugin : Kwippy poster 1.0

Published: in Technical, , , , , , , by . 4 Comments on First wordpress plugin : Kwippy poster 1.0.

Just created my first wordpress plugin, from concept to implementation in 3 hours :D. This plugin basically posts an update on kwippy when you publish a new blog post. This can be a good tutorial for someone trying to build their own plugins actually. Enjoy. Updated: Official WordPress plugin page : http://snipper.in/86

The Screen Savers! – NES PC

Published: in Technical, , , , , , , , by . Leave a Comment on The Screen Savers! – NES PC.

Very cool … though i seem to be nearly 4 years late.

Nginx + django fcgi lessons

Published: in Technical, , , , , , , , , , , , by . 2 Comments on Nginx + django fcgi lessons.

Today was a good day as i learned some valuable lessons about django and nginx. ALWAYS close the database cursor in django, it can lead to some pretty wierd memory issues going forward. FIND the most optimal number of database connections you initialize for you connection pooling. This will let you optimize on memory going […]

Microsoft remote terminal from linux

Published: in Technical, , , , , , by . Leave a Comment on Microsoft remote terminal from linux.

I know it would be simple for a lot of people reading this blog :). But the easiest way to remote desktop into a windows machine using a X based linux distro is to install rdesktop. http://www.rdesktop.org For ubuntu and debian based distro, fire up the console and type sudo apt-get install rdesktop This would […]

Be a Shotgun Startup, at Proto.in January Edition

Published: in Articles, , , , , , , , by . 2 Comments on Be a Shotgun Startup, at Proto.in January Edition.

How many times have you had a cool idea that never saw the light? Or that amazing conversation you had with your best friends which resulted to nothing? It can be that amazing facebook application to solve all the problems of your single friends, or that Iphone game that will rock the world, or an […]

Web startup strategy in times of recession

Published: in Articles, , , , , , , , by . 3 Comments on Web startup strategy in times of recession.

I think that a lot of people think that its easy to start a web startup and get funding, well part of that is true. Yes, the barrier to start something on the web is extremely low, but lately with the recession getting money for the same is way more difficult than before. So if […]

PHP + nice URLS + nginx

Published: in Technical, , , , , , , , by . Leave a Comment on PHP + nice URLS + nginx.

Easiest way to get php with good looking urls running on your site . Works for drupal, wordpress and joomla. server { listen 80; server_name www.domain.com; index index.html index.htm index.php; root /path/to/domain/files; location / { error_page 404 = //e/index.php?q=$uri; } location ~ .php$ { include fastcgi_params; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /path/to/domain/files$fastcgi_script_name; } access_log […]

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 : Optimizations within the platform

Published: in Technical, , , , , , , by . 9 Comments on Django : Optimizations within the platform.

In my experience with both rails and django, i would have to admit that a lot of things need to be improved at the core of these platforms so that developers can truly deploy a really fast production site. Let talk about what we did at kwippy to make it that much more faster than […]