Categories
Javascript

How to Add Multiple Migrations in Truffle?

Migration, in general, is a very much known term for developers in different aspects. In general, it is the process of moving your application from one operating environment into another operating environment to upgrade it. But most of the backend developers use it to define the schema of your database.  In Ethereum blockchain we need […]

Categories
Javascript Uncategorized

How to Get Data from FCM while App is in Background in React Native?

The notifications module in React Native Firebase has support for both remote (FCM) and local notifications. Firebase Cloud Messaging (FCM) is a great way to notify users about something you want them to know. But you can do more instead of showing only the message to the client. So, how do you get data from […]

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
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
Javascript jQuery Plugins Programming

jQuery TagBox Plugin

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

Categories
Featured Javascript Programming

jQuery MegaMenu 2

An updated jQuery based MegaMenu plugin.
Demo: Click Here
Download: Click Here
Project Repository: Click Here

Categories
Featured Javascript Programming

jQuery Sliding Menu (AKA Lavalamp Menu)

jquery-sliding-menuFinally, I am back after a long time with a refreshing new jQuery plugin to make your Web Page menus look better. Its the jQuery Sliding Menu.
Demo: Click Here
Download: Click Here
Project Repository: Click Here

Categories
Javascript Programming

Update for jQuery Live Form Validation Plugin

jquery-form-validate-advanced-demoAn update of the jQuery Live form validation plugin is here with an important feature addition.
Advanced Demo: Click Here
Download: Click Here

Categories
Javascript Programming

jQuery Live Form Validation Version 1.1

jquery-form-validate-advanced-demoA new release of the jQuery Live form validation plugin is here with new features.
Advanced Demo: Click Here
Download: Click Here