JavaScript : Ping Pong Game Code
Having the knowledge of moving images using JavaScript, we’ll be creating a small Ping Pong game as an example for this post. Today we’ll learn to do a few new things in JavaScript: 1. Executing some...
View ArticleJavaScript : Positioning (Moving) an Image
In this post we’re going to learn how we can move an image around using JavaScript. We’ll have four control links (Left, Right, Up, Down) that’ll move the image. Reading along you’ll learn: What the...
View ArticleJavaScript : Countdown Timer
Well , This Post Based Upon one of JavaScript’s powerful method getElementById(). This is documents’s method which can be used to access HTML entities within JavaScript with the help of their IDs...
View ArticleExecuting PHP Code at Run-Time
Executing PHP Code at Run-Time In this Post we are going to discuss about one of the interesting functions of PHP. The eval() function.It can execute PHP code from inside scripts. This means, the...
View ArticleStructural Design in VHDL
Structural Design : We have complete the study of Entity & Architecture with example (If not click here). Another way to write the mux design is to instantiate subcomponents that perform smaller...
View ArticleSequential Behavior of VHDL
Sequential Behavior : There is yet another way to describe the functionality of a mux device in VHDL. The fact that VHDL has so many possible representations for similar functionality is what...
View ArticleCircular Matrix in C++
This programme is designed for circular matrix representation in which matrix inputted by user.#include<stdio.h> #include<math.h> void main() { char ch; do { int...
View Article