﻿<rss version="2.0">
<channel> 
    <title>w3resource.com recent updates</title>     
    <link>http://www.w3resource.com/feed/rss.xml</link> 
    <description>w3resource.com recent updates.</description>

<item> 
    <title>Java Assignment Operators</title>     
    <link>http://www.w3resource.com/java-tutorial/java-assignment-operators.php</link> 
    <description>Assigning a value to a variable seems straightforward enough; you simply assign the stuff on the right side of the '= 'to the variable on the left. Below statement 1 assigning value 10 to variable x and statement 2 is creating String object called name and assigning value "Amit" to it.</description> 
</item>

<item> 
    <title>Java Arithmetic Operators</title>     
    <link>http://www.w3resource.com/java-tutorial/java-arithmetic-operators.php</link> 
    <description>We can use arithmetic operators to perform calculations with values in programs. Arithmetic operators are used in mathematical expressions in the same way that they are used in algebra. A value used on either side of an operator is called an operand. </description> 
</item>

<item> 
    <title>Java Conditional or Relational Operators</title>     
    <link>http://www.w3resource.com/java-tutorial/java-conditional-operators.php</link> 
    <description>If you need to change the execution of the program based on a certain condition you can use “if” statements. The relational operators determine the relationship that one operand has to the other. Specifically, they determine equality condition. Java provides six relational operators, which are listed in below table.</description> 
</item>

<item> 
    <title>Java Logical Operators</title>     
    <link>http://www.w3resource.com/java-tutorial/java-logical-operators.php</link> 
    <description>Sometimes, whether a statement is executed is determined by a combination of several conditions.You can use logical operators to combine these conditions. Logical operators are knownas Boolean operators or bitwise logical operators. Boolean operator operates on boolean values to create a new boolean value.</description> 
</item>

<item> 
    <title>Java Switch Statement</title>     
    <link>http://www.w3resource.com/java-tutorial/java-switch-break-continue-statements.php</link> 
    <description>A programming language uses control statements to cause the flow of execution to advance and branch based on changes to the state of a program. Java supports two flow control statements: if and switch</description> 
</item>

<item> 
    <title>While Loops in Java</title>     
    <link>http://www.w3resource.com/java-tutorial/java-while-do-while-loop.php</link> 
    <description>In computer programming, a loop is a sequence of instruction s that is continually repeated until a certain condition is reached. Imagine you have to write a program which performs a repetitive task such as printing 1 to 100. Writing 100 print statements would not be wise thing to do. Loops are specifically designed to perform repetitive tasks with one set of code. Loops save a lot of time.</description> 
</item>

<item> 
    <title>Java For Loop</title>     
    <link>http://www.w3resource.com/java-tutorial/java-wrapper-classes.php</link> 
    <description>A for loop is a special loop that is used when a definite number of loop iterations is required. Although a while loop can also be used to meet this requirement, the for loop provides you with a shorthand notation for this type of loop. </description> 
</item>

<item> 
    <title>Java Branching Statements</title>     
    <link>http://www.w3resource.com/java-tutorial/java-branching-statements.php</link> 
    <description>Java provides three branching statements break, continue and return. The break and continue in Java are two essential keyword beginners needs to familiar while using loops ( for loop, while loop and do while loop).</description> 
</item>

<item> 
    <title>Exceptions in Java programming language</title>     
    <link>http://www.w3resource.com/java-tutorial/exception-in-java.php</link> 
    <description>A Java exception is an object that describes an exceptional (that is, error) condition that has occurred in a piece of code. When an exceptional condition arises, an object representing that exception is created and thrown in the method that caused the error. </description> 
</item>

<item> 
    <title>Java Custom Exceptions</title>     
    <link>http://www.w3resource.com/java-tutorial/custom-exception.php</link> 
    <description>Each of Java's eight primitive data types has a class dedicated to it. These are known as wrapper classes, because they "wrap" the primitive data type into an object of that class. The wrapper classes are part of the java.lang package, which is imported by default into all Java programs.</description> 
</item>

<item> 
    <title>Try with resource feature of Java 7</title>     
    <link>http://www.w3resource.com/java-tutorial/try-with-resource-Java7-excution-features.php</link> 
    <description>Java 7 introduce new language feature called try-with-resource statement. Generally we see data base connection statement, result-set, File IO streams etc operated inside try-block because checked exception declared inside it. </description> 
</item>

<item> 
    <title>The String Class</title>     
    <link>http://www.w3resource.com/java-tutorial/the-string-class.php</link> 
    <description>In Java String is an object represented as sequence of characters. Handling "strings" of characters is a fundamental aspect of most programming languages. Implementing strings as built-in objects allows Java to provide a full complement of features that make string handling convenient.</description> 
</item>

<item> 
    <title>Exploring Methods of String Class</title>     
    <link>http://www.w3resource.com/java-tutorial/exploring-methods-of-string-class.php</link> 
    <description>String manipulation is arguably one of the most common activities in computer programming. String class has variety of methods for string manipulation. We will discuss about basic methods with examples. </description> 
</item>

<item> 
    <title>StringBuffer / StringBuilder Class</title>     
    <link>http://www.w3resource.com/java-tutorial/stringbuffer-stringbuilder.php</link> 
    <description>In Java String is immutable objects means once created it cannot be changed, reference will point to new object. If our application has string manipulation activity, then there will be many discarded string object in heap memory which might result in performance impact. To circumvent these limitations, you can use either the StringBuilder or StringBuffer class.</description> 
</item>

<item> 
    <title>Java Wrapper Classes</title>     
    <link>http://www.w3resource.com/java-tutorial/java-wrapper-classes.php</link> 
    <description>Each of Java's eight primitive data types has a class dedicated to it. These are known as wrapper classes, because they "wrap" the primitive data type into an object of that class. The wrapper classes are part of the java.lang package, which is imported by default into all Java programs.</description> 
</item>

<item> 
    <title>Java Arrays</title>     
    <link>http://www.w3resource.com/java-tutorial/java-arrays.php</link> 
    <description>An array is a group of similar typed variables that are referred to by a common name. Arrays of any type can be created and may have one or more dimensions.</description> 
</item>


<item> 
    <title>Java-Inheritance (IS-A) vs. Composition (HAS-A) Relationship</title>     
    <link>http://www.w3resource.com/java-tutorial/inheritance-composition-relationship.php</link> 
    <description>One of the advantages of Object-Oriented programming language is code reuse. There are two ways we can do code reuse either by implementation of inheritance (IS-A relationship), or object composition (HAS-A relationship).</description> 
</item>


<item> 
    <title>SQL Syntax</title>     
    <link>http://www.w3resource.com/sql/sql-syntax.php</link> 
    <description>This article describes the syntax of SQL. Each select statement in SQL follow precise syntactical and structural rules. </description> 
</item>


<item> 
    <title>Online JSON viewer</title>     
    <link>http://www.w3resource.com/JSON/online-JSON-viewer.php</link> 
    <description>While working with JSON, often you may need a JSON viewer. This document discusses several online JSON viewer. Hopefully, this will help you to select one depending upon your requirement.</description> 
</item>

<item> 
    <title>Java Object Oriented Programming concepts</title>     
    <link>http://www.w3resource.com/java-tutorial/java-object-oriented-programming.php</link> 
    <description>This tutorial will help you to understand about Java OOP’S concepts with examples. Let’s discuss about what are the features of Object Oriented Programming. Writing object-oriented programs involves creating classes, creating objects from those classes, and creating applications, which are stand-alone executable programs that use those objects.</description> 
</item>
	

<item> 
    <title>Java Packages</title>     
    <link>http://www.w3resource.com/java-tutorial/java-packages.php</link> 
    <description>A decently size project can have hundreds of Java classes and you need to organize them in packages (think file directories)...more</description> 
</item>


<item> 
    <title>Java	Class, methods, instance variables</title>     
    <link>http://www.w3resource.com/java-tutorial/java-class-methods-instance-variables.php</link> 
    <description>All computer programs consist of two elements: code and data. Furthermore, a program can be conceptually organized around its code or around its data.</description> 
</item>

<item> 
    <title>Compiling, running and debugging Java programs</title>     
    <link>http://www.w3resource.com/java-tutorial/compiling-running-and-debugging-java-programs.php</link> 
    <description>Eclipse IDE is an open-source product that was originally created with a substantial code donation by IBM to the Java community, and from that moment Eclipse was a 100% community-driven product.</description> 
</item>



<item> 
    <title>Java Development Environment Setup</title>     
    <link>http://www.w3resource.com/java-tutorial/download-and-Install-JDK-Eclipse-IDE.php</link> 
    <description>To develop and run any java program you need to install JDK in your system</description> 
</item>

<item> 
    <title>Java Program Structure</title>     
    <link>http://www.w3resource.com/java-tutorial/java-program-structure.php</link> 
    <description>Let’s use example of HelloWorld Java program to understand structure and features of class. This program is written on few lines, and its only task is to print “Hello World from Java” on the screen.</description> 
</item>
<item> 
    <title>Java Tutorial</title>     
    <link>http://www.w3resource.com/java-tutorial/index.php</link> 
    <description>This is the first article of w3resource's Java programming tutorial. The aim of this tutorial is to make beginners conversant with Java programming language.
	</description> 
</item>
<item> 
    <title>Java Tutorial</title>     
    <link>http://www.w3resource.com/java-tutorial/index.php</link> 
    <description>This is the first article of w3resource's Java programming tutorial. The aim of this tutorial is to make beginners conversant with Java programming language.
	</description> 
</item>
<item> 
    <title>C Variables, Data Types</title>     
    <link>http://www.w3resource.com/c-programming/c-variable.php</link> 
    <description>Variables in C have the same meaning as variables in algebra. A variable in C is a storage unit, which sets a space in memory to hold a value and can take different values at different times during program execution.</description> 
</item>
<item> 
    <title>C Operators</title>     
    <link>http://www.w3resource.com/c-programming/c-operators.php</link> 
    <description>C supports a wide variety of operators, such as +, -, *, /, etc.,</description> 
</item>
<item> 
    <title>C printf()</title>     
    <link>http://www.w3resource.com/c-programming/c-printf-statement.php</link> 
    <description>One of the common task in every program is the printing of output. We use output to request input from a user and later display the status/result, computations etc.</description> 
</item>
<item> 
    <title>C if else</title>     
    <link>http://www.w3resource.com/c-programming/c-if-else-statement.php</link> 
    <description>The if statement is used to conditionally execute a statement or a block of statements. Conditions can be true or false, execute one thing when the condition is true, something else when the condition is false.</description> 
</item>
<item> 
    <title>C for loop</title>     
    <link>http://www.w3resource.com/c-programming/c-for-loop.php</link> 
    <description>A "For" Loop is used to repeat a specific block of code (statements) a known number of times. The for-loop statement is a very specialized while loop, which increase the readability of a program. </description> 
</item>

<item> 
    <title>Create pure CSS no JavaScript tooltips with hint.css</title>     
    <link>http://w3resource.com/gallery/create-pure-css-no-javascript-tooltips-with-hint-css</link> 
    <description>This tutorial shows how to create tooltips with CSS only, without using any JavaScript code. You can achieve this with hint.css.</description> 
</item>

<item> 
    <title>Javascript form validation using Parsely.js</title>     
    <link>http://w3resource.com/gallery/javascript-form-validation-using-parsely-js</link> 
    <description>Form validation is very part of developing web applications and w3resource has several  form validation tutorials. This tutorial is about how to validate form on client side using Parsely.js. It is a project which allows you to add validation for front end without writing any JavaScript code.</description> 
</item>

<item> 
    <title>11 new features of PHP 5.4</title>     
    <link>http://www.w3resource.com/php/5.4/new-features.php</link> 
    <description>PHP 5.4 has a wide range of new features added. This is a tutorial from w3resource to discuss them.</description> 
</item>

<item> 
    <title>Python Classes</title>     
    <link>http://www.w3resource.com/python/python-object-classes.php</link> 
    <description>The basic idea behind an object-oriented programming (OOP) is to combine both data and associated procedures (known as methods) into a single unit which operate on the data. Such a unit is called an object. more..
	</description> 
</item>
<item> 
    <title>Python CGI Programming</title>     
    <link>http://w3resource.com/python/cgi-programming.php</link> 
    <description>This tutorial is aimed to get you started with Python CGI Programming. When it comes to running your Python Scripts on web, you have to learn how Python can be executed as CGI Script.
	</description> 
</item>
	
<item> 
    <title>Python user defined function</title>     
    <link>http://www.w3resource.com/python/python-user-defined-functions.php</link> 
    <description>In all programming and scripting language, a function is a block of program statements which can be used repetitively in a program. In Python concept of function is same as in other languages.
	</description> 
</item>
<item> 
    <title>Python if Tutorial</title>     
    <link>http://www.w3resource.com/python/python-if-else-statements.php</link> 
    <description>The Python if statement is same as it is with other programming languages. It executes a set of statements conditionally, based on the value of a logical expression.
	</description> 
</item>


<item> 
    <title>Python for loop Tutorial</title>     
    <link>http://www.w3resource.com/python/python-for-loop.php</link> 
    <description>Like most other languages, Python has for loops, but it differs a bit from other like C or Pascal. In Python for loop is used to iterate over the items of any sequence including the Python list, string, tuple etc. 
	</description> 
</item>


<item> 
    <title>Python while loop Tutorial</title>     
    <link>http://www.w3resource.com/python/python-while-loop.php</link> 
    <description>Loops are used to repeatedly execute block of program statements. The basic loop structure in Python is while loop. Here is the syntax.
	</description> 
</item>

<item> 
    <title>Python break, continue statement Tutorial</title>     
    <link>http://www.w3resource.com/python/python-break-continue.php</link> 
    <description>The break statement is used to exit a for or a while loop. The purpose of this statement is to end the execution of the loop (for or while) immediately and the program control goes to the statement after the last statement of the loop.
	</description> 
</item>

<item> 
    <title>Ajax Tutorial</title>     
    <link>http://www.w3resource.com/ajax/introduction.php</link> 
    <description>In this tutorial we will see how to make Ajax work with PHP amd MySQL. We will create a small web application. In that, as soon as you start typing an alphabet in the given input field, a request goes to the PHP file via Ajax, a query is made to the MySQL table, it returns some results and then those results are feteched by Ajax and displayed.
	</description> 
</item>
<item> 
    <title>Working with Ajax, PHP and MySQL</title>     
    <link>http://www.w3resource.com/ajax/working-with-PHP-and-MySQL.php</link> 
    <description>This is the first tutorial of the series of Ajax tutorials which covers the intorduction to Ajax. The tutorial will help you to get started with Ajax.
	</description> 
</item>
<item> 
    <title>JSON Schema Tutorial</title>     
    <link>http://www.w3resource.com/JSON/JSON-Schema.php</link> 
    <description>In this tutorial we will discuss JSON Schema, a proposed Internet draft defining a JSON media type (application/schema+json). Internet Engineering Task Force defines JSON Schema as follows:</description> 
</item>
<item> 
    <title>Create Responsive Image and Content Slider with Orbit</title>     
    <link>http://www.w3resource.com/zurb-foundation3/orbit.php</link> 
    <description>Orbit is a JavaScript Image and Content Slider from Zurb Foundation 3, to create image and content slider easily. This tutorial unfolds the nuances of using Orbit.
</description> 
</item>
<item> 
    <title>Create Modal or Popup Windows with Reveal</title>     
    <link>http://www.w3resource.com/zurb-foundation3/reveal.php</link> 
    <description>You may create Modal or Popup Windows using Reveal - A Jquery Plugin form Zurb Foundaiton 3. In this tutorial, we will see how to use Reveal.
</description> 
</item>
<item> 
    <title>Responsive Web Design with Twitter Bootstrap</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/responsive-design.php</link> 
    <description>This tutorial is about how to apply responsive design feature into your web layout. And in the course, you will also learn about Responsive Web Design. With the proliferation of mobile devices, it has become almost unavoidable that you don't have a version of your website which users can view well when browsing through mobile devices. And Responsive Web Design is a very efficient way to serve the purpose.
</description> 
</item>
<item> 
    <title>Zurb Foundation 3 Navigation</title>     
    <link>http://www.w3resource.com/zurb-foundation3/navigation.php</link> 
    <description>In this tutorial you will see how to create Navigations with Zurb Foundation 3. The framework offers navigations for various context and they are capable to be rendered accross various devices.
</description> 
</item>
<item> 
    <title>Creating text effects with CSS3 text-shadow</title>     
    <link>http://w3resource.com/gallery/css3/text-effects-with-css3-text-shadow-property/</link> 
    <description>With CSS3 text-shadow property, it is much more easier now to create text effects like glowing effect, blurring effect, outlining, flaming effect etc. This document shows how to create text effects with CSS3 text shadow property.
</description> 
</item>
<item> 
    <title>SQL question answer</title>     
    <link>http://www.w3resource.com/sql/question-answer.php</link> 
    <description>This document is a collection of questions with short and simple answers useful for learning sql as well as for interviews.
</description> 
</item>
<item> 
    <title>HTML5 embed element</title>     
    <link>http://www.w3resource.com/html5/embed-element.php</link> 
    <description>HTML5 embed element represents external non-HTML application or interactive content. A good example is, when embed element is used to represent a flash movie(SWF file).
</description> 
</item>
<item> 
    <title>PostgreSQL JOIN</title>     
    <link>http://w3resource.com/PostgreSQL/postgresql-join.php</link> 
    <description>The main concept which is focusing on a join is that, two or more data sets, when joined, combined there columns into a new set of rows, including each of the columns requested from each of the data sets.
</description> 
</item>
<item> 
    <title>Zurb Foundation 3 Forms</title>     
    <link>http://www.w3resource.com/zurb-foundation3/forms.php</link> 
    <description>In this tutorial you will see how to create Forms with Zurb Foundation 3. The way Forms can be created with Foundation 3, is versatile. Let's begin with a simple example.
</description> 
</item>
<item> 
    <title>Zurb Foundation 3 Buttons</title>     
    <link>http://www.w3resource.com/zurb-foundation3/buttons.php</link> 
    <description>In this tutorial you will see how to create Buttons with Zurb Foundation 3. Foundation 3 Buttons are easy to use and customize. 
</description> 
</item>
<item> 
    <title>Create multi-device layouts with Zurb Foundation 3 Grid</title>     
    <link>http://www.w3resource.com/zurb-foundation3/grid-to-create-multi-device-layout.php</link> 
    <description>In this tutorial you will see how to create multi-device layouts with Zurb Foundation 3 Grid. The Grid is 12 column. You may also nest Grids with this Grid system.
</description> 
</item>
<item> 
    <title>Introduction to Zurb Foundation 3</title>     
    <link>http://w3resource.com/zurb-foundation3/introduction.php</link> 
    <description>Zurb Foundation 3 is a responsive front-end framework to build web sites and apps fast. It has all the basic as 	 well as advanced features for rapid prototyping. In this document you will get an overview of what this framework may offer.
</description> 
</item>
<item> 
    <title>A Twitter Bootstrap based simple table generator</title>     
    <link>http://w3resource.com/gallery/javascript/a-twitter-bootstrap-based-simple-table-generator/</link> 
    <description>This gallery item presents a Twitter Bootstrap based simple table generator. If you are new to front end development, this may help you to understand how to create and manipulate DOM with JavaScript. For others, we hope that it may come handy when you need to create HTML tables quickly for your next project.</description> 
</item>
<item> 
    <title>spin.js – a CSS animation with VML fallback</title>     
    <link>http://w3resource.com/gallery/javascript/spin-js-a-css-animation-with-vml-fallback/</link> 
    <description>Using spin.js, a simple and light JavaScript library, you can create an animated CSS activity. It uses CSS3 keyframe animation, but the good point is, it also uses Vector Markup Language as fallback.</description> 
</item>
<item> 
    <title>CSS3 box-shadow property to create drop shadows</title>     
    <link>http://w3resource.com/gallery/css3/css3-box-shadow-property-to-create-drop-shadows/</link> 
    <description>With CSS3 box-shadow property, you can create drop shadows and add several features to it.</description> 
</item>
<item> 
    <title>Markdown – write plain text, get HTML</title>     
    <link>http://w3resource.com/gallery/tools-tips/markdown-write-plain-text-get-html/</link> 
    <description>Using Markdown, you can write content in plain text and then convert it to HTML.</description> 
</item>
<item> 
    <title>Twitter Bootstrap Button JavaScript Plugin</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/button.php</link> 
    <description>Twitter Bootstrap Button JavaScript Plugin allows you to enhance functionalities of Button. You may control button states or create groups of buttons for components like toolbars.</description> 
</item>	
<item> 
    <title>Twitter Bootstrap Collapse JavaScript Plugin</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/collapse.php</link> 
    <description>In this document you will see how to create collapseable components with Twitter Bootstarp.</description> 
</item>	
<item> 
    <title>Twitter Bootstrap Typeheads tutorial</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/typehead.php</link> 
    <description>Typeheads are very useful to supply hints or data to users while filling forms. Twitter Bootstrap allows you to create excellent looking typeheads with ease, moreover, it's easily extensible, so you may enhance it's functionality without much of an effort.</description> 
</item>	
<item> 
    <title>Twitter Bootstrap Dropdown JavaScript Plugin</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/dropdown.php</link> 
    <description>With Dropdown JavaScript Plugin, you may create Dropdown menus to almost anything in in Twitter Bootstrap. Bootstrap has full support for creating dropdown menu on the navbar, tabs, and pills.</description> 
</item>	
<item> 
    <title>Twitter Bootstrap Thumbnails tutorial</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/thumbnails-tutorial.php</link> 
    <description>In this tutorial you will see how to create thumbnails, i.e. grids of images, videos, text, and more, using Twitter Bootstrap.</description> 
</item>	
<item> 
    <title>Twitter Bootstrap progress bars tutorial</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/progress-bars-tutorial.php</link> 
    <description>In this tutorial you will see how to create progress bars for loading, redirecting, or action status, using Twitter Bootstrap.</description> 
</item>	
<item> 
    <title>Twitter Bootstrap inline labels and badges tutorial</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/inline-labels-and-badges.php</link> 
    <description>Using Twitter Bootstrap, you may create inline labels, i.e. Label and annotate text and badges, i.e. indicators and unread counts.</description> 
</item>	
<item> 
    <title>Twitter Bootstrap carousel Tutorial</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/carousel-tutorial.php</link> 
    <description>In this tutorial you will see how to create carousel using Twitter Bootstrap. This may help you to create content slider, image gallaries etc.</description> 
</item>	
<item> 
    <title>Sql UNION</title>     
    <link>http://www.w3resource.com/sql/sql-union.php</link> 
    <description>The SQL UNION operator combines the results of two or more queries and makes a result set which includes fetched rows from the participating queries in the UNION.</description> 
</item>	

<item> 
    <title>XML Fundamentals</title>     
    <link>http://w3resource.com/xml/xml.php</link> 
    <description>xml stands for Extensible Markup Language. A markup language uses a set of additional items called markups to create a document of hierarchical structure.</description>
</item>	
	
<item> 
    <title>CSS3 border radius to create rounded corners</title>     
    <link>http://w3resource.com/gallery/css3/css3-border-radius-to-create-rounded-corners</link> 
    <description>With CSS3 you may create rounded corners with border radius property. And this helps you to get rid of the hassles of creating rounded corners with images and lots of divs.</description> 
</item>	

<item> 
    <title>CSS3 translucent colors with RGBA and HSLA</title>     
    <link>http://w3resource.com/gallery/css3/css3-translucent-colors-with-rgba-and-hsla</link> 
    <description>With CSS3, you may use RGBA and HSLA to create translucent colors. This is an example of how you may do that.</description> 
</item>	
	
	
<item> 
    <title>PostgreSQL String Functions and Operators - Part-III</title>     
    <link>http://www.w3resource.com/PostgreSQL/postgresql-string-functions-part3.php</link> 
    <description>In this page we have discussed last 10 more important string functions with syntax and examples. </description> 
</item>	
	
<item> 
    <title>Twitter Bootstrap ScrollSpy tutorial</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/scrollspy-tutorial.php</link> 
    <description>In this document you will see how to use Twitter Bootstarp ScrollSpy Plugin to automatically update nav targets based on scroll position.</description> 
</item>
		
<item> 
    <title>PostgreSQL String Functions and Operators - Part-II</title>     
    <link>http://www.w3resource.com/PostgreSQL/postgresql-string-functions-part2.php</link> 
    <description>Another 10 PostgreSQL string functions have discussed with syntax and example in this page. </description> 
</item>	

<item> 
    <title>Create full screen view with screenfull.js</title>     
    <link>http://w3resource.com/gallery/javascript/create-full-screen-view-with-screenfull-js/</link> 
    <description>Want to create a Full Screen View of your image or video? W3c provides a Fullscreen API for that, and screenfull.js is a “Simple wrapper for cross-browser usage of the JavaScript Fullscreen API”.</description>
</item>	

<item> 
    <title>PostgreSQL String Functions and Operators - Part-I</title>     
    <link>http://www.w3resource.com/PostgreSQL/postgresql-string-functions-part1.php</link> 
    <description>The PostgreSQL string functions can be used for manipulating and examining various type of queries independently or within a table. </description> 
</item>	


<item> 
    <title>PostgreSQL Trigonometric Functions</title>     
    <link>http://www.w3resource.com/PostgreSQL/postgresql-trigonometric-functions.php</link> 
    <description>The PostgreSQL trigonometric functions accept the input values as radians and returns the corresponding values against this function. </description> 
</item>	


<item> 
    <title>PostgreSQL Mathematical Functions </title>     
    <link>http://www.w3resource.com/PostgreSQL/postgresql-mathematical-functions.php</link> 
    <description>A mathematical function operates on input values ( numeric ) which are provided as arguments, and return a numeric value as the output of that operation. Mathematical functions operates on numeric data.</description> 
</item>	
	
<item> 
    <title>PostgreSQL Mathematical Operators </title>     
    <link>http://www.w3resource.com/PostgreSQL/postgresql-mathematical-operators.php</link> 
    <description>PostgreSQL provided many Mathematical operators for common mathematical conventions. The bitwise operators can be used only with the integer data types.</description> 
</item>	

<item> 
    <title>PostgreSQL Comparison Operators </title>     
    <link>http://www.w3resource.com/PostgreSQL/postgresql-comparison-operators.php</link> 
    <description>Comparison operators, as their name, allows to compare two values. It Compares strings or numbers for relationships such as equality. </description> 
</item>
<item> 
    <title>SQL JOIN Cheat Sheet by w3resource</title>     
    <link>http://w3resource.com/gallery/sql/sql-join-cheat-sheet/</link> 
    <description>When you need to fetch data from two or more tables based on relationship between you need to use SQL JOIN. w3resource.com has a comprehensive SQL Tutorial and we have covered SQL JOIN in great detail. But we felt that creating a cheat sheet on SQL JOIN will be very useful for you.</description>
</item>		
<item> 
    <title>Create excellent line chart with Highcharts.js</title>     
    <link>http://w3resource.com/gallery/javascript/create-excellent-line-chart-with-highcharts-js/</link> 
    <description>Charts and graphs are often required to express data. There are plenty of tools available to create online graphs and charts. Here we have created a line chart using HighChart JavaScript Library. The chart shows browser usage of w3resource.com for the last financial year.</description>
</item>		
<item> 
    <title>Convert number to word with PHP</title>     
    <link>http://w3resource.com/gallery/php/convert-number-to-word-with-php/</link> 
<description>How many times you required a code to convert numbers into words? Here is a PHP code to do exactly that.</description>
</item>	
<item> 
    <title>HTML5 based Form validation without JavaScript</title>     
    <link>http://w3resource.com/gallery/html5/html5-based-fom-validation-without-javascript/</link> 
    <description>For client side form validation, using JavaScript is inevitable. But not any more. With HTML5, now you may validate your forms at client side without using any JavaScript.</description>
</item>		
<item> 
    <title>JavaScript pie chart with gRaphaël</title>     
    <link>http://w3resource.com/gallery/javascript/javascript-pie-chart-with-graphael/</link> 
    <description>gRaphaël (Raphaël graphics library) is a JavaScript library to create graphs and charts. The following example renders an animated pie chart showing browser usages. gRaphaël currently supports Chrome 14+, Firefox 3.0+, Safari 3.0+, Opera 9.5+ and Internet Explorer 6.0+.</description>
</item>		
<item> 
    <title>Creating JavaScript Date format in PHP style</title>     
    <link>http://w3resource.com/gallery/javascript/creating-javascript-date-format-in-php-style/</link> 
    <description>datetime.min.js a JavaScript Library offers various ways to create Date Formats. The following example shows how to create a variety of JavaScript date formats in PHP style with date() function.</description> 
</item>		
<item> 
    <title>Creating Unique ID’s with PHP uniqid() function</title>     
    <link>http://w3resource.com/gallery/php/creating-unique-ids-with-php-uniqid-function/</link> 
    <description>PHP offers various ways to create Unique ID number. Here is an example where we use uniqid() function to create unique ids. md5() and sha1() functions are also used with uniqid() to get more sophisticated ids.</description> 
</item>		

<item> 
    <title>Creating Date format in PHP</title>     
    <link>http://w3resource.com/gallery/php/creating-date-format-in-php/</link> 
    <description>PHP offers various ways to create Date Formats. Here is an example which shows how to create Date Formats with PHP date() Function.</description> 
</item>	

<item> 
    <title>PostgreSQL Logical Operators </title>     
    <link>http://www.w3resource.com/PostgreSQL/postgresql-logical-operators.php</link> 
    <description>The AND, OR, and NOT keywords are PostgreSQL's Boolean operators. These keywords are mostly used to join or invert conditions in a SQL statement, specifically in the WHERE clause and the HAVING clause.</description> 
</item>	
	
<item> 
    <title>PostgreSQL HAVING </title>     
    <link>http://www.w3resource.com/PostgreSQL/postgresql-having.php</link> 
    <description>The HAVING clause is used to specify which individual group(s) are to be displayed, that is , the desire groups that you return on the basis of aggregate functions.</description> 
</item>	
<item> 
    <title>Twitter Bootstrap Icons</title>     
    <link>http://w3resource.com/PostgreSQL/postgresql-group-by.php</link> 
    <description>All Icon images are bundlled into one and used with background-position CSS property. The image file is glyphicons-halflings.png and it resides under img folder of the main Twitter Bootstrap folder.</description> 
</item>

<item> 
    <title>PostgreSQL GRUOP BY </title>     
    <link>http://w3resource.com/PostgreSQL/postgresql-group-by.php</link> 
    <description>The group by clause is used to divide the rows in a table into smaller groups that have the same values in the specified columns. This clause is used with SELECT statement to combine a group of rows based on the values or a particular column or expression.</description> 
</item>

<item> 
    <title>PostgreSQL MIN function</title>     
    <link>http://w3resource.com/PostgreSQL/postgresql-min-function.php</link> 
    <description>The MIN function determines the smallest of all selected values of a column.</description> 
</item>
<item> 
    <title>PostgreSQL AVG function</title>     
    <link>http://w3resource.com/PostgreSQL/postgresql-avg-function.php</link> 
    <description>The AVG function determines the average of all selected values of a column.</description> 
</item>
<item> 
    <title>PostgreSQL MAX function</title>     
    <link>http://w3resource.com/PostgreSQL/postgresql-max-function.php</link> 
    <description>The PostgreSQL MAX function returns the maximum value, specified by expression in a set of aggregated rows.</description> 
</item>
<item> 
    <title>Twitter Bootstrap Modals Tutorial</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/modals-tutorial.php</link> 
    <description>Twitter Bootstrap Modal are created using a custom Jquery Plugin. It may be used to create modal windows to enrich user experience or to add functionality to users. You may use popover and tooltips within Modals.</description> 
</item>
<item> 
    <title>PostgreSQL SUM function</title>     
    <link>http://w3resource.com/PostgreSQL/postgresql-sum-function.php</link> 
    <description>The SUM function in PostgreSQL returns the sum of values for the list of selected columns.</description> 
</item>
<item> 
    <title>PostgreSQL COUNT function </title>     
    <link>http://w3resource.com/PostgreSQL/postgresql-count-function.php</link> 
    <description>The PostgreSQL COUNT function counts number of rows or non-NULL values against a specific column from a table.</description> 
</item>
<item> 
    <title>PostgreSQL AGGREGATE functions</title>     
    <link>http://w3resource.com/PostgreSQL/postgresql-aggregate-functions.php</link> 
    <description>An aggregate function produced a single result for an entire group or table.</description> 
</item>
<item> 
    <title>PostgreSQL ALTER TABLE</title>     
    <link>http://w3resource.com/PostgreSQL/postgresql-alter-table.php</link> 
    <description>The PostgreSQL ALTER TABLE statement is used to change the definition or structure of an existing table.</description> 
</item>
<item> 
    <title>Twitter Bootstrap Popover Tutorial</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/popover-tutorial.php</link> 
    <description>In this document you will see how to use Twitter Bootstarp Popover out of the box and also how to customize it using several options available.</description> 
</item>
<item> 
    <title>PostgreSQL FOREIGN KEY constraint</title>     
    <link>http://w3resource.com/PostgreSQL/foreign-key-constraint.php</link> 
    <description>A FOREIGN KEY constraint contain the value in a column or combination of columns which must be appearing in the same column or group of columns in another table.</description> 
</item>
<item> 
    <title>PostgreSQL PRIMARY KEY CONSTRAINT</title>     
    <link>http://w3resource.com/PostgreSQL/primary-key-constraint.php</link> 
    <description>The PostgreSQL PRIMARY KEY is a column in a table which must contain a unique value which can be used to identify each and every row of a table uniquely. So it can be said that the PRIMARY KEY of a table is a combination of NOT NULL and UNIQUE constraint.</description> 
</item>
<item> 
    <title>PostgreSQL UNIQUE CONSTRAINT</title>     
    <link>http://w3resource.com/PostgreSQL/unique.php</link> 
    <description>The PostgreSQL UNIQUE constraint ensures that the uniqueness of the values entered into a column or a field of a table.</description> 
</item>
<item> 
    <title>PostgreSQL NOT NULL</title>     
    <link>http://w3resource.com/PostgreSQL/not-null.php</link> 
    <description>The not-null constraint in PostgreSQL ensure that a column can not contain any null value. This is a column constraint. No name can be defined to create a not-null constraint.</description> 
</item>
<item> 
    <title>PostgreSQL Constraint</title>     
    <link>http://w3resource.com/PostgreSQL/constraint.php</link> 
    <description>Constraints are a part of the table definition that limit the values inserted into its columns.Which type of data a table can store that may be decided by the type of data. That is why CONSTRAINTS needed. Suppose the age of a student is always be a positive value but there is no such data type which can accept only positive value, a CONSTRAINT can do this.</description> 
</item>
<item> 
    <title>PostgreSQL Check Constraint</title>     
    <link>http://w3resource.com/PostgreSQL/check.php</link> 
    <description>The PostgreSQL CHECK constraint controls the value of a column(s) being inserted.The PostgreSQL provides the CHECK constraint, which allows the user to define a condition, that a value entered into a table, has to satisfy, before it can be accepted. The CHECK constraint consists of the keyword CHECK followed by parenthesized conditions. The attempt will be rejected when update or insert column values that will make the condition false. </description> 
</item>
<item> 
    <title>PostgreSQL DISTINCT Clause</title>     
    <link>http://w3resource.com/PostgreSQL/distinct.php</link> 
    <description>The PostgreSQL DISTINCT clause is used with SELECT statement to suppress duplicate values if any in a column. After execute a select statement the resultant table returns all rows according to the provided expression. If it is required to eleminate the duplicate rows from the resultant table the DISTINCT clause in PostgreSQL can be used.</description> 
</item>
<item> 
    <title>PostgreSQL ORDER BY</title>     
    <link>http://w3resource.com/PostgreSQL/order-by.php</link> 
    <description>A query, after executed by PostgrerSQL select statement can optionally be sorted. Sometime for better inspection it is required to comes rows in a sorted order. PostgreSQL ORDER BY will do the job of sorting rows in a manner as specified by user in the expression.</description> 
</item>
<item> 
    <title>PostgreSQL SELECT</title>     
    <link>http://w3resource.com/PostgreSQL/select.php</link> 
    <description>PostgreSQL SELECT statement retrieves data from a single table or multiple tables or views (a virtual table).</description> 
</item>
<item> 
    <title>PostgreSQL WHERE</title>     
    <link>http://w3resource.com/PostgreSQL/where.php</link> 
    <description>The PostgreSQL WHERE clause is used to control a PostgreSQL SELECT query, i.e. records or rows can be fetched according to an expression or some conditions supplied by the user.</description> 
</item>
<item> 
    <title>HTML5 header element</title>     
    <link>http://www.w3resource.com/html5/header-element.php</link> 
    <description>Purpose of the header element is to hold any of the h1 to h6 elements, a hggroup element, a table of content, a search form or associated logos.</description> 
    </item>
<item> 
    <title>HTML5 content categories</title>     
    <link>http://www.w3resource.com/html5/content-categories.php</link> 
    <description>Every HTML5 Element comes under zero or more categories depending upon the kind of content it holds. This document discusses those categories.</description> 
    </item>
    <item> 
    <title>HTML5 Figcaption Tag Tutorial</title>     
    <link>http://www.w3resource.com/html5/figcaption-tag.php</link> 
    <description>In this page we have discussed Description, Usage, Attributes, Example, Result and Compatibility of HTML5 figcaption tag / element.</description> 
    </item>
    <item> 
    <title>Browsers Statistics</title>     
    <link>http://www.w3resource.com/browsers/browsers-statistics.php</link> 
    <description>In this page we have presented Browsers Statistics graphically. This will help you to understand the percentage of usage of different browsers.</description> 
    </item>
    <item> 
    <title>Twitter Bootstrap with Less CSS</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/twitter-bootstrap-with-less.php</link> 
    <description>Less is a CSS preprocessor which makes CSS dynamic. Twitter Bootstrap on the other hand, is a toolkit to develop web apps and sites fast. In this document we have discussed about using Twitter Bootstrap with Less CSS. This way you can use Less variables, mixins, and nesting of Bootstrap in CSS.</description> 
    </item>
    <item> 
    <title>PostgreSQL DELETE</title>     
    <link>http://w3resource.com/PostgreSQL/PostgreSQL-delete.php</link> 
    <description>This document discusses how to delete data of a table using PostgreSQL DELETE command.</description> 
    </item>
    <item> 
    <title>PostgreSQL UPDATE</title>     
    <link>http://w3resource.com/PostgreSQL/PostgreSQL-update.php</link> 
    <description>This document discusses how to update data of a table using PostgreSQL UPDATE command. We have also covered how to do the same using PHP-PostgreSQL. 
    </description> 
    </item>
    <item> 
    <title>PostgreSQL INSERT</title>     
    <link>http://w3resource.com/PostgreSQL/PostgreSQL-insert.php</link> 
    <description>This document discusses how to insert data into a table using PostgreSQL INSERT command. We have also covered how to do the same using PHP-PostgreSQL.KJVQCSV69JFX 
    </description> 
    </item>
	<item> 
    <title>JSON Example</title>     
    <link>http://www.w3resource.com/html5/footer-tag.php</link> 
    <description>This document provides you with some JSON Example. Examples are associated with XML, MySQL, MongoDB and APIs to add more value. Instead of just writing the JSON code as examples, we thought that it would be of more value to you if we co-relate the examples with those.
    </description> 
    </item>
	<item> 
    <title>HTML5 footer tag</title>     
    <link>http://www.w3resource.com/html5/footer-tag.php</link> 
    <description>This document discusses HTML5 footer tag - Description, Usage, Attributes, Example, Result and browser    Compatibility.
    </description> 
    </item>
	<item> 
    <title>webP - a new image format</title>     
    <link>http://www.w3resource.com/web-development-tools/webP.php</link> 
    <description>This document discuses webP, a new image format which can reduce the image size up to 28% and 35% respectively when compared to a PNG and JPEG image.
    </description> 
    </item>
	<item> 
    <title>PostgreSQL Create Table</title>     
    <link>http://www.w3resource.com/PostgreSQL/create-table.php</link> 
    <description>This document discusses how to create table in PostgreSQL using command line, pgAdmin III and phppgAdmin. For ease of understanding, each process is complemented by screenshots taken while doing.
    </description> 
    </item>
	<item> 
    <title>PostgreSQL Create Database</title>     
    <link>http://www.w3resource.com/PostgreSQL/create-database.php</link> 
    <description>This document discusses how to create database in PostgreSQL using command line, pgAdmin III and phppgAdmin. For ease of understanding, each process is complemented by screenshots taken while doing.
    </description> 
    </item>
	<item> 
    <title>Schema.org Recipe Type Tutorial</title>     
    <link>http://www.w3resource.com/schema.org/Recipe.php</link> 
    <description>In this document we have discussed the Recipe type of the Schema.org. This tutorial covers description, properties, example and output of the example using Google Rich Snippets tool.
    </description> 
    </item>
	<item> 
    <title>PostgreSQL Data Types</title>     
    <link>http://www.w3resource.com/PostgreSQL/data-types.php</link> 
    <description>This document discusses PostgreSQL Data Types. While creating table, for each column, you specify a data type, i.e. what kind of data you want to store.
    </description> 
    </item>
	<item> 
    <title>Install PostgreSQL on Linux and Windows</title>     
    <link>http://w3resource.com/PostgreSQL/install-postgresql-on-linux-and-windows.php</link> 
    <description>This document discusses detail installation process of PostgreSQL on Linux and Windows. For demonstration purpose, we have used Ubuntu Linux and Windows 7.
    </description> 
    </item>
	<item> 
    <title>PostgreSQL tutorial - overview and what you will learn</title>     
    <link>http://w3resource.com/PostgreSQL/tutorial.php</link> 
    <description>This document gives you an overview of PostgreSQL and lists what you will learn in the following documents of w3resource PostgreSQL tutorial.
    </description> 
    </item>
	<item> 
    <title>C Basic</title>     
    <link>http://www.w3resource.com/c-programming/c-basic.php</link> 
    <description>The characters that can be used to from words, numbers, and expressions depend upon the computer on which the program is run. 
    </description> 
    </item>
	<item> 
    <title>Compile and execute C program in Linux and Windows</title>     
    <link>http://www.w3resource.com/c-programming/compile-and-execute-c-program-in-linux-and-windows.php</link> 
    <description>In this document we will see how we can compile and execute C program in Linux and Windows.The document also contains a list of C compilers available. 
    </description> 
    </item>
	<item> 
    <title>C Tutorial</title>     
    <link>http://www.w3resource.com/c-programming/c-tutorial.php</link> 
    <description>C tutorial from w3resource covering the features of C language, hundreds of examples and output, pictorial representation and explaination of program, pictorial representation and explaination of data flow. 
    </description> 
    </item>
	<item> 
    <title>C programming</title>     
    <link>http://www.w3resource.com/c-programming/programming-in-c.php</link> 
    <description>In this page we will write a small piece of code using C programming language and look into the structure of that C program with explanation and pictorial presentation. 
    </description> 
    </item>
	<item> 
    <title>PostgreSQL with php - a thorough introduction</title>     
    <link>http://w3resource.com/PostgreSQL/PostgreSQL-with-php-a-through-introduction.php</link> 
    <description>This tutorial will get you started with PostgreSQL with PHP. You will learn to create a simple web application with PostgreSQL and PHP using wapp. As you know, PostgreSQL is one of the most popular and robust opensource Relational Database Management System and PHP is perhaps the most popular opensource Server Side programming language for developing web applications.
    </description> 
    </item>
    <item> 
    <title>Schema.org Book type tutorial</title>     
    <link>http://www.w3resource.com/schema.org/Book.php</link> 
    <description>In this page we have discussed the Book type of the Schema.org. This tutorial covers description,         properties, example and output of the example using Google Rich Snippets tool.
    </description> 
    </item>
   <item> 
    <title>HTML5 Figure Element Tutorial</title>     
    <link>http://www.w3resource.com/html5/figure-tutorial.php</link> 
    <description>In this page we have discussed Description, Usage, Attributes, Example and Result, Compatibility of HTML5 figure element.
</description> 
    </item>
   <item> 
    <title>MongoDB count() cursor method</title>     
    <link>http://www.w3resource.com/mongodb/mongodb-count-cursor-method.php</link> 
    <description>In this page we are going to discuss the usage of count function in mongodb. The count() function returns the number of documents in a specified collection.
</description> 
    </item>
   <item> 
    <title>HTML5 Details tag and Element Tutorial</title>     
    <link>http://www.w3resource.com/html5/details-tag-and-element.php</link> 
    <description>In this page we have discussed Description, Usage, Attributes, Example and Result, Compatibility of HTML5 details element.
</description> 
    </item>
  <item> 
    <title>MongoDB conditional operator - $type</title>     
    <link>http://www.w3resource.com/mongodb/mongodb-type-operators.php</link> 
    <description>In this page we are going to discuss about the conditional operator $type. The $type operator is used to retrieve the matching results from the collection based on BSON type.
</description> 
    </item>
  <item> 
    <title>HTML5 Canvas Element Tutorial</title>     
    <link>http://www.w3resource.com/html5/canvas-element.php</link> 
    <description>In this page we have discussed Description, Usage, Attributes, Example and Result, Compatibility of HTML5 canvas element.</description> 
    </item>
   <item> 
    <title>HTML datalist element tutorial</title>     
    <link>http://www.w3resource.com/html5/datalist-tutorial.php</link> 
    <description>In this page we have discussed Description, Usage, Attributes, Example and Result, Browser Compatibility of HTML5 datalist element.</description> 
    </item>
     <item> 
    <title>HTML tags you will not use anymore</title>     
    <link>http://www.w3resource.com/html5/html-tags-you-will-not-use-anymore.php</link> 
    <description>With the rise of HTML5, there are certain HTML tags, which have become aobsolete. Not surprising, if you are in web design or devlopment, you have to update yourself often. So, in this tutorial we you will unlearn certain HTML tags which have become obsolete and you will learn what is better alternative for those obsolete tags.</description> 
    </item>
     <item> 
    <title>Google Plus API Tutorial</title>     
    <link>http://www.w3resource.com/API/google-plus/tutorial.php</link> 
    <description>Google Plus API for developers allows you to fetch public data form Google+. In this tutorial w3resource discusses an overview of Google Plus API, followed by detail tutorial of all the necessary steps one need to perform to successfully fetch public data from Google+.</description> 
    </item>
	 <item> 
    <title>MongoDB conditional operator - $size</title>     
    <link>http://www.w3resource.com/mongodb/mongodb-size-operators.php</link> 
    <description>In this page we are going to discuss about the conditional operator $size. The $size operator is used to retrieve those documents from the collection to match an array with the provided number of elements in it. The $size operator can not be used to find a range of sizes.</description> 
    </item>
    <item> 
    <title>JSONP tutorial</title>     
    <link>http://www.w3resource.com/JSON/JSONP.php</link> 
    <description>In this page We will discuss JSONP, i.e. JSON with padding. JSONP is used to request data from a server residing in a different domain. But why do we need a special technique to access data from a different domain? It's because of the Same Origin Policy.</description> 
    </item>
<item> 
    <title>Schema.org WebPage Type tutorial</title>     
    <link>http://www.w3resource.com/schema.org/WebPage.php</link> 
    <description>In this page we have discussed WebPage type of Schema.org in detail.</description> 
    </item>
    <item> 
    <title>MongoDB conditional operator - $or and $nor</title>     
    <link>http://www.w3resource.com/mongodb/mongodb-or-nor-operators.php</link> 
    <description>In this page we are going to discuss about the conditional operator $or and $nor. The $or operator is used to search multiple expression in a single query with only one matching criterion to be needed in a document. More than one keys and values can be used with the $or operator. The $nor operator is used to search multiple expression in a single query which does not match any of the values specified with the $nor.</description> 
    </item>
    <item> 
    <title>MongoDB conditional operator - $in and $nin</title>     
    <link>http://www.w3resource.com/mongodb/mongodb-in-operators.php</link> 
    <description>In this page we are going to discuss about the conditional operator $in and $nin.</description> 
    </item>
    <item> 
    <title>HTML5 DOCTYPE</title>     
    <link>http://www.w3resource.com/html5/doctype.php</link> 
    <description>DOCTYPE is the first thing which should be present in an HTML5 document.</description> 
    </item>
    <item> 
    <title>Introduction to node.js</title>     
    <link>http://www.w3resource.com/node.js/node.js-tutorials.php</link> 
    <description>This is a Node.js Tutorial from w3resource. You will learn About What Node.js is, History, Features,How to     install Node in Windows and in Linux, Followed by a comprehensive discussion of each of the modules of Node.js API. By    the end of this Tutorial, you will be able to develop and deploy Node.js Applications by yourself.</description> 
    </item>
      <item> 
    <title>Installing Node.js on Windows and Linux</title>     
    <link>http://www.w3resource.com/node.js/installing-node.js-windows-and-linux.php</link> 
    <description>Installing Node.js on Windows and Linux.</description> 
    </item>
    <item> 
    <title>Schema.org MusicRecording Type tutorial</title>     
    <link>http://www.w3resource.com/schema.org/MusicRecording.php</link> 
    <description>In this page we have discussed MusicRecording type of Schema.org in detail.</description> 
    </item>
    <item> 
    <title>MongoDB conditional operator - $ne</title>     
    <link>http://www.w3resource.com/mongodb/mongodb-ne-operators.php</link> 
    <description>In this page we are going to discuss about the conditional operator $ne (not equals). The $ne (not equals) operator is used to retrieve every document from a collection except for the specific ones that match certain criteria.</description> 
    </item>
    <item> 
    <title>CSS Text Align</title>     
    <link>http://www.w3resource.com/css/text/text-align.php</link> 
    <description>text-align property aligns the text in a particular direction. This property aligns the text, which is stacks of line boxes to the left or right of the inline box.teria.</description> 
    </item>
    <item> 
    <title>Schema.org MusicPlaylist Type tutorial</title>     
    <link>http://www.w3resource.com/schema.org/MusicPlaylist.php</link> 
    <description>In this page we have discussed MusicPlaylist type of Schema.org in detail.</description> 
    </item>
    <item> 
    <title>MongoDB conditional operator - $mod</title>     
    <link>http://www.w3resource.com/mongodb/mongodb-mod-operators.php</link> 
    <description>The $mod operator is used to help the user to retrieve documents from a collection for a specific field that consist an even or odd number. This can be done easily because the $mod operator calculate the remainder and checks whether it is 0 or not. It works like 'where' clause of Sql.</description> 
    </item>
    <item> 
    <title>MongoDB conditional operator - $exists</title>     
    <link>http://www.w3resource.com/mongodb/mongodb-exists-operators.php</link> 
    <description>The FULL OUTER JOIN will return all rows, as long as there's matching data in one of the tables. It includes all the rows from both the participating tables and does not select either the LEFT or RIGHT table from the JOIN key word.</description> 
    </item>
    <item> 
    <title>Twitter Bootstrap Alerts and Errors tutorial</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/alerts-and-errors-tutorial.php</link> 
    <description>In this tutorial, you will learn how to create Alerts and Errors using Twitter Bootstrap toolkit.</description> 
    </item>
    <item> 
    <title>Twitter Bootstrap Modals, tooltips and popovers tutorial</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/popover-tutorial.php</link> 
    <description>In this tutorial, you will learn how to create Modals, tooltips and popovers using Twitter Bootstrap toolkit.</description> 
    </item>
    <item> 
    <title>Schema.org Movie Type tutorial</title>     
    <link>http://www.w3resource.com/schema.org/Movie.php</link> 
    <description>In this page we have discussed Movie type of Schema.org in detail.</description> 
    </item>
    <item> 
    <title>Twitter Bootstrap Tables tutorial</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/tables-tutorial.php</link> 
    <description>In this tutorial, you will learn how to use Twitter Bootstrap toolkit to create Tables.</description> 
    </item>
    <item> 
    <title>Twitter Bootstrap Forms tutorial</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/forms-tutorial.php</link> 
    <description>In this tutorial, you will learn how to use Twitter Bootstrap toolkit to create Forms (controls and buttons).</description> 
    </item>
    <item> 
    <title>Twitter Bootstrap Navigation tutorial</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/navigation-tutorial.php</link> 
    <description>In this tutorial, you will learn how to use Twitter Bootstrap toolkit to create Navigations.</description> 
    </item>
    <item> 
    <title>Twitter Bootstrap tutorial</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/tutorial.php</link> 
    <description>Twitter Bootstrap is a toolkit to develop web apps and sites fast. It includes basic CSS and HTML for creating Grids, Layouts, Typography, Tables, Forms, Navigation, Alerts, Popovers etc.</description> 
    </item>
    <item> 
    <title>Twitter Bootstrap Grid System tutorial</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/grid-system-tutorial.php</link> 
    <description>In this tutorial, you will learn how to use Twitter Bootstrap toolkit to create a Grid System.</description> 
    </item>
    <item> 
    <title>Twitter Bootstrap Layout tutorial</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/layout-tutorial.php</link> 
    <description>In this tutorial, you will learn how to use Twitter Bootstrap toolkit to create Fixed as well as Liquid Layouts.</description> 
    </item>
    <item> 
    <title>Twitter Bootstrap Typography tutorial</title>     
    <link>http://www.w3resource.com/twitter-bootstrap/typography-tutorial.php</link> 
    <description>In this tutorial, you will learn how to use Twitter Bootstrap toolkit to create headings, paragraphs, lists and other inline elements.</description> 
    </item>

</channel>
</rss>
