Posting this blog via windows 8 app of wordpress.com. Its just amazing. Those who are using windows 8 I request them to install this app
Author: Chandan
Skipping the lock screen in windows 8
As we start the machine having windows 8, we see a start screen with the pictures. This gives OS a load to load that image.
Developing windows 8 apps
[slideshare id=17557525&doc=developingwindows8apps-130323123218-phpapp02]
Data Flow Diagram ( DFD )
Data Flow Diagrams (DFDs) are fundamental tools in software engineering and systems analysis that visualize how data moves through a system. Unlike flowcharts that show
Context Modeling : An approach to the system modeling
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
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;