Tagged Questions
0
votes
0answers
41 views
Pattern matching in a flash video game and send mouse click into that region in linux
I'm trying to make an automation tool to play a flash game or a video game for the purpose of learning. I found that in Windows we can use AutoIT to locate a specific region on the screen and ...
1
vote
1answer
73 views
compile C program in multiple folders
I have a bunch of directories with C programs. I need to compile them one by one and use the result in the main Program.
So my Main program traverse in the Directory structure [I am not sure what the ...
10
votes
3answers
409 views
Is there command-line tool to extract typedef, structure, enumeration, variable, function from a C or C++ file?
I am desiring a command-line tool to extract a definition or declaration (typedef, structure, enumeration, variable, or function) from a C or C++ source file. Also a way to replace an existing ...
9
votes
8answers
817 views
Automatic tool for checking code conventions for C/C++
We have students submit exercises in a course while they have to adhere to some code conventions. For example, functions names should be in camelCase. Function length should not exceed 50 lines (The ...
0
votes
4answers
118 views
Compilation script
I want to know a good way to compile a program that uses many files and I want to avoid to recompile unmodified files.
It is for Linux, and I am looking for something that is different from Makefile.
...
2
votes
2answers
257 views
Where do I begin learning to program bots?
I don't know what they're called but I want to learn to program bots that perform tasks within a game or software. But I have no idea how to even make a program that does stuff on other ...
0
votes
1answer
149 views
Automation tools for building C application using Notepad
I'm a novice in C programming and I just use notepad to code my C application. Now I'm learning how to create apache http server module in C. I know how to create C module for apache but the process ...
7
votes
2answers
2k views
GDB auto stepping - automatic printout of lines, while free running?
I often end up needing this, and I'm not even sure I formulated my question correctly - but cannot really find any related simple explanation ... In essence, I would like to be able to set a ...
3
votes
4answers
118 views
Determine which Unit Tests to Run Based on Diffs
Does anyone know of a tool that can help determine which unit tests should be run based on the diffs from a commit?
For example, assume a developer commits something that only changes one line of ...
1
vote
2answers
536 views
Automatic structure initialisation in c/Linux
I am back into c/Linux. The question might look stupid, but relevant after working in c# etc.
I have some structures inside structures and the hierarchy level is more than 5. In such a case, I am ...
4
votes
6answers
1k views
I need a tool to find duplicates or similar blocks of text in a singular text file or set of text files
I want to automate moving duplicate or similar C code into functions.
This must work under Linux.
6
votes
3answers
2k views
How can I programmatically create PowerPoint presentations. On Linux. For Free
I'd like to create a PowerPoint (not Javascript/HTML/PDF/Keynote/.mov) using code (any language, C preferred) for free.
(I've seen this SO question which references how to create them in C#)
Is this ...
0
votes
4answers
3k views
How to give input to a windows application programmatically?
This is with reference to this question:
How to read output and give input to a program from c program?
I found the answer to the above question very useful. In the same way can I do it for windows ...