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

Only 5 Ways to Protect Business Start-Ups for Entrepreneurs

One brilliant idea can become a billion dollar enterprise. There is a handful of small scale business that became a worldwide sensation changing the way we live our lives. Take Uber, for example, a lot of the people now-a-days prefer the conv...

World's Top 12 Automatic Invoicing Apps for Business Entrepreneurs to Use

Managers can belong to any industry or managerial level but their core responsibilities remain the same. They are leaders entrusted to develop their team members, manag...

Showing Contact Details From Windows Phone 8.1 using C#

Open Visual Studio and select Windows Phone from Visual C# templates. From the available project types, select "Blank App(Windows Phone)" and click OK.   Creating a Model Right click on project and add a new class file Pho...

Create PDF from HTML using JSPDF

Hello friends, welcome to findnerd. Today I am going to tell you how to create PDF from HTML using JSPDF.  In this blog I am going to use fromHTML plugin to convert html page into pdf.   Copy and paste the following code into your fi...

Quantifier Operators in Linq

The quantifier operators  analyse a collection of items on some condition and  return a boolean value if any or all the items in collection satisfy a condition.   In linq, We have three types of Quantifier Operators:- 1. All...

7 Amazing Marketing Automation Tools to Help You Grow Your Business

If you haven’t made the switch yet, it’s time to start automating everything you can automate. Even tasks like marketing can be handled by great software that will handle the bulk of the hard work for you. By placing the burden on t...

Custom module to Insert, Update and Delete and also Sorting with pagination

Hello Drupal 8 guys, I am sharing a custom module which function is to collect a developer data and show list of that data with header sorting and pagination and also used form validation. If Anybody wants to use this module just download the ...

Grouping Operators in Linq

Grouping operators generates a categories or groups of an item on the basis of given key. These type of operators implements IEnumerable collection of type IGrouping<Key, SourceItem> where Key is a key value, on the basis of which grouping ...

Consuming Web API in a Windows Phone 8.1 application

Open Visual Studio and select Windows Phone from Visual C# templates. From the available project types, select "Blank App(Windows Phone)" and click OK. To consume a Web API in windows phone application, first we need a working API. Than...

Realm for Android - Video Tutorial

In this Android Video Tutorial, I have explained the basics of Realm. Realm is a mobile database and a good substitute for SQLite (Android). Realm store data in a universal, table-based format. In this tutorial, I have explained how to install Re...

How to Add Multiple Image to PDF Using JSPDF Javascript Code

This is a basic how-to tutorial on adding single or multiple images to PDF using JSPDF framework. JSPDF framework is a framework which helps to convert an html document into PDF format. To achieve this, we need to first download JSPDF f...

Email Password Validation

Hello Coders, It’s always a need to validate email at user end. Not only this but strong password is also suggested to secure accounts. Here are snippets to validate if correct email and strong password are entered or not.   ...

Top 3 Effects Caused by Latest Mobile Technologies

Ninety-one percent of adults and 60 percent of young people guarantee this device that has modified correspondence in the 21st century — the cell phone. Despite whether you guarantee an Android, an iPhone, a Blackberry, or a fundamental fli...

How to iterate over elements of ArrayList in java

In this blog we will learn how to iterate over the elements of a collection (here we considered ArrayList) using generics and without generics. First we will go through the process of using iterator method. Iterator() method is included by eve...

Setting up enviornment for Angular 2 project in Visual Studio

Ever wondered how to start with setting up environment for a simple Angular 2 project, here are following steps that you may follow to get it done easily. Open Visual Studio and create a new ASP.NET Empty Web Site. Provide it with a locat...

Dictionary to JSON String

We often come across a condition where JSON string is to be sent to server. for example parameters like username & password is to be posted as JSON String for validating credentials from server. Best practice is to create an extension of N...

5 Factors to Look Before Choosing Right Event Management Software

  Often in life we face the problems for making right decisions. In choosing right event management platform is one of them. Here is a checklist which helps you to decide which factors to be considered while choosing the right one for...

08 Solid Tips for Effective Freelance Marketing

  Marketing is like an oxygen for your freelance business, vital for its existence. Without proper marketing and promotion, your freelance career will gradually die. Freelancers often feel they lack marketing and self-promoting skills...

Rescale UImage to New Size

We may be using image sets where few images are pretty big or small in size(say big 500X500 for instance). And if you want to resize the image to your desired size then it’s easiest by creating an extension of UIImage that will draw the ima...

Integrate theme in Cakephp 3.x

Theme in Cakephp 3.x Hello friends welcome to findnerd. Today I am going to tell you how to install / create theme in Cakephp 3. Before starting with theme, let us understand what is a theme and why it is used in Cakephp. Themes are used on we...

Top 4 Leadership TED Talks for Entrepreneurs

  Leadership is an important skill in the workplace as well as our everyday lives. Organizations need leaders to to set a clear goals and then motivate and inspire employees to reach those accomplishments. TED talks help build leaders...

Instantiating and Manipulating ArrayList in Java

In this blog we will learn about ArrayList. ArrayList is one of the collection class of collection framework. It is a way of storing elements dynamically in an array. It implements the List interface and extends the AbstractList class. Important ...

Draw Line And Circle with Animation

CoreAnimation has provided various animation APIs that can be used to accomplish the animation needs. Using UIBeizierPath and CoreAnimation APIs here I’m drawing a line and a circle using CAShapeLayer. //Below is the function to d...

Top 9 Factors to Consider Before Outsourcing PHP Web Development Work

Websites are important for being able to conduct online business and do online marketing. A website needs to be created and designed keeping in mind the targeted audiences and their unique requirements. If the content fails and design is not ...

4 Huge Entrepreneurship Obstacles in Developing 7 Figure Business

(Image: pexels.com)   The decision to start a business is not and should not be an easy one. Being a business owner brings a lot of benefits, but, at the same time, a lot of responsibility. Before putting your money on the line you...

Enable mod_rewrite on Ubuntu 16.04

How to enable mod_rewrite on Ubuntu 16.04 Hello friends welcome to findnerd. Today I am going to tell you how to enable mode_rewrite on Ubuntu 16.04. With activating mod_rewrite you will be able to manage URL rewrites. URL rewriting is done to...

Collection Framework and Interface in Java

In java “Collections” helps us to store and manipulate the collection of objects. All the operations such as manipulation, deletion, searching, sorting, insertion can be performed quickly with the help of “Collections”. Ja...

Top 8 Guerrilla Marketing Strategies to Follow for Attracting Customers Offline

Image Credit : Wordstream   Gaining customers and retaining converted customers is not easy in this competitive environment now a days, that is why marketing professional working with big and small business organizations are now us...

iOS iMessage emoji Animated Stickers Pack Application for iPhones - Apple

  iOS provides a richer way to express feelings via iMessages using various stickers. And most interestingly these stickers are not limited, one can build their own stickers too and submit it to iTunes stores like other apps. Here I&...

Access levels in Swift

Access control is used to define accessibility of a class or data members and functions of a class. We can set scope of a member so that it is visible only in the class in which it is defined or in subclasses or in the module or everywhere. &n...

How to show HTML text on UILabel?

To show HTML text on UILabel we need to convert the text to NSAttributedString. To achieve this we can use following code: if let htmlData = htmlString.data(using: String.Encoding.utf16, allowLossyConversion: false) { if...

4 Apps That Can Make Managing Money for College Students Easy

You have recently joined college and suddenly you are facing challenges from paying bills, rents and other needs. Managing and keep a track of your finances can be really a challenging task. These 4 apps listed below will prove beneficial for eve...

Dependency injection use in java or android

We know that there are lots of design patterns uses in Android during development like factory pattern, abstract factory pattern or singleton pattern etc so that object can be handle easily, Dependency injection is also a design pattern. We kn...

5 Business Apps for the Modern Entrepreneur to Enhance Productivity

  Entrepreneurs are fully engrossing themselves in the digital age. They are no longer tied down to a desktop computer or a wired telephone. Entrepreneurs are on the move with the help of mobile apps as they provide tools for producti...

ASP.NET MVC : Parse XML Documents by XMLDocument and XDocument

Parse XML Documents by XMLDocument and XDocument   It is not a common practice to directly work on xml documents. In ASP.NET MVC whenever there is raw XML document available,to use them parsing is required. For parsing XML documen...

How to get current location of an android device using Google Location Sevices API.

The Google Location Services API, part of Google Play services, is the preferred way to add location-awareness to an android app. Follow the below steps to get current position of an android device. 1. To use the location manager make the G...

What no one tells you about 2017 Microsoft Windows 10 Creators Update

After the success of the Game Mode, Microsoft gears up for the Windows 10 Creators Update   Windows 10 is a lot more different than the yesteryear Windows. It behaves like a breathing entity -- the one that frequently changes with the ...

Top 3 Steps to Write Better Search Ads for Lead Conversion

  Setting up a search ad means much more than choosing ad groups and keywords. In order for your ad copy to be effectively written, you must remember that its main goal is to sell products or services. Therefore, an ad must be perfect...

Laravel 5.4 - Future Development Changes and New Features Release Notes

Due to the regular advancement in technologies and trends, we have seen gradual updates in popular web and mobile technologies. So, here we are going to discuss new development changes that have been released in Laravel 5.4.  As we all k...

Top 10 SEO and Content Apps That Are Vital For Bloggers & Marketers

    Synopsis: If you think blogging is easy, you have to think again. Blogging is a process that involves coming up with good topics to write about and optimizing your content, among others. But with the help of some tools, blog...

Android AsyncTask Video Tutorial with Example

This Video Tutorial is on Android AsyncTask. AsyncTask is an abstract class in which implementation is hidden and only functioning is visible to user. This class allows us to perform long/background operations and generates its result on the main...

Latest Web Design Trends for Developers in 2017 With Staying Power

  Designing a memorable website means two things – it is aesthetically engaging and appealing, and it is wonderfully usable. As designers have access to ever-evolving technology, their options widen, and they experiment with new...

7 Social Media Marketing Trends in 2017 for Business Growth

  How will you be marketing on social media in 2017? If the answer does not include any of the 7 options we are about to list, then you need to get started on a new plan – and fast. The quickest adopters of these ideas will see ...

An Ultimate Guide to Scaling Freelance Business in 2017

According to Innovation, Science and Economic Development Canada’s June 2016 report, the Canadian economy has totaled 1.17 million employer businesses out of which 1.14 million (97.9 percent) were small sized businesses, 21415 (1.8 percent)...

How to Enable Twig debugging options in Drupal 8

In this tutorial, I am going to show you how to Enable Twig debugging options in Drupal 8.   To enable twig debugging 1. Go to sites/default/services.yml file 2. Look for services.yml  if it doesn't exist then copy it & ...

Impact & Benefits of Blogs and Wikis in the Business World

  We use words like blogs and wikis very often, yet we rarely take the time to examine them on a deeper level. Over a period of time, many of these terms have started to deviate from their real meaning primarily because people decided...

8 Pieces of Advice How To Write Catchy and User Generating Content for Your Blog

As a content creator, you have a choice. Either you create content that is great, or you waste your time. Seriously, that is your choice. I know it sounds harsh, but sometimes we need a bit of tough love, otherwise you are going to keep mak...

Four Obstacles Every Entrepreneur Must Overcome for Business Success

  Whether you are making your side business a full-time experience, or contemplating the start of something new, choosing entrepreneurship is a risk. According to a report, two-thirds of businesses survive two years, half of all busin...

Thread and instantiating thread in java

In this blog we will learn about importance of Thread class in java and instantiating thread. Every java program consists at least one thread i.e. the main thread. The Java Virtual Machine always creates a main thread and calls the main method in...

SQL Server : Difference between @@IDENTITY, SCOPE_IDENTITY () and IDENT_CURRENT

Difference between @@IDENTITY, SCOPE_IDENTITY () and IDENT_CURRENT   @@IDENTITY   Syntax : SELECT @@IDENTITY   The keyword "@@IDENTITY" in current session is capable of returning newly inserted or last r...
1 41 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: