No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
10 Posted Topics
Re: I'm working on one myself, and for 3D graphics I'm using Ogre3D (its pretty damn good). its LGPL so you wont (necicarily) have to release your source code if thats an issue for you... I'm working on my own networking engine because that was like my "target" as a completed … | |
Hi guys. I'm aware of the requirement to specify std:: as the namespace for string in some way ( whether it be using namespace std etc) - but the following error has stumped me as to its cause. [CODE] $ g++ Conf.cpp Conf.cpp:33: error: ‘string’ in namespace ‘std’ does not … | |
Hi, I'm trying to create an array or <list> of different objects ( of different type). All of the objects will have parent objects of a Manager type, but each one ( as a singleton) will be in the array/list. It's for some networking code I'm building, where each incoming … | |
Hi, I've just been looking at Hello World applications for programmign CGI's - and ive discovered that: [CODE]#include <stdio.h> int main(void) { printf("Content-Type: text/plain;charset=us-ascii\n\n"); printf("Hello world\n\n"); return 0; }[/CODE] Compiles to about 15.4 kb, compared to: [CODE]#include <iostream> using namespace std; int main() { cout<<"Content-type: text/plain"<<endl<<endl; cout<<"Hello World!"<<endl; return 0; … | |
Hi, Firstly Ill say that I'm a comlete newbie to perl, and this is more of an investigation question than a code one. I want to use perl for a CGI script- however I need the source code to be completely closed source - so that users cant decompile it … | |
Hi, Im trying to find out about redirecting my site to another daomain - and I couldnt quite pick the right forum to post in so this seemed the best one since im most familiar with PHP. short and to the point. xyz.com I want that to be viewing abc.def.com … | |
Hi, I recently discovered a few small changes to my systen: explorer: tools -> options was missing. re-enabled through a registry edit taskmgr: file -> new task (run...) is still missing. Cannot find how to re enable. ive donea bit of reading, and Trend Micro ( here: [url]http://www.trendmicro.com/vinfo/virusencyclo/default5.asp?VName=WORM%5FYAHLOVER%2EAL&VSect=Sn[/url]) shows what … ![]() | |
Hi. *** SHORT QUSETION: Is there a way I can run a <large> socket server withought having to have a thread for each client/socket created? ***LONGER EXPLAINATION IVe recently written a small network program, that sends messages over TCP or UDP... depending on user input. I want ot adapt that … | |
Hi, Im relatively experienced with the Python language, but i have a smaller knowledge of its modules etc. Im familiar with Tkinter, basic sockets, basic threading, math ( i know the most about). Im looking for a way to print to a printer. I can read from files easily - … | |
Re: This is jsut off the top of my head, but its simewhere in he "lib" folder of your python installation. if your on windows: import sys print sys.path that will list the locations that python searches to look for modules, ie, to import it will scan those directories to find … |
The End.