|
-
January 22nd, 2002, 07:01 AM
#891
Did you know that the name Greg or Gregory truns me on?
No, I didn't, but now that I do...let's meet!!!
Greg
\"Do you know what people are most afraid of?
What they don\'t understand.
When we don\'t understand, we turn to our assumptions.\"
-- William Forrester
-
January 22nd, 2002, 07:27 AM
#892
Any one want an anonymous proxy list for :8080 ?
m59.coq-col.bc.ca:8080
216.234.199.96:8080
207.50.176.125:8080
dns.wit.pref.chiba.jp:8080
ns.nei.co.jp:8080
proxy-ama.miracle.ne.jp:8080
168.169.147.179:8080
209.18.204.5:8080
216.206.88.135:8080
65.69.103.77:8080
dyna0.islandia.is:8080
207.150.83.200:8080
210.83.124.24:8080
63.151.192.141:8080
207.236.90.180:8080
216.12.29.195:8080
24.244.128.19:8080
207.35.8.102:8080
216-210-163-62.atgi.net:8080
148.243.205.163:8080
195.68.114.9:8080
plaza5proxy.aine.co.jp:8080
ns.ohmi-sangyo.co.jp:8080
200.38.166.3:8080
209.17.168.83:8080
216.219.16.5:8080
ftp.posinc.co.kr:8080
ns.shin-shin.co.jp:8080
66.21.39.52:8080
63.151.192.139:8080
ipvpn023083.netvigator.com:8080
ns.chuyodenki.co.jp:8080
200.245.82.66:8080
202.101.228.200:8080
207.232.154.44:8080
ip-f1-038.ctbctelecom.com.br:8080
62.144.84.214:8080
202.109.65.251:8080
62.159.140.130:8080
210.201.31.226:8080
63-216-91-116.sdsl.cais.net:8080
202.97.200.98:8080
www.stdavid.org:8080
NT01.icsa.co.uk:8080
200.193.24.178:8080
194.247.87.4:8080
195.185.63.165:8080
oavc-unet.ocn.ne.jp:8080
211.20.74.108:8080
61.13.16.6:8080
customer-148-233-18-65.uninet.net.mx:8080
200.193.138.210:8080
ns.tokushima-th.ed.jp:8080
151.39.240.2:8080
ipvpn027155.netvigator.com:8080
194.19.28.162:8080
61.152.215.165:8080
w066.z064002088.nyc-ny.dsl.cnc.net:8080
61.152.142.43:8080
195.68.114.2:8080
207.232.162.130:8080
sun.wi.surfinn.com:8080
203.249.126.11:8080
57.68.137.6:8080
195.15.3.145:8080
195.39.131.188:8080
miso-sv.omh.co.jp:8080
203.38.68.2:8080
krupsusa.com:8080
www.city.niimi.okayama.jp:8080
dsl254-116-207.nyc1.dsl.speakeasy.net:8080
202.224.79.122:8080
211.21.94.210:8080
193.188.95.146:8080
backoffice.colourcity.com:8080
195.139.77.66:8080
mail.altmann-rechtsanwalt.de:8080
65.209.72.34:8080
202.96.244.161:8080
216.72.127.179:8080
mail.uraltelecom.ru:8080
195.15.3.189:8080
202.29.4.252:8080
200.13.229.98:8080
200.37.247.242:8080
ipcamera.relayserve.com:8080
dns1.tk-toka.co.jp:8080
tokio.fu-ta-ba.co.jp:8080
210.74.140.8:8080
168.187.123.12:8080
212.118.2.194:8080
rambam.maimonides.org:8080
host091050.metrored.net.ar:8080
nc13.relayserve.com:8080
210.145.104.3:8080
power.relayserve.com:8080
210.69.56.3:8080
195.15.3.130:8080
208.52.19.133:8080
202.58.198.120:8080
sah2.ye:8080
leadercsa.com:8080
206.49.33.250:8080
211.21.54.2:8080
216.242.167.66:8080
mail.ishi.co.jp:8080
195.96.148.194:8080
202.5.64.60:8080
mail.spidercom.net:8080
203.207.173.166:8080
veigafirewall.uva.br:8080
host091133.metrored.net.ar:8080
200.31.25.197:8080
avicena.iasi.rdsnet.ro:8080
mail.pared.edu.au:8080
202.29.56.130:8080
-
January 22nd, 2002, 07:29 AM
#893
or how about the source code for a basic window?
#include <windows.h>
/* Declare Windows procedure */
LRESULT CALLBACK WindowProcedure(HWND, UINT, WPARAM, LPARAM);
/* Make the class name into a global variable */
char szClassName[ ] = "WindowsApp";
int WINAPI WinMain(HINSTANCE hThisInstance, HINSTANCE hPrevInstance, LPSTR lpszArgument, int nFunsterStil)
{
HWND hwnd; /* This is the handle for our window */
MSG messages; /* Here messages to the application are saved */
WNDCLASSEX wincl; /* Data structure for the windowclass */
/* The Window structure */
wincl.hInstance = hThisInstance;
wincl.lpszClassName = szClassName;
wincl.lpfnWndProc = WindowProcedure; /* This function is called by windows */
wincl.style = CS_DBLCLKS; /* Catch double-clicks */
wincl.cbSize = sizeof(WNDCLASSEX);
/* Use default icon and mouse-pointer */
wincl.hIcon = LoadIcon(NULL, IDI_APPLICATION);
wincl.hIconSm = LoadIcon(NULL, IDI_APPLICATION);
wincl.hCursor = LoadCursor(NULL, IDC_ARROW);
wincl.lpszMenuName = NULL; /* No menu */
wincl.cbClsExtra = 0; /* No extra bytes after the window class */
wincl.cbWndExtra = 0; /* structure or the window instance */
/* Use light-gray as the background of the window */
wincl.hbrBackground = (HBRUSH) GetStockObject(LTGRAY_BRUSH);
/* Register the window class, if fail quit the program */
if(!RegisterClassEx(&wincl)) return 0;
/* The class is registered, let's create the program*/
hwnd = CreateWindowEx(
0, /* Extended possibilites for variation */
szClassName, /* Classname */
"Windows App", /* Title Text */
WS_OVERLAPPEDWINDOW, /* default window */
CW_USEDEFAULT, /* Windows decides the position */
CW_USEDEFAULT, /* where the window ends up on the screen */
544, /* The programs width */
375, /* and height in pixels */
HWND_DESKTOP, /* The window is a child-window to desktop */
NULL, /* No menu */
hThisInstance, /* Program Instance handler */
NULL /* No Window Creation data */
);
/* Make the window visible on the screen */
ShowWindow(hwnd, nFunsterStil);
/* Run the message loop. It will run until GetMessage( ) returns 0 */
while(GetMessage(&messages, NULL, 0, 0))
{
/* Translate virtual-key messages into character messages */
TranslateMessage(&messages);
/* Send message to WindowProcedure */
DispatchMessage(&messages);
}
/* The program return-value is 0 - The value that PostQuitMessage( ) gave */
return messages.wParam;
}
/* This function is called by the Windows function DispatchMessage( ) */
LRESULT CALLBACK WindowProcedure(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message) /* handle the messages */
{
case WM_DESTROY:
PostQuitMessage(0); /* send a WM_QUIT to the message queue */
break;
default: /* for messages that we don't deal with */
return DefWindowProc(hwnd, message, wParam, lParam);
}
return 0;
}
-
January 22nd, 2002, 10:04 AM
#894
i just passed the ccna I wonder if it was really worht my time ? what do yo think ....
-
January 22nd, 2002, 10:22 AM
#895
-
January 22nd, 2002, 11:26 AM
#896
5150 how the hell did you get the source code for that?
-
January 22nd, 2002, 11:40 AM
#897
ccna stands for cisco certified network associate ...
it's the first off all cisco's certs ... to lead to the mighty cce cisco ceritfied experts... which is hard as hell to get ...
now i'm working on the ccda (design associate)
-
January 22nd, 2002, 04:06 PM
#898
ohh man man...this is not stoping at all...
intruder...
-
January 22nd, 2002, 04:30 PM
#899
In reference to the visual basic for a basic window, you could replicate a window fairly easy. It's just a matter of whether or not you want to use VB for it. I'm wondering if it'd be worth trying to write from scratch a 'basic' OS using VB to interact with the hardware for reporting what you have and whatnot and getting into a very very very rudimentary "shell".
...
Nah, probably not. I'd rather do it in perl.
We the willing, led by the unknowing, have been doing the impossible for the ungrateful. We have done so much with so little for so long that we are now qualified to do just about anything with almost nothing.
-
January 22nd, 2002, 04:45 PM
#900
Member
Im pretty sure that AO can do a bit better than sever pages, heres my 2 cents
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
|