Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~4K People Reached
Favorite Tags
Member Avatar for stymiee

I use [url=http://www.en.wampserver.com/]WAMP[/url] to develop my PHP/MySQL applications locally before moving them to a production server. I want to start teaching myself Python and wish to add Python to my installation. I have downloaded and installed Python 2.5 and also installed mod_python. Unfortunately getting Apache to recognize that Python is …

Member Avatar for tweetychums
0
3K
Member Avatar for VelcroMan

Hi, i have som functions in a header file. But i get errors at compilation. [CODE]#include <stdio.h> //#include <limits.h> #include <math.h> #include <string.h> //define error codes enum { PERROR_FILEOPEN, PERROR_FILECLOSE }; //other defines #define P_LINELIMIT 512 //globally needed variables int P_Error = 0; char P_Line[P_LINELIMIT]; //typedefs typedef FILE P_File; //Error …

Member Avatar for ArkM
0
172
Member Avatar for VelcroMan

Hi, i want to match a function-call in a text file. Which means: [CODE]print(); pRinT54(); print (); print () );[/CODE] I'm using this regexp, which only matches if there are no spaces: [CODE]((?:[A-Za-z_][A-Za-z_0-9]*)(\\s*)(\\(.*\\))(\\s*)(;))[/CODE] Sorry for the ugly regexp :( Anyone have any idea why it doesn't match if there are …

Member Avatar for pritaeas
0
97
Member Avatar for VelcroMan

Hi, i'm reading lines from a text file with a StreamReader. If i read this line: Hello\nWorld and then print it with Console.Write() it will print \n, but i want it to print a newline. How can i do that?

Member Avatar for Antenka
0
73
Member Avatar for VelcroMan

Hi, i'm building a Linux system from scratch. My goal is to make it into a Security & Forensics LiveCD. (Something like a simple Backtrack). Now i just wondered if you know of any good security, forensics, networking (or any other relevant) app/package that you would like to see in …

Member Avatar for Belrog
0
96
Member Avatar for 13L4D3

Well i am a starter in programming and need ur help. M using older version of borland c++ for programming. M trying to make a program which adds users login and password information and also verifies the correct login and password by accessing the contents of those files. but there …

Member Avatar for 13L4D3
0
170
Member Avatar for VelcroMan

Any way to get info about the battery in a laptop? Like how many % is left, and for how long that will last?

Member Avatar for VelcroMan
0
74
Member Avatar for VelcroMan

I'm trying to use the BlueSoleil SDK with Python. To do this i use ctypes to call the BlueSoleil DLL. Here is the code: [code=python] import ctypes print ctypes.cdll.BsSDK.Btsdk_Init() print ctypes.cdll.BsSDK.Btsdk_StartBluetooth() print ctypes.cdll.BsSDK.Btsdk_StartDeviceDiscovery(0,0,0) ## print ctypes.cdll.BsSDK.Btsdk_GetInquiredDevices(None,None) [/code] The last call should return the number of active BT devices around, which …

0
69
Member Avatar for VelcroMan

Hi all, are there any (in windows) way of programming for multiple Bluetooth-stacks without having to use several SDK's? Or will i simply have to write code for the BlueSoleil, some more for the Toshiba stack, another for Widcomm and so on?

0
32