Context modeling is basically the modeling, that is used to illustrate the operational context of the system that is to be made. This modeling shows
Author: Chandan
Blogging: share and grow
[slideshare id=17335793&w=427&h=356&sc=no] BLOGGING from Chandan Gupta
Software Quality
Basically if we talk about the software quality there is no clear answer to it. The answer varies from person to person. So following any
System Analysis: A step to system development
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
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.