Jump to content

ryuko

Member
  • Posts

    21
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About ryuko

ryuko's Achievements

0

Reputation

  1. O.K i think i have the basics down for this... this is a simple jot down it would be better with pictures but i can't right now. Vb.net application and php server ___________________________________ > ||calls and sends through http socket > > ||checks and sends data > |php chat receives/sends data ___________________________________ > > sorry for the mess ups basically through vb.net sockets it sends data to the site like so mysite.com/usernamehere/chat.php?TO=usernameto&MESSAGE=messagehere or mysite.com/usernamehere/chat.php?TO=usernameto&FROM=usernamefrom&MESSAGE=messagehere i think its simple to be more private i think not sending through the url but im not sure how to go about this again i feel i have grasped the very basics... i just need some examples or help THANK YOU ALL
  2. I think this COULD help you http://gparted.sourceforge.net/create-gparted-live.php it looks to be a simple guide to build it from scratch, looks to be what you want
  3. im not keen to smart talk sorry it doesn't need to read or save the messages... instead of using a client server i want to use my website as the actual server basing all sent messages off of it instead of having a server on there part listening all the time basically instead of: client/server >>>>*direct*>>>>client/server it does: client >>>>>>*webserver*>>>>>>>client it doesn't need to store anything on the actual server its just a way of creating the server
  4. after this time i've gotten the basics of vb.net/c++/java network programming, i've done a couple simple im services in vb.net but i would like to expand on it. creating an instant messenger with contacts chat and later a webcam and audio integration.. i dont want to have it p2p i want it to be p2s it connects to my web server it somehow saves or reads the messages and than sends them to woh they were supposed to go to... i want the user identification to be like user123@mysite.com or user123.mysite.com or even mysite.com/user123 just someway to have a personal ident to chat between people i think it would be a basic php registration and login and also have the app with the capability of the server login sorry if i have confused you by now but yeah thats my dream trying and wanting to turn it into reality... if you guys have any resources and or if you want to join in and help me that would be great !! well thank you and respond soon
  5. Yes i know of that site it hasnt been much help though... im looking for a good almost wysiwyg editor/engine
  6. Hello all, im wanting to start on some basic graphical interfaces with directx, not necisarily game programming but graphic and effect rich applications. My first goal is a 3D cube that can be moved around by mouse click/drag. i started with the driectx sdk couldnt really get started so i moved to construct they had exactly the cube tool i needed but want what im looking for directly... so i was wondering if you guys knew of any good directx developing tools for graphical rich applications... thank you all very much. sorry my keyboard is shot
  7. idc what langauge its written in or if its a premade script if i cant get this working idc but all i really need right now is a script that allows telnet logon and itdisplayas a welcome message like so server:: welcome to blahblah server:: username: client:: login user try server:: [check if correct and respond] server:: [if correct] server:: pass: client:: passhere server:: [checks again] server:: correct login access server:: welcome you logged in correctly i must not be getting something i tryed using this but it jsut displays "-1" char *msg = temp; int len, bytes_sent; len = strlen(msg); bytes_sent = send(server, msg, len, 0); cout << bytes_sent;
  8. Ok i am trying to make a telnet server, i hav started in using winsock2 in c++ this is my code #include <winsock2.h> #include <conio.h> #include <iostream> using namespace std; UINT ServerThread(LPVOID); int main(int argc, TCHAR* argv[], TCHAR* envp[]) { int nRetCode = 0; cout << "Press ESCAPE to terminate program\r\n"; switch (ServerThread(0)) { case 1: cout << "WSAStartup failed!" << endl; nRetCode = 2; case 2: cout << "INVALID_PORT thrown." << endl; nRetCode = 2; case 3: cout << "Cannot Bind to Socket." << endl; nRetCode = 2; case 4: cout << "Can't start Listener." << endl; nRetCode = 2; } return nRetCode; } UINT ServerThread(LPVOID pParam) { cout << "Starting up TCP server\r\n"; SOCKET server; WSADATA wsaData; sockaddr_in local; int wsaret=WSAStartup(0x101,&wsaData); if(wsaret!=0) { return 1; } local.sin_family=AF_INET; local.sin_addr.s_addr=INADDR_ANY; local.sin_port=htons((u_short)3000); server=socket(AF_INET,SOCK_STREAM,0); if(server==INVALID_SOCKET) { return 2; } if(bind(server,(sockaddr*)&local,sizeof(local))!=0) { return 3; } if(listen(server,10)!=0) { return 4; } SOCKET client; sockaddr_in from; int fromlen=sizeof(from); while(true) { char temp[512]; client=accept(server, (struct sockaddr*)&from,&fromlen); sprintf(temp,"welcome to my console\n"); send(client,temp,strlen(temp),0); cout << "Connection from " << inet_ntoa(from.sin_addr) <<"\r\n"; cout << "connection opened"; } cout << "closing socket"; closesocket(server); WSACleanup(); return 0; } simply what i want to do is be able to ask for a user and password and if it passes be able to have the client send text to the server for processing and sending responses back so if you guys know how to recv data from telnet will you please help !!!
  9. this may seem too big to start but im trying to start a simple OS starting with a simple prompt written in C or CPP what im asking for is any articles related o anywhere i can read i tried lots of google searches i know i need to make a 1. bootloader in ASM 2.kernel 3. GUI (not needed) i havent done alot of C basically C++ but i was wondering if you could help my thoughts begin to materialise i started with a C++ terminal type thing but its really basic and crashd often i dont think this is the prper way to do it #include <iostream> #include <string> using namespace std; int main () { begin: string cmnd; cout << "\nsimple_shell$ "; getline (cin, cmnd); if (cmnd == "login"){ cout<<"starting GUI interface"; } if (cmnd == ""){ cout<<"command not found"; goto begin; } else { cout<<"command not found"; goto begin; } return 0; } but please any resources you can point me to will help me alot
  10. dude come on i try to do good coding yet i get lazy and dont always check my codes there not proffesinal sites andthe hosting f***s my designs like my rollovers and div layout it took out most of my code and put ads in heres what it should look like <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <style type="text/css"> body{ margin: 00; padding: 00; background-color: #1b1b1b; color:silver; } #header{ width: 100%; height: 20%; background: black; float: right; } #contentmain{ width: 100%; height: 75%; float:center; background-color: #1b1b1b; } #contentleft{ width:75%; height:100%; float:left; background:white; background-color: #1b1b1b; border: thin #515151 solid; } #contentright{ width:25%; height:100%; float:right; background:blue; background-color: #141414; border: thin #515151 solid; } #navcontainer ul { margin: 0; padding: 0; list-style-type: none; text-align: right; } #navcontainer ul li { display: inline; } #navcontainer ul li a { text-decoration: none; padding: .2em 1em; color: #fff; background-color: #036; background-image:url(images/navbg.bmp); } #navcontainer ul li a:hover { color: #fff; background-color: #369; background-image:url(images/navbghover.bmp); background-repeat: no-repeat; } </style> <title></title> </head> <body> <div id="header"><img src="images/logotop.jpg" border="0"> <div id="navcontainer"> <ul> <li><a href="#">link1</a></li> <li><a href="#">link2</a></li> <li><a href="#">link3</a></li> <li><a href="#">link4</a></li> <li><a href="#">link5</a></li> </ul> </div> </div> <div id="contentmain"> <div id="contentright"><font color="#FF00FF">this is the side for extra content blah blah blah</font></div> <div id="contentleft"><font color="#CCFF00">hello, welcome to infizable</font> this is still in development</div> </div> </body> </html> if i had better hosting or if i was trying to impress anyone it would look better dont you talk bad about what im saying theres nothing wrong with asp or vb its BASIC and easy to learn i dont talk bad about your posts your just being a stuck up a**
  11. ASP is not out of date and asp.net is harder to learn plus you can use perl/vb and more in ASP and ASPX Well for webdesign (im not getting into programming anymore) try dynamic-html > dhtmlgoodies.com after learning javascript i would get into AJAX and dynamic content and loading instead of framesets w3schools is great i used them alot for div layouts try this tut it shows alot about aligning and all i currently use the float and clear from it > http://www.devarticles.com/c/a/Web-Style-S...ayout-with-CSS/ CSS is realy good and needed to learn i would also get into a little XML for ASP try > http://msdn.microsoft.com/en-us/library/ms972337.aspx and mainly you can get most of this from w3schools and also try dynamicdrive.com for snippets and code to get started disorganized but thats a hard proof of the basics and follow KIS (keep it simple) and content is very inportant but design gives the content a eye popping home my sites that i have on the web (my comp crashed) SEKKEI.gq.nu and http://the-point.gq.nu/ARI/$infizable_bin$/ there both plain but my computer did crash
  12. Well Im glad to help i know how it is im good at designing websites and graphic editing im looking to for some programming tuts im on dialup so i cant download interpretors or compilers so im stuck without C++ or C but if you have windows xp or vista (cant find how to on vista) but you goto microsoft word and click tools>macros>visual basic editor or press alt-F11 you can easily get into VB im not sure on exporting to exe but its good for starts !! well thanks for talking its always nice
  13. With programming i would start with VB im not sure about VB.net but also i would look into HTA it is mainly VB programming microsoft has lots of tutorials for HTA/VBS just goto there website once you learn VB/VBS then i would start on asp as its also microsoft and basically VBS server code i would start to learn basic html as i only use div,headers,span,P in mine its not to hard i would recommend DIV/CSS for layout design instead of tables with sql and databases i would start with php/perl/asp for each one after learning the langauge theres no need to learn all three so choose one unless you like to broaden your horizon basically thats it or atleast all i know sorry for my spelling -Ryuko
  14. hey man thanks for the site i know asp and i have a webserver supporting it but its realy difficult with a dial up connection i live in a small village in colorado that doesnt have satulite even so thats my difficulty well realy my question wasnt answered but i did get some help on going to asp for this i didnt realy think of it. THANKS!!
×
×
  • Create New...