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

SQL Joins and it's Uses

In SQL **joins** are used when we want to select data and information from two or more tables on the basis of some relationships between one or more columns in tables. SQL Joins are used to relate information in different tables. Thus,we ca...

To Make a Preloader Using HTML and CSS

Hello readers, If you want to make a preloader using HTML and CSS follow the below code: Html <div class="circle"> <div class="inner"> <div class="spot"></div> </div> </div> <...

Ajax Call in ASP.NET

Ajax Call (Asynchronous JavaScript and XML Call) In Asp.Net Ajax Call is used to refresh portion of a webpage without reloading whole page. Ajax Calls are used to create fast web pages as they refreshes only a portion of web page instead of...

How to make simple calculator with the help of Angulor JS

This Script will helpful to make a simple 'addition' 'subtraction' 'multiplication' 'division' calculator with the help of Angular JS. <!DOCTYPE html > <html> <head> <title>Angulor Calculator</title> &...

Hadoop Mapper Utility Class

In example I am going to demonstrate how to load a file from Hadoop Distributed Cache. Here I am writing Mapper and Driver class, inside of Mapper class we have define input type key vale pairs and output type key value pairs. Inside driver c...

What is MDM?

MDM (Master Data Management), it has the object to provide data processing, data collection, matching information, data consolidation, data quality assuring and distribution data throughout organisation and have proper control on data maintenance...

Consuming RESTFul service using .NET

Asp.net provides a client application call by making HTTP requests across the Web. Asp.net enables to create custom Web services or WCF services.Such type architectural style consuming services is called RESTful serviecs. RESTful serv...

Quick Select Set

Hey peeps, You might have found yourself struggling with the selections in maya specially during the process of unwrapping . You make selection and it just disappears and you don't know how to bring it back without using undo command. Heres a...

Types of Mask in Photoshop (part 5)

Welcome back to "Part 5 - Types on Mask in Photoshop". Hello Guys !! In this Blog iam gonna tell you about Adjustment Layer Mask. OK Let's get started. Question 1: How to apply Adjustment Layer Mask? Adjustment Layer Mask is an another ...

Blend Shapes in Autodesk MAYA

Hey fellas, I am back with another article, this time on the very useful option of BLEND SHAPES in Autodesk MAYA. Yaa, I know you all are eager to know what we can do with blend shapes and where can we use them but before that, let me ask y...

Use of Box Sizing

What is box-sizing ? Box-sizing is a css3 property. It is used to tell browser that width padding border should include the object according to size, which is define by user. For example, you have a text area with 100% widt...

Cross Language Interoperability

.Net Framework contains a large library and support for cross language interoperability (i.e., the ability through which each and every language can use code written in other languages) across several programming languages. It also support th...

Use of css Property calc()

Hello readers ! In this blog we will discuss on a css property named calc(). What is calc() ? This is a way to change simply any numeric value in CSS automatically. like height, width, margin, padding, font-size, background-position etc ...

Foundation-5 Cheat sheet

Hello Friends, In the era of new HTML Concepts or platforms like- Bootstrap, Foundation. We are using these platform to make our HTML more elegant and in a responsive Form. Today I am adding something for Foundation CSS platform. L...

Monkey Testing and it's Characteristics

What is Monkey Testing? Monkey Testing is a form of Ad hoc software testing technique in which software is tested by inputting random data. In Monkey Testing, testing is performed on random basis. Characteristics of Monkey Testing: Fol...

Crosstab Query Sample

To convert the rows to column in MySQL Sample query: select column1, count((case when (column2 = 'M') then 0 end)) AS `males`, count((case when (column2 = 'F') then 0 end)) AS `females`,count(0) AS `Total` from table_name group by ...

Linux basics

Here is some basic information about Linux. Linux is basically a UNIX operating system, it is a open source OS which is easily available in market, Linux is made with only one thought in mind :- Everything is a file. Means almost everything y...

Creating Horizontal Menu Bar Using Html and CSS

Hello readers, If you want to create a horizontal menu bar in a web page using HTML and CSS follow the below code. CSS:- <style type="text/css"> #menu { font-family: Arial, Verdana; font-size: 14px; margin: 0; ...

Test Data and Types of Test Data

Test data Test Data is the data which is need to execute test case to test software. Mostly test cases need test data to execute. Test data can be store in simple excel file and used manually or can be read from XML, Database or flat files ...

Typography viewport size

Hello reader, In this blog we will discuss about, how to manage font size in different viewport. Usually we fix the font size with different viewport size using @media. But as we know CSS3 has some new values. Viewport size: vw, vh, and vm...

Export Postgres table to CSV

Postgres PostgreSQL is a powerful, open source object-relational database system. It supports storage of binary large objects, including pictures, sounds, or video. It compatible with may of programming interfaces like PHP, C/C...

Make a shape using css

Hello reader ! If you want to make a shape using pure css (after and before pseudo Elements) without using any images follow the code below. .wrapper{ height: 220px; width:500px; margin: 0 auto; } .wrapper .midtop{ mar...

How to import csv file into mysql database in php

To Import csv file into mysql database using php script follow the below code: For example: I have a .csv file data with this formate:- (1) Indresh Singh, indresh@abc.com, 12345 (2) mukul kant, mukul.kant@abc.com, 12345 To insert ...

If you want to remove index.php from url in Codeignitor

If you want to remove index.php file path form url in codeignitor then please follow below steps create .htaccess file in your root folder and place this code there RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f Rewr...

Drag and Drop through Web Driver

here is the method for doing drag and drop operation on mozilla Create Driver for any Browser(Mozilla) Go to the URL Create an Action object for Driver Fetch and create WebElement object for the SOURCE element. Fetch and create WebElem...

How to set form validation in cakephp using ajax

Hi, I want to set form validation without refreshing page in cakephp, so anybody can help me to resolve it. For example, I have a list so how can I update that list on a page dynamically without reloading/refreshing or submitting a form t...

CakePHP Form Validation Using Ajax

As we know cakephp have not any kind of in-build form validater to check requried fields. So by ajax we can check form validation. The flow is that first of all we have to submit the form via ajax to controller and check the validation throw c...

Creating a Panorama Image in Photoshop

So guys, This post is about Panorama, what is it and how can we create it using Photoshop. You might have sometimes(If you are sort of interested in clicking pictures) found yourself surrounded by an environment you want to capture. By surrou...

If cakephp not cofigured properly

If Cakephp throwing an error:- URL rewriting is not properly configured on your server. To fix this issue follow below steps: Check .htaccess files in root directory Let say you have directory with the name of myproject then check ....

How to resolve social media login hybridauth error in cakephp

If you facing an error to login through hybridauth and throwing this error(You cannot access this page directly) then you can follow below steps to resolve it. Please check you session id by php predefined function session_id(); If ...

Only Numeric value with dot can be enter in text box

If you need only float or numeric value to be enter in the text box. You can use the below code. <input name="score" id="score" type="text"> <script> $(document).ready(function() { $("#score").keydown(function(event) { ...

What is V-model and its advantages

V-model stands to verification and validation models and is a software development model. V-model was introduced with the intent to implement testing right from the requirement phase. In other software development models like Waterfall model tes...

Common Commands used in Selenium IDE

Here are some common commands used in selenium IDE open - it is used to open a page using url. waitForElementPresent - pause until the specified element present. verifyTitle/assertTitle- compare the actual title of the page with expected ...

How to Make Database Association on Selected Pages In Cakephp

If you want to make Database Association on Selected Pages In Cakephp follow the below steps, Below code can set association where it require and you can also reduce unnecessary queries firing to database. Make function in your model and ...

How to use the animation layer feature in MAYA ?

I want to create few animations on a character, but I don't want to create multiple files for them. I know MAYA supports Layered animation, but how do we use it. Can I create different animations on the same character using this feature.? If Yes....

Introduction about SEO MetaTags

What is Meta tags Before knowing about Meta Tags, you should also know what is Metadata? Metadata is data about data or data which gives information about data. In webpages Metadata are used with HTML codes called meta tags, it provides the...

System Testing

System Testing Testing the behavior of whole system as defined in software requirement specification is known as System Testing. In other words we can say that "System Testing is a level of the software testing process where a whole product...

Does anybody know reliable way to get MAC address of Client PC using ASP.Net / C#

Does anybody know reliable way to get MAC address of Client PC using ASP.Net / C#. I am using framework 3.5. Below is the code I am using working fine on locally / IIS. But this works on a site having full trust level. But doesn't work ...

Integration Testing Approaches

Integration Testing: In Integration testing, more the one system's modules are combined and tested together to check data flow from one module to another. Integration Testing Approaches: 1. Big Bang: Where all of the modules are combined toge...

Keywords Analysis and Researching

What is Keywords Researching Keyword researching is the most important step in Digital Marketing, as it is about finding and researching actual search terms that people enter into the search engines while doing a search. SEO Professional searc...

Advantage of Automation testing over Manual testing

Automation testing over Manual testing 1. We do automation testing when the nature of testing is repetitive or when project is large.Testing a part of application again and again lead to frustration. Doing manual testing in this kind of repeti...

How to get Cakephp All Fields From Database on live server / localhost

If Cakephp not getting newly added columns from database on live server / localhost to solve this issue use below steps: Go to app / config.php the edit file and set Configure::write('debug',0); to Configure::...

Fixing orientation when sending images & videos from Iphone.

Hi all, for fixing the rotation problem when image/video is taken from Iphone, we can have following cases: When creating a thumbnail from an image and then getting its orientation correct, we can use shell command like this: shell_exec("co...

Link Building in SEO

What is Link Building Link Building is one of the most important technique or SEO skill or a part of Off-page SEO. It is the process of sharing ones link to other websites or we can say that it is the process of attaining a links to your own w...

Why does my vector character warp when adding bones in Flash?

My character gets warped when I move his bones. I have converted the character into separate movie clips. How do I add bones correctly?

How to display my 3D models in browsers ?

Hello fellow nerds, I have some 3D models that I have designed. I want to create an online portfolio of those. I dont want to render some images and make a slideshow. I want to make something interactive. like a person can view that model in 3...

Selenium components suitable for your projects need

this tutorial will guide you to understand which component is best suitable for our projects need. Selenium IDE - when you don't have any programming knowledge and you want simple test cases and test suits to be imported in Selenium RC or gri...

How to export morph target animations from Maya??

HI all, I have created some facial animations of a character in autodesk maya with morph targets. But somehow i am not able to export these animations to use them in unity. right now i am using FBX file format for my animations for Unity. How...

Can you tell me how can i copy my animation from one rig to another..??

I have just created a walk cycle animation in Autodesk Maya. now i want to copy that animation in another character. how can i do that? is it possible to copy animations from one rig to another ?

SEO Spider

What is SEO Spider SEO Spider is a software that track links throughout the Websites, acquire content from sites and add it to search engine databases for indexing hence, it is also known as site indexing by search engine. Spider follows an...
1 271 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: