Trees in C++
Trees in C++
Now, we know the basics of efficiency analysis and if I find some space in tutorial, efficiency calculation will be discussed but mean while, it is very important to cover other important data structures.
Inventory System
Here's an Updated version of what I had uploaded before. Username: admin Password: admin Hope this helps. Also you need to download dotnetbar to use the system. You can google it. :)
How To Use a REST API in PHP
Introduction:
This tutorial is on how to use an API in PHP.
What Is An API?
An API is an Application Programming Interface and is used as a middle stepping stone for external applications to use the functions of an internal application. An example of this would be the Skype API. The Skype API allows external applications on the users computer to access their Skype account via the Skype4ComLib API.
REST API:
There are a few different types of APIs, we'll be using an example REST in this tutorial.
Login Form in Android (Phonegap)
Hi guys. I want to share my knowledge about mobile development using HTML,CSS,JQuery etc. Here is my sample. and soon implement :) enjoy! visit my blog. My Blog
For Each Loop in C# .NET
Introduction:
This tutorial will be on how to use a 'foreach' loop in C# .NET.
ForEach:
A ForEach loop in C# is used to iterate through a list of elements held within one location. An example of this could be a list of usernames which are allowed to login to the program.
Read More Button Using jQuery
This project will teach you how to create a read more button using jQuery. This is very useful for blog site with a large content. A portion of the content are excerpted and the other part hidden. By clicking the read more button, the whole content will be displayed. Hope you learn from this.
Efficiency Analysis in C++
While explaining previous tutorials, I was finding it difficult to explain various functions as I could talk in terms of efficiency and order. So, I have decided to include this earlier.
In this tutorial, you will learn
1. What efficiency means.
2. Why time is more important than space.
3. The meaning of growth rate.
4. Explain different orders of growth.
What is efficiency of a program?
Efficiency of a program is directly related to the time and computer space it needs for execution.
Dynamic Multiplication Table Using PHP
In this code you will know how to create a simple multiplication table in PHP. How it works? You will just input the range. For example if you will input it will display like this 1 2 3 4 5 2 4 6 8 10 3 6 9 12 15 4 8 12 16 20 5 10 15 20 25
Countdown Timer in JavaScript
This project will teach you how to create a countdown timer in an easiest way by using jQuery plugin. Download countdown.js(just search countdown.js) and include it to your page. You can also modify the target date. In my example, I created a coming soon page which is the countdown of when the game is to be released. Hope you learn from this.