Posts

Showing posts from January, 2012

bootstrap css library framework from twitter

Are you only coder like me ? Can't you find good and cheap designer for your apps ? Don't you want to bother with basic css and js tricks ? http://twitter.github.com/bootstrap/  is your best friend. Bootstrap is very easy to use css library from well known social platform twitter . They are also using this library in their site. I tried to implement bootstrap library in http://freedjangohosting.com

how to remove dublicates from your mysql table

nice mysql syntax for removing dublicates from your tables strategy as follows clone your table with create table a as select * from b truncate your table truncate b create unique index create unique index u_indx1 on b (x,y,z) insert all rows back to table with ignore insert ignore into b select * from a