All of us know what the system is? But if some one asks us what the system analysis is most of us fail to answer
Author: Chandan
Calling a function at certain interval of time
Here is the piece of code that helps you to update a function at certain interval of time. The time is usually calculated in milliseconds.
Code for drawing a line using Bresenham algorithm in Javascript
Here is the snippet for drawing a line in javascript. function drawline(xa,ya,xb,yb){ var dx=Math.abs(xa-xb); var dy=Math.abs(ya-yb); var p=2*dy-dx; var twody=2*dy; var twodydx=2*(dy-dx); var x,y,xend;
Drawing a single pixel on Javascript
well after a long procedure and searching for a whole day to draw a single pixel on a HTML5 canvas, this code as I wrote
Project Management
Many of us don’t know about the project. So lets start with the formal definition of the project and here it goes: It is a
Why windows azure?
I guess most of us know about the windows azure. It’s the cloud computing platform provided by Microsoft Corporation. I have mention these things in
Online compilers for your codes
If you are a programmer, you must be compiling your code stuffs in the PC. But are you aware that there are some online compilers.
Hello world in C#
// A Hello World! program in C#using System;namespace HelloWorld{ class Hello { static void Main() { System.Console.WriteLine(“Hello World!”); // Keep the console
FAST Phases
So what we need to know is another phases rather than the classic phases. It is new methodology for the system development process. The Fast
Model driven strategy for system development
Before I want to explain about the model driven development strategy I want to go through the definition that I have learnt about it. And