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

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...

Firebase With Facebook

Hello, Im building a web-app using react with Firebase as DB. my plan is to skip the Server writing and working with Firebase on the lowest level of security. I know its very unsecured that way but my priority is the client using React. im ...

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...

Is there any difference between 404 and Soft 404 Error? If Yes, Then Why They are Different?

I had often heard about Soft 404 error and bit confused why 404 error is called as Soft 404 error, so can anyone help me to know is their other 404 error too, if yes what is the

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...

Language & Web Framework Ensuring Backend Integration with e-Commerce Sites?

Which language & web app framework to code software to ensure integrability with backend of most number of consumer product e-commerce sites?

Appropriate Partitioning

Given an array A of integers, choose 2 non-empty disjoint subsets X and Y such that ratio of sum of elements of X and Y is as close to 1 as possible. Given, Α : {a1, a2, .... aN} Find, X : {x1, x2....xK} Y : {y1, y2.....yM} ...

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...

Your thoughts about Guerrilla Marketing!

I have heard Guerrilla Marketing is made for small businesses and doesn’t require a big budget. My new content marketing business needs social presence and media attention. Please share some great tips on successful execution of the guerril...

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...

Making a Bar Graph on Rstudio with markdown

So I am using this data on Rstudio with markdown, but it reads that there is an error on the top line: Can you tell me how to fix this chunk of code so that it properly displays a barplot with the data from the link given? ```{r} ADHD_data ...

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 ...

What are ATL, TTL & BTL Marketing Activities? How they are used for branding?

Dear Nerds, I want to understand about the ATL, TTL and BTL marketing activities and how can I utilize these activities for brand promotion and to reach out to the target customers. Besides, it would be great if anyone can explain...

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...

Add visuals to audio

I have an audio only presentation, I want a sycned visuals to be created in line with what is being said.

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 ...

How will Machine Learning and Artificial Intelligence impact the marketing in year 2017 and beyond?

Hello Friends! Can someone guide me about how Machine Learning and AI will impact the marketing in year 2017 and beyond?  

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...

Network provider and GPS provider working together, need to separate the both based on available providers

I am trying to develop an android application that gets the device latitude and longitude using GPS or Network providers, whichever is available for the process. The code works perfectly fine when the device's GPS is on but unfortunately it n...

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...

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> ...

Data Structure and Design for Java object model based on Aggregating Data?

Am working on a coding exercise which I am somewhat confused on how to implement a solution.  According to the JavaDoc, I have to implement this EmployeeManager interface. Presume that employee data arrives in a separate thread from ot...

Import modules

I downloaded a python package, and installed it using pip command in Windows PowerShell. I cut-pasted site-package folder to the PATH where python is installed. But still when I import the module in python shell, it says that the module is not fo...

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...

Converting a Webpage to RSS Feed

Is there any free service which can convert a webpage to RSS feed? I have used Page2RSS, but it is no longer there.

Looking for a mentor that is proficient in Python

I just started college and would like to know if someone is willing to be a mentor. I just started my freshman year at college and the teacher is starting to ask us to code already. I would like to meet someone that would be able to answer questi...

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...
1 51 292
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: