program

Iphone Developer Program

Well im on the edge about paying $99 dollars to join the Iphone Developer Program, I have the sdk, but im wondering if the program comes with programming lessons or tutorials, If it doesnt do any of you know where i can learn to make game with opengl es for the iphone/ipod touch?? So my main question is where can i get some good tutori...

windows: command line used to launch a program

How can I find out the command line options a program was launched with under windows? ...

Standard input and output in c

I have a problem with stdout and stdin .when i store data by using stdout i cant getback the same data using stdin . so please help me how can i solve my problem. Ram ...

simple wsdl python

how to write simple wsdl in python ? ...

how to secure my c# program(.exe) for using on one drive only.

Hello, I have c# program (.exe), I will give it to other people, and want that exe to work only from where it was run the first time, any copy should no not work. How can I do it? VERY THANKS ...

CMD: Search for program and variable directory

Hello, i want to search for a program, like this: cd "C:\" for /f "delims=" %%f in ('dir /b /s myprogram.exe') do ( ) First problem: i want to let it search trough all hard drives (like 'cd My Computer' or something like that?) After that, it should make a variable of the directory in which that program is. How to do that in batch/c...

Anybody know of a good logic layout application?

I don't know exactly what to call this kind of application, but I'm looking for a good program that'll allow me to layout and test logical circuits. Something that has ands, ors, xors, nots, transistors, and all the basic logical components. Something kind of like UML except with basic electrical components. Something that could generate...

How to hide the constructor and "general" functions from individual objects?

I'm looking for advice on the best way to structure my program. Here is what I have now, and the problems I see with the design: I have a class with a private constructor and a submit() method, to carefully control the objects created, and every object created is added to a global list. The program has several functions that perform "bi...

Does Java Web Start give a default program folder?

For Java Web Start is there a default place to store and access data related to my program? Or do I need to create a folder? For Java Web Start (assuming I don't get a program folder) is it standard to just create on in Program Files for window, Applications for mac, etc? ...

What are some types of programs I could write to reinforce/advance my early skillset?

I'm coming to the end of my intro programming class, we're using java and have been doing command line programs so far, no gui's which I've enjoyed quite a bit. So far in the class the programming assignments have been somewhat challenging but leave me wishing for a bit more. I find myself wanting to write a program when I'm bored but ...

Learning new languages: Programming Quizzes

Possible duplicates: http://stackoverflow.com/questions/24692/where-can-you-find-fun-educational-programming-challenges http://stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program http://stackoverflow.com/questions/6327/what-are-your-programming-exercises etc... Hello, I like to learn new programming languages ...

Multiple accounts on iPhone Developer Program

I am a developer at iPhone Developer Program assigned to the project for the company. I would like to buy my own licence to develop as an independent programmer. How to do it? Do I need another Apple ID? ...

Write a function int caluculate_sum(int *a, int size) that calculates the sum of all the elements in an array.

This is what I was given to start with. int main(){ int a[5] = {0,1,2,3,4}; printf("Sum of elements of a: %d\n", calculate_sum(a,5)); return 0; } Here's what I've got, I don't know why it doesn't work, please help me. #include <stdio.h> int main() { int a[5] = {0,1,2,3,4}; int b; ...

External program blocks when run by Runtime exec

Hi I'm attempting to launch an instance of the VideoLAN program from within a java application. One of the ways I've tried to do this is shown here: Process p = Runtime.getRuntime().exec("\"C:\\Program Files\\VideoLAN\\VLC\\vlc.exe\" \"http://www.dr.dk/Forms/Published/PlaylistGen.aspx?qid=1316859&amp;odp=true\" :sout=#std{access=udp,mu...

How to save a program's progress, and resume later?

You may know a lot of programs, e.g some password cracking programs, we can stop them while they're running, and when we run the program again (with or without entering a same input), they will be able to continue from where they have left. I wonder what kind of technique those programs are using? [Edit] I am writing a program mainly b...

How to avoid multiple instances of a program?

I need to find a right way to prevent two running instances of my (Python) program. I am currently using the following method. On Windows, os.popen('wmic process get caption,processid | findstr `programname.exe`') On Linux, os.popen('ps x | grep `programname`') It seems to work fine for now. Is this method correct? Can someone sug...

multi-thread access MySQL error

I have written a simple multi-threaded C program to access MySQL,it works fine except when i add usleep() or sleep() function in each thread function. i created two pthreads in the main method, int main(){ mysql_library_init(0,NULL,NULL); printf("Hello world!\n"); init_pool(&p,100); pthread_t producer; ...

What can cause an abnormal program termination?

MFC application (uses SQLite3.dll for DB access, along with other DLLs for accessing hardware) terminates abnormally. There is no particular sequence of termination :( My application is a Single threaded Application Uses exception handling Uses more than 6 DLLs to access different hardwares Runs on WinXP SP2 Initially i thought it m...

Distributing Python programs

How do I let my friends use my Python programs? They don't have python installed, but they can use command line programs. I don't have the skill to write GUI. Let, say I am writing some calculus calculator, with a lot of custom modules and files. How do I share it? ...

What is the best way to start learning C#?

I have a little programming experience with vb 6 and vb.net not much. Please tell me the best way to become an expert C# programmer and I know it will take a long time. ...