Saturday, June 12, 2010
Sunday, May 16, 2010
Airplane Oops! Situations
Better on the ground than in the air
Short of the actual crash, most of the accidents depicted here occurred without loss of human life, and thus can be described as "Oops". There is a site "Aviation Safety" where many troublesome situations are listed and discussed, with full background information for each. What you will see here is a collection of images from various such occasions, sent to us by readers who found them or even witnessed the events.
On the Ground
The hazards start while the plane is still on the runway. Most of the time they are results of the "reckless driving" of the taxiing & service vehicles.
Short of the actual crash, most of the accidents depicted here occurred without loss of human life, and thus can be described as "Oops". There is a site "Aviation Safety" where many troublesome situations are listed and discussed, with full background information for each. What you will see here is a collection of images from various such occasions, sent to us by readers who found them or even witnessed the events.
On the Ground
The hazards start while the plane is still on the runway. Most of the time they are results of the "reckless driving" of the taxiing & service vehicles.
Friday, May 14, 2010
Thursday, May 13, 2010
Monday, May 10, 2010
I thing there have an error in vi editor...
#include< ncurses.h >
int main()
{
initscr();
int y,x;
getmaxyx(stdscr,y,x);
int i=0;
int j=0;
Sunday, May 9, 2010
IPE 2010 1st Semester Final Paper 2b Ncurses My Answer
//IPE 2010 1st Semester Final Paper 2(b)
//Naduntw.blogspot.com
#include< ncurses.h >
int main()
{
initscr(); //Initialize Screen
start_color(); //Initialize Colors
init_pair(1,2,4); //Define Color Pair 1
init_pair(2,6,5); //Define Color Pair 2
init_pair(3,3,7); //Define Color Pair 3
init_pair(4,5,2); //Define Color Pair 4
init_pair(5,7,3); //Define Color Pair 5
int x=16; //Declaring and assigning Start Column value
int y=11; //Declaring and assigning Start Row value
attrset(COLOR_PAIR(1)); //Make current color scheme to Pair 1
for(;y<17;y++,x--)
{
move(y,x);
Wednesday, May 5, 2010
My First C++ Computer Program
#include
using namespace std;
int main()
{
cout<<"Hello World"<< endl ;
return 0;
}
My First C Computer Program
#include
main()
{
printf("Hello World\n");
}
Subscribe to:
Posts (Atom)