Sunday 19 June 2016

Facebook Graph API explorer Tool


Hi,
This is a short demo of how to use Facebook Graph API explorer tool. In order to use this feature you have to get registered with Facebook developer account. I have provide step and underneath an image example:
After Sign In to your developer account.
  • Go to Tools and Support.
  • Select Graph API Explorer
  • Select your app from there, if you don't have any previously created app then you need to create an app by clicking on My Apps and then Add a New App.

Here is not the end, Read full blog about Facebook Graph API explorer Tool visit Findnerd.

Read such more blogs at Findnerd.

Monday 9 May 2016

What is User Exit and how to add User Exit in MDM Hub?


User Exit is a customize java code, that will help you to manipulate with the data before referring it as GOLDEN.
There are many class provided by Informatica for User Exit such as postLoadUserExit, postMatchUserExit etc.

Example: Suppose I have a business requirement to merge my record according to survivorship rules. Let say, I have a column name Amount, and I want to pick the highest value in the group of matched record for Amount. I can accomplished this task using post merge user exit.

How to add a UE in MDM Hub.

Step 1: Create your UE using Eclipse IDE.
Step 2: Export you java code into a jar file.
145095806788.JPG

Thursday 21 April 2016

Exception Notifications via email in Rails


ruby_on_rails-svg.png

Hi Friends,
Let's first discuss about debugging a code. During development, suppose you have pushed some changes, then you need to test each and every functionality to check whether your code breaks or not, which is actually impossible. Suppose some part of your code is throwing exceptions, and you are not aware of that but the end user is facing issues because of that. So it is better to have a solution that automatically sends notifications to the developers and admin's whenever an exception comes in the code.
In rails we have a beautiful gem exception_notification that does the work for us. The documentation of the gem can be found at Exception Notifier in Rails.
Here I am explaining how to set up this in your application.
Step 1: Add the gem to your Gemfile.
  1.    gem 'exception_notification'
Step 2: Run the bundle.
Read the full Blog about Exception Notifications via email in Rails at Findnerd.

Monday 18 April 2016

7 Strange Factors That Influence Online Conversions


4251.png
Don’t utilize periods in your headlines:-
Tests have shown that being grammatically right in your headlines and sub-features is not useful. Utilizing periods and commas really reduces the quantity of conversions. Finishing your headlines and sub-headers with a period can bring about the reader to quit perusing and proceed onward to something else entirely.

Include a telephone number-even the fact that they won't call it:-
Having a valid telephone number on your website gives potential clients a feeling of trust. Realizing that, if they needed to, they could connect and speak a live individual does a great deal to impact a person’s choice about purchasing an product online. Very few people will really call the number, however just seeing it there on your site manufactures their confidence.
Read full blog at our highly specific C, Java, PHP, Java, iPhone, Javascript Questions, Digital Marketing about the topic described above "7 Strange Factors That Influence Online Conversions". You can also learn much more about different programming technologies and can enhance your tech skills.


Friday 15 April 2016

Validate File Extension and Size Before Upload


image-file-formats.jpg
Here is the example to validate the file extension and size before upload. Regular expression has been used to validate the file extension. And to validate file size, we use size property of file input i.e., img.files[0].size. Onclick event of button, validate() function is being called. First, it checks for file extensions (jpg, jpeg, png, etc) and give error message for the files having other extensions. Then, it validates the file size by calculating the file size using img.files[0].size.
Example:
  1. <html>
  2. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
  3. <script type="text/javascript">
  4. function Validate()
  5. {
  6.    var image =document.getElementById("image").value;
  7.    if(image!='')
  8.    {

Read full blog at our highly specific C, Java, PHP, Java, iPhone, Javascript Questions, about the topic described above "Validate File Extension and size Before Upload". You can also learn much more about different programming technologies and can enhance your tech skills.

Wednesday 13 April 2016

How to Avoid shadowban or Account suspension on Reddit


reddit shadowban.png

After the launch in 2005, Reddit became the most popular name to drive traffic to your website/ blog. Reddit is also known as “The Front page of  Internet”. Reddit has a vast 36+ million user accounts and 231 million monthly visitors and huge 8.19 billion page views. Reddit has around 8,53,824 subreddit .
If you smartly use Reddit as a tool, your website can attract thousands of visitors, and in turn generate revenue for you.
It is very easy to post your own website content on Reddit, but preventing your account from getting shadowbanned or facing account suspension is a tough task. Frequently posting many links from your own favorite website will guarantee your account suspension or shadowban from a specific subreddit or from whole website.


Type of Bans on Reddit:
1. Subreddit Ban
2. Subreddit AutoModerator Ban
3. Shadowban

Also visit findnerd for exploring its various features like Project Manageent Tool, Desktop Recording Tool etc.


CSRF with Spring and AngularJS


csrf angularjs.jpg
In this blog, We will see how to configure CSRF protection and how to make AngularJS allowed to send information with a CSRF token to the server.

In AngularJS, $http service reads a token from a cookie which is named by default XSRF-TOKEN and sets it in HTTP header with name X-XSRF-TOKEN. Once it is configured, now spring running on server is supposed to insert token in cookie inside HTTP header. Now server can verify that the cookie matches X-XSRF-TOKEN HTTP header.
Let's see how it can be configured with Spring.

Step 1. Configure and enable CSRF.

Spring security comes with CSRF protection enabled. Please have a look of my previous blog.

Step 2. Configure Cookie in HTTP Header to enable CSRF for AngularJS

Here is the code below in your security configuration -
  1. http.csrf()
Read full Blog about CSRF with Spring and AngularJS at Findnerd.

Monday 11 April 2016

Difference between High Level and Low Level Testing & their advantages


Difference vs Advantages.jpg

Difference between High level testing and Low level testing:-

High Level Test Cases:- These test cases define the functionality of a software/product in a broader way without going into deep functionality. Like if we have to write high level test cases for login functionality we'll test that 'User should be able to login success full with valid credentials'.
Advantages :-Its advantage is that a tester is not bound to follow the test cases step by step and thus it gives a chance to explore more edge cases. This also increases the chance to find new bugs.
Disadvantages:- Its disadvantage is that its not sure that all scenarios are covered and its difficult for an inexperienced tester to work with these test cases. Read more about Difference between High Level and Low Level Testing & their advantages at Findnerd.

About Findnerd
FindNerd was started as a Q&A Portal and Knowledge Base for people of Evon Technologies. Gradually, we, at the company, made it more interactive and evolved it as a Collaboration Tool. It began to get exciting and next; we branched out and evolved it as a Project Management tool and Employee Productivity Management tool too. Soon, we realized that now when we have savoured the taste of the multi-functional platform, why not to present it to the world to use!
Read more about Findnerd here>> Findnerd-A Social Network for Developers

Laravel 5.0 Creating Download CSV Link


laravel-logo.jpeg
In Laravel, many times we may need to create a link to download sample CSV file. So that user can download sample CSV file from our website and upload correct formatted file.

It's a very simple task and to accomplish that we need to follow following simple steps.
Step 1 :- Creating a link to download sample CSV file in our view.
  1. {!! Html::link('admin/employee/sample-csv-download', 'Download Sample CSV', array("class" =>"btn btn-default", "style" => "")) !!}
Step 2:- Make a route configuration in your routes.php
For more You can read full Blog about Laravel 5.0 Creating Download CSV Link at Findnerd.

Thursday 7 April 2016

How Offering Sales Can Benefit Your Internet Business.


4268.png

There's an incredible technique online that can give you a sudden surge of requests immediately. Do you know what this method is? Well… I'm discussing the force of offering sales in your business. People love a decent deal – particularly in the event that they're love with the quality of your items/products.

I can recall when I was younger that significant retail stores would have some non-offering items out for sale outside of their store. These things costs were essentially reduced for the attempts of inspiring somebody to examine them and purchase. Also, trust it or not, this was a decent and fruitful technique/strategy.

I trust you can do likewise as well. It's very easy to take a considerable measure of non-selling things/items and pack them together to create 1 "super" product – all reduced to remove stock, and to profit from moderate offering things.


Wednesday 6 April 2016

Difference between AngularJS Expressions and JavaScript Expressions


AJS.jpg

Like JavaScript expressions, AngularJS expressions can contain literals, operators, and variables.
Unlike JavaScript expressions, AngularJS expressions can be written inside HTML.
AngularJS expressions do not support conditionals, loops, and exceptions, while JavaScript expressions do.
AngularJS expressions support filters, while JavaScript expressions do not.
Example:
  1. <!DOCTYPE html>
  2. <html>
Here is not the end.. To view the full blog about Difference between AngularJS Expressions and JavaScript Expressions visit Findnerd.

You can also ask questions over Findnerd such as Android, C, Javascript, Java,iOS developer forum etc and also  have a look for its various replenishing features like Desktop Recording Tool, Project Management Tool etc.

Tuesday 5 April 2016

Kanban view in Odoo-9


odoo.jpg

Kanban view defined as “A kanban view shows a set of cards possibly grouped in columns” it is important for odoo module to describe xml functionality. For example you can see below code which is use in .xml file.
  1.   <record model="ir.ui.view" id="view_openacad_session_kanban">
  2.       <field name="name">openacad.session.kanban</field>
  3.       <field name="model">openacademy.session</field>
  4.       <field name="arch" type="xml">
  5.           <kanban default_group_by="course_id">
  6.               <field name="color"/>
  7.               <templates>
  8.                   <t t-name="kanban-box">
  9.                       <div
Read full Blog about Kanban View in Odoo-9 at FindNerd.

Monday 4 April 2016

FindNerd Project Management Tool



Hello Technerds,Today we are going to introduce you with our Online Project Management Tool. By using this tool at http://FindNerd.com you can Collaborate with team and clients to monitor task, bugs, resources and sprints easily for Free.

Thursday 31 March 2016

Tips for Successful Project Completion


Project-Management.jpg
Project Management, a quite interesting stuff and full of challenges. However, everyone has different view in project management and ways for successful project completion.
Here I have jolted down few points for successful project completion :
  • Requirement Gathering should be done properly and all points should be covered keeping in pace the project scope & budget.
  • Make sure nothing is missing or outside scope.
  • Identify the Risk factor involved and develop a prototype or module if necessary.
  • After Requirement Gathering  Freezes, initial discussion should be held with Developers, Team Lead, QA & Testing Team, discuss the project scope and get inputs in the form of queries and doubts.
  • Raise a meeting or Skype call for overseas client, discuss the queries and sort it out.
  • Raise then Minutes Of Meeting (M.O.M) pointing the main discussion and ask for acknowledgment from stake holders and client
  • After approval proceed with database architecture and designing phase.
  • Make then project plan where each and every tasks are mentioned in the form of milestone with tentative dates of release.
Here is not the end.
To Read the full blog about Tips for Successful Project Completion please visit Findnerd.