Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

woocommerce- remove orderby dropdown for products

Hello again, In this tutorial I will guide you to remove or edit the orderby dropdown for products, so if you have any such requirement follow the below code. If you want completely remove the drop down and ordering options, add below single ...

How to add Table in HTML Editor with JavaScript

Hello all, While working with HTML Editor, we wanted to add a functionality by which user can create table inside the HTML Editor by just clicking the button. We added this functionality by following these steps : 1.Firstly when user cli...

Simple Parallax Effect with smooth scrolling Jquery

Hello reader's, Below is the example for Simple Parallax Effect with smooth scrolling Jquery If you having trouble with such issues, the use the below code. Here is the HTML of Scroll trigger <div class="carousel-indicators"> ...

How to find a record anywhere in SQL Database

Find value in all tables in a Database Some times we know the value which is in our database, but we don't know the Database architecture and mapping with our code base. So if i want to know that where a particular value store, we can use belo...

How to upload two separate files in php

Hi if you want to upload two separate files from one single form to be uploaded and with a for simplest code Look at mine code. The form will have two separate input files but you need to name them common, ex 'files[]' I'm using 'upload[]' in ...

Basics of LINQ To XML

Getting Started With LINQ To XML:     Before starting with LINQ To XML,I am assuming that we all are familiar with the LINQ basics, incase if someone has no idea about it, he can visit the following url of my previous blog ...

0 width html character

0 width html character The 0 width charcter (&#8203;) is displayed on database as "". Even if we do replace or index of , we wont be able to see this character. This can be seen if you paste it in notepad++. To Handle this : privat...

Android dialog with Action Bar using Tool Bar

Android Toolbar widget is the new UI android components available in AppCompt v21. It works just like action bar. It can be used as action bar in a dialog with support from API 7 onwards . This tutorial helps to create a toolbar in android dialog...

How to unlink the selected link in HTMLEditor

Hello all, While working with HTML Editor, we wanted to give a functionality to user where He/She can selected a link inside the HTML Editor and he can Unlink it. To do this, we have this block of code.: var current = window.getselection...

Application is getting stuck when changing numbered or bulleted list.

Hello all, While working with HTML Editor I faced an issues that, Application was getting stuck when changing elements with contenteditable="false" to numbered or bulleted list. To change a multiline into numbered or bulleted list, we gene...

How to avoid horizontal scroll in HTML editor

Hello all, working with HTML Editor, i came across to situation where we getting a horizontal scroll bar when we enter data in the numbered list line having width higher than the Editable Div. To solve this issue we have this block of code....

Custom Checkbox Button

Hello Guys This article will guide you To Create Custom Check box by using simple HTML and CSS. Here is the demo of custom check box Here is the HTML <input type="checkbox" id="1"><label for="1"><span></span&g...

How to bind a service with android components .

Sometimes when we are working with service then we want the service to communicate with android components like activity.We need to accomplish this task to bind service to an activity.This type of service called android bound service.Once servic...

Jquery Chaining

Jquery Chaining:     Till now we know that Jquery statements are executed line by line i.e one line after the another, but there is a technique that allows executing multiple Jquery commands in a single line just one after ...

Functional Testing

Functional Testing: Functional testing is mainly used to verify that a S/W application validate and functions perfectly corresponding to design specifications.Functional testing is used to check the application functions menu functions, text i...

Jquery Form Validation in Asp.Net

Jquery Form Validation in Asp.Net:     For form validation first we have to design a form in HTML. Example: <form id="form1" runat="server"> <table border="0" cellpadding="0" cellspacing="0"> <tr&...

How to remove url from Google

Hi, If your old page url that are currently not available is showing up in Google search result page and you don't want them to come up in search result page means you want to remove them form search result page/Google for this you have to perfo...

Sticky positioning using pure css

Hi all, Sticky is a new attribute of position property. It is work like relative but it does not effect to any other element or parent element. It decrease your script code you can say, It work like a magic :) Below is some example which sh...

Add or Remove Class by Using Jquery

Hello Guys The below example will guide you to add or remove class by using jquery. So if you are stuck in such case follow the below code. Here is the HTML Code <nav> <ul> <li><a href="javascript:v...

Basics of LINQ To SQL

Getting started with LINQ To SQL:     When we say LINQ To SQL, it refers to the technology through which we can access Database via LINQ. This has replaced the traditional way of writing SQL Query for Database access, even ...

Basic Authentication with Apache

Sometimes we have some sensitive information on our website or an information which is intended for only a small group of people, we need a way to authenticate the users visiting that particular information. Authentication is any process by whic...

File Handling with JFile component in Joomla

JFile is the default library class for handling files upload, copy & delete functions. This can also be used to get the file name, extension and renaming a file while uploading. Following are the details of functions available that can...

Install KDE Plasma 5.2 alongside Unity in Ubuntu 14.04

KDE is considered to be one of the most configurable desktop workspace for Linux. If you want to install KDE on Ubuntu 14.04 alongside Ubuntu, you can by typing just one command. Open your terminal and type : sudo apt-get install kubuntu-d...

How to hash password in laravel

Laravel provide Bcrypt hashing for store a secure password by using keyword Bcrypt we can hash our password $password = bcrypt('secret'); we can use this also $password = Hash::make('secret'); we can use these two hashing metho...

How to fetch maximum and minimum value of a column in laravel

In this example, I have a user's table & I want to get the user who have maximum and minimum amount. For that I used the following code $price = DB::table('users')->max('amount'); $price = DB::table('users')->min('amount'); A...

Drupal Queue Api

I have been using Views Bulk Operations (VBO) module from long time. I always found an option appear in list after enabling the module Enqueue the operation instead of executing it directly , this make me appealing to learn more about Drupal Q...

MySQL Storage Engines

MySQL comes with a variety of storage engines. Each and every storage engine has some particular behavior and traits. It is very much important to know about these engines in order to create a well designed database. MySQL stores each database(a...

jQuery Filtering

jQuery Filtering:     When we have to select a specific element out of various given elements filtering is required.   In Jquery there are some filtering methods divided into two groups: 1. Methods that s...

config.xml file in PhoneGap

Hello Today we will discuss in details about the config.xml file in PhoneGap The config.xml file allows developers to specify metadata about their application. To load the config.xml file correctly it should be at the top level of the appl...

Top 10 Drupal plugins/modules one should know

Hi today I would like to share 10 most frequently used module in Drupal. Though Drupal have thousands of contributed modules. But there are always some good modules one should install when do a fresh installation as these would always help you...

Get all running/sleeping processes in database

Hi All, Some times we need to know the all running/sleeping process in database. We can use the below code:-- SELECT 'These processes are using database' AS Note ,[Database]=DB_NAME(dbid), spid, last_batch, status, hostname, loginame FRO...

LINQ Basics

GETTING STARTED WITH LINQ:     As data plays a vital role in almost every application development therefore LINQ was provided as a whole new way to manipulate data, either to or from database, or with XML file or with simpl...

Get the List of all tables using foreign key

Hello All, Many time, We want to know that, What are all the tables who have referenced a column as a "foreign key" which is a "Primary Key" of other table. Example:-- In a database I have one Company table which stores company information...

Adding jQuery To DotNetNuke Skin or Custom Module

While parsing the skin from HTML file that has been developed by HTML developer. There are many unknown issues occurs. For example- Sub-Menu does not show under Main menu. Slider does not rotate in Homepage. Layout is malformed. Works fin...

Architechture of Katana

Architechture of Katana based application: There are four layers of Katana based applications: Application layer- Application layer is the client. e.g. your website built in Asp.net MVC , or console or windows application. This is used...

Hosting a Custom Host Console Application with Owin/Katana

OWIN and KATANA Imagine that you are writing a framework to web developers, a framework like asp.net MVC. One decision you have to make is this, how you are going to interact with infrastructure behind you which is a Web server. That's the pro...

What is AQuery or Android Query ?

Do you want to make your code easy ? Are you looking for library that have powerful HTTP requests ? Do you want to do lots of things in a single line ? etc etc..... There is only a single solution for all these problems i.e AQuery or A...

How to Implement WebView in Android Based PhoneGap Application

Hello Today we would discuss about Embedding Webview in Andorid based PhoneGap Application: Before starting let us have a formal introduction about the Webview: It is a View that displays web pages. It is a class through which we can di...

Requirements Traceability Matrix (RTM)

What is Requirements Traceability Matrix (RTM) ? Requirements Traceability Matrix (RTM) is a right way of documenting to keep, all the requirements which was proposed by the client or developer team, with there traceability at the conclusion o...

How to resolve the conflict between Jquery and JavaScript framework

jQuery-noConflict():     In order to resolve the conflict between Jquery & any other JavaScript framework that also use the '$' sign as a shortcut the jQuery team implemented a method called the noConflict() met...

Most Popular Bug Tracking Software to Ease Your Defect Management Process

Defect Management Process: As a software tester or a QA engineer every minute you must be thinking to find a defect or a bug in an application. We are Software testers in other words defect finders. Defect/Bug/Issue/Fault/Failure/Incident wh...

Login a user using Parse API

In ParseUser class there is method with name "logInInBackground" which provides a login API to ther user. This method contains three parameter "username", "password" and "LogInCallback" interface. ParseUser.logInInBackground("username", "pa...

Restore Directly from a Snapshot

As explained on post how to archive a snapshot, Now to restore a backup without writing to a compressed gz file from created archive, use the following sequence of commands: umount /dev/vg0/snap_db-01 lvcreate --size 1G --name mdb-new vg0 dd...

Restore a Snapshot

As explained on post how to archive a snapshot, Now to restore a snapshot from created archive, use the following sequence of commands: lvcreate --size 1G --name mdb-new vg0 gzip -d -c snap_db-01.gz | dd of=/dev/vg0/mdb-new mount /dev/vg0/md...

iPhone orientation doesn't work in iOS 6 using config file with Phonegap Build

Solution 1: By adding UISupportedInterfaceOrientations platroms/ios/{ProjectName}/{ProjectName-info.plist add these lines: For Iphone: <key>UISupportedInterfaceOrientations</key> ...

Archive a Snapshot in MongoDB

To archive a snapshot first you need to create a mongoDB snapshot, The same is discussed on post Creating a mongDB snapshot with LVM. Now mount the created snapshot and copy this to separated storage volume. Or you can create a block level copy o...

How to use WebSql to store data in Phongap App

Hello Today I am going to discuss about the use of WebSql in Phonegap. In Phonegap, if you want to store data locally on device, Web SQL can be used. Most of the sql queries can be performed in Web sql using method openDatabase that takes 4 ...

How to improve SQL database design and performance

In this era of software development technology, the main concern in development should be the best performance. As we already aware that database is the backbone of any software. So whilst designing the database we need to keep a few things in mi...

Creating a mongDB snapshot with LVM

Snapshot can be represented by creating pointers (equivalent to hard links ) between special snapshot volume and live data. The snapshot process uses a copy-on-write strategy. As a result the snapshot only stores modified data. The primary pu...

Register a user using Parse.com

As we already know that Parse.com provides a schema-less database. It provides a complete backed solution for mobile applications. In order to register a user with parse, we use ParseUser class. It is a specialized class that automatically hand...
1 231 269
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: