Category Archives: Featured
My Bookmark links
General http://adapt.960.gs/ http://speckyboy.com/2011/04/11/50-free-psd-ui-kits-and-templates-for-web-designers/ http://www.designkindle.com/category/graphics/ http://speckyboy.com/ http://javascriptmvc.com/ http://getqualitycontrol.com/ http://code.google.com/p/sigil/ http://code.google.com/p/fop-miniscribus/ HTML5 http://www.whatwg.org/specs/web-apps/current-work/multipage/index.html#contents XML validator http://www.validome.org/xml/validate/ Misc https://github.com/mleibman/SlickGrid/wiki https://github.com/rnavarro/CakePHP-cPanel-API-Component/ http://www.openfaces.org/demo/treetable/TreeTable_basicFeatures.jsf http://nicolasgallagher.com/css-background-image-hacks/ http://www.smashingmagazine.com/2010/12/09/journalcrunch-wordpress-3-0-theme-free-theme-for-portfolios-and-magazines/ http://www.smashingmagazine.com/2010/12/23/free-icon-set-for-web-developers-coded/ http://procssor.com/process https://github.com/rnavarro/CakePHP-cPanel-API-Component/ https://github.com/mleibman/SlickGrid/wiki http://www.openfaces.org/demo/treetable/TreeTable_basicFeatures.jsf http://biasecurities.com/blog/2010/have-jquery-autocomplete-behave-like-google-suggest/
Create single instance application in Qt 4 : Qt Tip #1
Many times we want only single instance of application. How can we achieve this. I’m going to show a simple way to achieve this. We need a Utility that is freely provided by Qt guys . Click here to know … Continue reading
true v/s TRUE is actually case insensitive : PHP Tips
Fact is : To specify a boolean literal, use the keywords TRUE or FALSE. Both are case-insensitive. We assume in moodle: http://docs.moodle.org/en/Development:Coding_style#Booleans_and_the_null_Value Booleans and the null Value Use lower case for true, false and null. We assume in CodeIgniter: http://codeigniter.com/user_guide/general/styleguide.html#true_false_and_null … Continue reading
My CodeIgniter .Htaccess
This is my .htaccess file RewriteEngine on RewriteCond $1 !^(index\.php|images|user_guide|assets|captcha|robots\.txt) RewriteRule ^(.*)$ index.php/$1 [L] It should be placed in root of the website. Rewrite module of apache should be enabled or it will give you an 500 internal server error. … Continue reading
Highlight current element using javascript
Adding dyamic current link style using javascript. It makes easy to view where we are in website. I’m talking about when you are at home and home looks different from others. How can one achieve that without even using server … Continue reading
Ending tags of php – leave or not
To end the php code we can use <? , In fact it is just optional and we should leave it when we are following OOP. This helps us to remove unwanted whitespaces. This is the core rule of Codeigniter … Continue reading
Simulate a Key event press/release in QT 4
QApplication::sendEvent(this, new QKeyEvent (QEvent::KeyPress, Qt::Key_Dead_Diaeresis, Qt::NoModifier, QString("¨"))); //Another way I guess easy to understand :) //Although both are same QKeyEvent keyEvent(QEvent::KeyPress,Qt::Key_Escape, Qt::NoModifier); QApplication::sendEvent(this, &keyEvent);
CSS Rule 3 : System Colors
System Colors Any color property (e.g., ’color’ or ’background-color’) can take one of the following names. Although these are case-insensitive, it is recommended that 284 23 Apr 2009 15:57 User interface the mixed capitalization shown below be used, to make … Continue reading
Qt Code Example: New File | Open File | Save File | Save as File | File Print | Print Preview | File Print Preview | Print Preview
These are few code snippet taken from Qt examples. I’m making easier to look for particular functions. That’s it . New File Open File Save File Save as File File Print Print Preview File Print Preview Print Preview Save as … Continue reading