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

AngularJs : Creating multiple ng-app in single page

Creating multiple ng-app in single page   Consider a program with multiple ng-app in html page :-   <!DOCTYPE html> <html> <head> <title>In a page only one ng-app works</title> ...

How to Write Well Researched Marketing Content for your Website

  Consumers are smarter than ever and will not rely on half-baked marketing content. This is why business owners should not stop at mere delivery but strive for high-quality content. This applies to businesses of every economic sector...

Call stylesheet only at a particular page in Drupal 8

In Drupal 8, if we are required to add some Stylesheets or JavaScripts in a particular page then to achieve the goal we need THEME.info.yml and THEME.libraries.yml file of our theme.   Lets see how can we achieve it.   In th...

Extension Methods in C#

Extension Methods in C#   Extension Methods were introduced in c# 3.0. These methods are helpful in adding methods to the types which already existed i.e without creating a derived type via inheritance, methods can be added to existing...

Android Shared Preferences - Video Tutorial

In this Android Video Tutorial, I have explained The Shared Preference. You’re going to experience the power of Shared Preference in action and learn: The purpose of a Shared Preference  The components that make up a Sh...

Moving between pages in Windows Phone 8.1

While learning Windows Phone development you might want to try your skills in creating some cool apps. Most probably some of those apps requires you to create multiple pages in your application, which needs you to have some idea about navigation ...

Facebook Implements Dynamic Advertisements for Mobile Application Installations

Facebook on Thursday published the debut of dynamic ads for mobile application installations. The Social Networking Service Giant has emphasized the analysis of Gartner indicating that mobile phones sales were atleast 10% more in the 4th qu...

Defining *.info.yml files in Drupal 8 theming

Drupal 8 has come up with flexible and easier manners of theming from its previous versions. In Drupal 8 theme the first requirement is .info.yml file which contains the meta-data of theme. This file must be present in your theme folder bec...

Discussion on download file from ftp using curl

Hi Reader's, Welcome to FindNerd, today we are going to discuss on download file from FTP using curl. If you want to download files from FTP using curl then you have to follow below code. Suppose you want to download  "file...

How to share image that was loaded from a remote url?

Hello Nerds, This tutorial is for forwarding/sharing image from one application to other which was loaded from a remote url. Assuming that you have loaded an image from remote url and displayed it in your ImageView. The basic procedure is by taki...

Layout controls in Windows Phone 8.1

Layout controls are those controls which contain and position child controls on the screen. In other words we can say that such controls behave as layout container in our application. Whenever we need to achieve a certain level of complexity in t...

Defining CSS and JavaScript files in Libraries in Drupal 8.

Drupal 8 has come up with many significant improvement in theming, which makes theming flexible and easier. The theming in drupal 8 follows the SMACSS categorization. The scripts, stylesheets and the dependencies are defined in the Libraries in ...

Best PHP 7 Tutorials For Complete Beginners

  As the last official release of php was PHP 5. The community decided to skip the official release for PHP 6 and after a decade they decided to launch the official version as PHP7.   PHP 7 has been praised to be the best e...

ComboBox Control in Windows Phone 8.1

In the following article we are going to see the usage of ComboBox control in Windows Phone 8.1. ComboBox represents a combination of non-editable text box and a drop-down list box that allows users to select an item from a list.   Let...

Android Image Loading Libraries Video Tutorial

In this Android Video Tutorial I am guiding about four different libraries for loading images using URL: Universal Image Loader Picasso Glide Fresco Along with I am explaining their description, performance and implemen...

Drupal 8 Theme folder structure

In D8, location of theme moved to /themes, while the core themes moved to /core/themes, not sites/all/theme like Drupal 7. The basic theme structure of D8 Will have sub folder for images,css, js & templates.   This is how the direc...

4 Easy Steps to Setting up Angular2 Application Development Environment

In this tutorial we will learn how to set up develpment environment for Angular 2. TypeScript is a main language for developing applications in Angular. TypeScript is super set for all ECMAScripts and javascript. Setting up the development e...

Code-First Stored Procedure Entity Framework 6.0

Code-First Stored Procedure Entity Framework 6.0   This blog shows configuration of code first making use of stored procedure for the entities. For usage of stored procedure, the OnModelCreating method of DBContext should be overriden,...

Show More and Less content using javascript

Whenever we want to hide/show a particular content on our web page, we use show and hide functionality of javascript.  HTML code: <div> <p> This is my Blog </p> <p id="content"> <!-- This i...

Getting started with Hello World App in Windows Phone 8.1

So friends you are thinking to start with Windows Phone App development, but can't decide where to start from. No worries, let's get started with a simple application to give you some familiarity with the Windows Phone development environ...

5+1 SuperTips to Start Successful Freelancing Business in 2017

Do you find yourself stuck in the office cubicle, thinking about leaving your unsatisfying 9 to 5 job and starting a full-time freelance business? If you have the skill which someone is ready to pay for, freelance work online can turn up to becom...

Discussion on set up cron in Ubuntu

Hi Reader's, Welcome to FindNerd, today we are going to discuss on set up cron in Ubuntu. Sometimes, it is needed to set Cron jobs in a web application for sending push notification on a particular action and to send notify message to sta...

Android SQLite Database Video Tutorial

What is SQLite? SQLite is a opensource SQL database that stores data to a text file on a device. Android comes in with built in SQLite database implementation. It is RDBMS, no connection establishment is required like JDBC and ODBC Ligh...

How to retrieve data from multiple select box in Slim framework

Retrieve data from multiple select box in Slim framework Hello friends, welcome to findnerd. Today I am going to tell you how to fetch data in array from multiple select box in Slim framework. Follow the steps below:   Step 1: Lets ...

Introduction to Fresco image loading library for Android Application

Hello Nerds, Are you still facing lazy image loading or OutOfMemoryException using Universal image loader, Picasso, Glide or any other library? If Yes, then this tutorial will be very helpful for you. Fresco image loading library provides quick l...

SQL SERVER Case Sensitive SQL Query Search using Collate

SQL SERVER – Case Sensitive SQL query search using Collate   SQL SERVER is not case sensitive therefore there are scenarios in which SQL query search may provide same result for various inputs which only differ with respect to ...

Activity state transition when going from Activity A to B.

Hi we know that life cycle methods of a activity are onCreate() - onStart() - onResume() - onPause() - onStop() - onDestroy(). but what will be the transition of these life cycle methods when going from Activity A to B, below is the example to...

Upload multiple images/doc/pdf/zip using jQuery Ajax in Cakephp 3

Upload multiple images using jQuery Ajax / Drag & Drop Images   Hello friends, welcome to findnerd. Today I am going to tell you how to upload multiple images using jQuery and Ajax in Cakephp 3. You can also drag and drop images an...

How to set up Wireless Network Connection in Windows

We are all aware of the benefits of home wireless networks and the many ways we can use them. For that reason we have decided to write this article and try to explain how you can set up a wireless network connection in Windows. Things you need...

View Without Controller Action in ASP.NET MVC

View Without Controller Action in ASP.NET MVC   In MVC, the request from browser actually comes in the form of "controllername/actionname" where the request is actually directed to actionname in the controller which then...

How hashMap internally works in java ?

It’s not wrong to say that HashMap is an implementation of Map interface as it allows value storing in key value pairs. Although unique elements are present in Hashmap, null values and only one null key are allowed. Hashmap basically wor...

Discussion on install and setup GitHub on Ubuntu

Hi Reader's, Welcome to FindNerd, today we are going to discuss on install and setup GitHub on Ubuntu. If you want to install git and setup GitHub on Ubuntu, Then firstly you have to update apt-get. You can follow below command $ ...

Learning about ES6 map object and its methods

Map object in ECMAScript 6 is an ordered list of key/value. Any value either objects or primitive values may be used as either a key or a value.A key 7 is identified as different from “7”. There are more methods mentioned below: 1-...

ASP.NET MVC : Form Submission using Enter Key via jQuery

ASP.NET MVC : Submit Form using Enter Key   Sometimes there is a scenario or requirement of posting the form on pressing the "Enter" key in asp.net mvc. This functionality can be achieved via jQuery in MVC.   Creat...

Tech Predictions for year 2017 and beyond

Predicting the future is easier said than done, yet it’s an interesting exercise to research and look for information that could hint what might be the hot tech advances impacting the tech industry and our personal lives. As we step in the ...

Is Operator In C#

This operator is used to check if an object is compatible with a given type. It returns true if caste succeeds and returns false if the caste fails. This operator is ideal to use when we are not interested in resulting variable and just intereste...

Configuring gmail in Cakephp 3

Configuring gmail in Cakephp 3.x Hello friends, welcome to findnerd. Today I am going to tell you how to configure gmail in cakephp 3.x. First of all you need to load the class for email in Controller:   use Cake\Mailer\Email; ...

Remote Validation in ASP.NET MVC

Remote Validation in ASP.NET MVC   Remote Validation is similar to an ajax call used for validating the user's input. The main purpose of remote validation is execution of back end query without performing a full server postba...

Fingerprint scanner

Hello guys wellcome to the tutorial of fingerprint scanner,   This is a simple tutorial through which you could implement one touch login to your application. Following are the steps to implement it.   Step 1. Add p...

Multilingual in Cakephp 2.0

Hello Readers, Hope you are doing good today. Today we will discuss multilingual functionality on the website. The main question is that Why You Need A Multilingual Website For Your Business? Nowadays you see, times are changing with the gr...

Identity Theft As The Leading Crime And How To Avoid It

According to a complete report, the idea of identity theft is going to surpass the traditional style of theft. It is the leading type of theft that is growing at a very faster rate. There are various types of reasons behind the same. People are c...

Discussion on display error messages from mysql response in Cakephp 2.5.6

Hi Reader's, Welcome to FindNerd, today we are going to discuss on display error messages from mysql response in Cakephp 2.5.6 . Sometime you need show sql error messages to users when you get duplicate entries from database. Suppose you ...

Video Tutorial-How to make network calls using retrofit in Android?

Hello everyone, This Android Video Tutorial will guide you about How you can make network calls using retrofit in Android?   For any queries feel Free to post in comment section.

Implementing Custom ListView in Android App via BaseAdapter-Video Tutorial

This "Android ListView Video Tutorial" describes how to implement custom listview in an android application using BaseAdapter. Android ListView is a view which groups several items and displays them in the vertical scrollable list. &...

Calling Web API from MVC Controller in ASP.NET

Calling Web API from MVC Controller in ASP.NET   This blog defines calling of web api from mvc layer project. The following steps are to be followed :-   Step 1 : Create an empty solution in visual studio 2015. From file men...

Project Management Skills, Methodology & Development Process to Follow by Managers

Project management is an important task in which project managers are responsible for managing and delivering the project on time, under budget. In simple term, it is the art of getting something done ahead of deadline, up to quality standard...

Notify Changes Using INotifyPropertyChanged Interface In WPF MVVM

While studying MVVM architectural pattern in WPF you might have come across INotifyPropertyChanged interface and wondered the need of using it. Following MVVM architectural pattern in WPF application, we used binding to access data in the view an...

Internationalization in Cakephp 3.x

Internationalization in Cakephp 3.x Hello friends, welcome to findnerd. Today I am going to tell you how to implement Internationalization in Cakephp 3. It is similar to multilingual. In my previous blog I have mentioned how to develop mu...

Show password using jQuery

It shows  the password in plain text and help user to check whether password entered is correct or not. Basically   it Reveals the hidden passwords in the form of characters and numbers and provide convenience for checking your password...

5 Lessons to Learn from Failed Startups

  “Learn from your mistakes.” It’s a good adage to live by, but as an entrepreneur, you don’t want to think about the possibility of failure. Unfortunately, starting a company is a risky proposition, and if you...
1 42 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: