Archive for the ‘Programming’ Category

Internet Technologies Prelim Activities

Thursday, July 10th, 2008

http://www.uic.edu.ph/elms/uploads/IT213-RJT1973/karlpogz.zip

^_^

Increase your VISITS now!

Friday, February 29th, 2008

This is just a simple php code that i made that will auto visit your site after it loads the site simple looping actually. All you have to do is visit the link below and input your desired url to be visited please include the http:// and then leave that page active in your browser as the code needs to loop all the time. Just make sure your url doesn’t contain too much image as it lowers the process. Have fun!

Edited my previous codes. Since google must check the user if he stayed in the website for 1 minute. So i changed the timer to 1 minute. Thx borly!

http://dcwarez.net/test2.html

Please comment satisfied users! LOL!

Web Programming Midterm Activity #2

Wednesday, January 30th, 2008

Can’t post the codes here since i’m using the old wordpress so please visit the other site.

Visit Click!

My graphics.h substitute in C++

Friday, November 23rd, 2007

I used this header fill in our Data Structure.

Just post comments if you have any problems using them. I know you do. =p

karlpox.h

karlpox2.h

c++ codes

Saturday, August 11th, 2007

#include
#include
using namespace std;
int main()
{
int limit;
cout<<"Enter Number of Inputs: ";
cin>>limit;
string name[limit];
int num[limit], max, min, ma=0, mi=0;
for ( int a=0; a!=limit; a++ ) {
cout<<"Enter Name of User: ";
cin>>name[a];
cout<<"Enter Number: ";
cin>>num[a];
max = num[0];
min = num[0];
}
for ( int a=0; a!=limit; a++ ) {
if ( max < num[a] ) {
max = num[a];
ma = a;
}
if ( min > num[a] ) {
min = num[a];
mi = a;
}
}
cout< cout< getch();
}