Categories
PHP Engines

Next Generation PHP Engines: HHVM/PHP-5.5/PHPNG

HHVM: In looking for an infrastructure to comput more efficiently HHPM an efficient PHP Engine was developed by Facebook . Commonly know as HipHop for PHP. HHPM is an intermediate bytecode language which translate PHP to native code through JIT(Just In time Compiler).PHP is simple to learn, read, write, and debug.Through HHPM CPU usage can be […]

Categories
Drupal modules

A quick start to Drupal Testing for modules/themes

Drupal can be extended by composing your own module as per the needs.Before taking you through the practical guide I will be giving you a lime light of what a module is? What is a Drupal Module? A set of files with some special features and functionalities makes a module. The purpose behind this is […]

Categories
Programming

CSS Pre-Processors with Super Powers

CSS Pre-Processors with Super Powers … (SASS/LESS/Stylus) A program or software installed on developer’s computer that receives a set of input data to produce certain output that will be used as input by another process is what we call is as Pre-processor. In our case of CSS Pre-Processors, its one or several files in a […]

Categories
How To Javascript Node JS Programming

[How To] Implement Passport.js Authentication with Sails.js

Here we intend to demonstrate the procedure of local authentication i.e. by using a username and password. Step 1: Dependencies passport passport-local bcrypt List these dependencies inside application_directory/package.json  under dependencies. //application_directory/package.json { … “dependencies”: { … “passport”: “~0.1.16”, “passport-local”: “~0.1.6”, “bcrypt”: “~0.7.6” } … } Step 2: Create user model To create user model run […]

Categories
PHP Programming Yii Framework

Yii LESS Extension

Yii Less Extension gives a simple way to include LESS files in your Yii view files.
Extension Home: Click Here
Download: Click Here
Project Repository: Click Here
Support Forum: Click Here

Categories
ASP.NET Umbraco

[Umbraco Deployment] Exporting MS SQL CE Database to MS SQL Server Express

Here is a detailed set of steps to export your MS SQL CE Data file to your SQL Server Instance and deploying your Umbraco development package on to production: Install “Microsoft SQL Server Compact 4.0” from http://www.microsoft.com/en-us/download/details.aspx?id=17876 Install “SQL Server Compact Toolbox (Standalone)” from http://sqlcetoolbox.codeplex.com/releases/view/69910 Open the downloaded file “SqlCe40Toolbox.exe“. Right click on the list […]

Categories
ExtJS Javascript Programming Sencha Touch

Sencha Touch 2 Slider Field Extended Component

This is an extended version of the standard Sencha Touch 2 slider field. Download: Click Here Project Repository: Click Here Features Dynamically changing input item beside the standard Sencha Touch 2 slider. Slider position changes based on the value of the input item and changes are reflected immidiately. Position of the input helper can be […]

Categories
ExtJS Javascript Sencha Touch

Adding Before & After Filters in Sencha Touch MVC Controllers

BeforeFilters in RoR are a great way to manage controller accesses or do execute any other specific controller action triggers. Here is a simple way of mimicking this great RoR feature on Sencha Touch MVC. Create a file named `app/controllers/Controllers.js` with the following content: Ext.Dispatcher.on(‘before-dispatch’, function(interaction) { if(Ext.isFunction(interaction.controller.beforeFilter)) { return interaction.controller.beforeFilter.call(); }; return true; }); […]

Categories
PHP Programming WordPress

[WordPress Plugin] BuddyPress xProfiles ACL

BuddyPress xProfiles ACL BuddyPress xProfiles ACL WordPress Plugin
Plugin Home: Click Here
Download: Click Here
Project Repository: Click Here
Support Forum: Click Here

Categories
Javascript jQuery Plugins Programming

jQuery TagBox Plugin

jQuery TagBoxA jQuery based Tag Input plugin.
Demo: Click Here
Download: Click Here
Project Repository: Click Here