Forum: C
Aug 24th, 2007, 9:29 PM
|
|
Replies: 16
Views: 473
|
Forum: C
Aug 24th, 2007, 8:17 PM
|
|
Replies: 16
Views: 473
|
Forum: C
Aug 17th, 2007, 5:57 PM
|
|
Replies: 5
Views: 236
you need to use pkg-config for gcc to find the...
you need to use pkg-config for gcc to find the headers:
gcc `pkg-config --cflags gtk+-2.0` `pkg-config --libs gtk+-2.0` main.c -o main
First pkg-config invocation gets the required compiler flags to...
|
Forum: C
Aug 17th, 2007, 9:23 AM
|
|
Replies: 5
Views: 236
|
Forum: C
Aug 16th, 2007, 10:58 PM
|
|
Replies: 5
Views: 202
|
Forum: Coder's Corner Lounge
Aug 16th, 2007, 12:51 PM
|
|
Replies: 11
Views: 291
Not exactly. Newer models don't have TPM chips...
Not exactly. Newer models don't have TPM chips (or at the least, OS X doesn't use them in any way). You have 2 main factors preventing you from running OS X on a mainstream PC:
1) EFI, the Macs use...
|
Forum: C
Aug 14th, 2007, 3:04 PM
|
|
Replies: 17
Views: 556
|
Forum: Coder's Corner Lounge
Jul 19th, 2007, 11:16 PM
|
|
Replies: 24
Views: 620
|
Forum: Software Design and Algorithms
Jul 13th, 2007, 10:59 PM
|
|
Replies: 1
Views: 83
|
Forum: Coder's Corner Lounge
Jul 12th, 2007, 3:45 PM
|
|
Replies: 11
Views: 300
|
Forum: Coder's Corner Lounge
Jul 11th, 2007, 10:34 PM
|
|
Replies: 11
Views: 300
|
Forum: Assembly
Jul 8th, 2007, 5:53 PM
|
|
Replies: 5
Views: 434
|
Forum: C#
Jul 8th, 2007, 1:20 PM
|
|
Replies: 8
Views: 267
|
Forum: C
Jul 3rd, 2007, 12:08 PM
|
|
Replies: 12
Views: 364
|
Forum: Coder's Corner Lounge
Jun 26th, 2007, 2:41 AM
|
|
Replies: 25
Views: 484
|
Forum: C++
Jun 19th, 2007, 10:02 PM
|
|
Replies: 13
Views: 359
|
Forum: C++
Jun 19th, 2007, 5:21 PM
|
|
Replies: 13
Views: 359
|
Forum: C
Jun 19th, 2007, 1:23 AM
|
|
Replies: 8
Views: 305
|
Forum: Coder's Corner Lounge
May 25th, 2007, 9:21 PM
|
|
Replies: 4
Views: 133
|
Forum: C
May 24th, 2007, 5:26 PM
|
|
Replies: 8
Views: 325
|
Forum: C++
May 20th, 2007, 12:59 AM
|
|
Replies: 3
Views: 143
|
Forum: C++
May 12th, 2007, 11:02 PM
|
|
Replies: 8
Views: 337
|
Forum: C#
May 11th, 2007, 6:20 PM
|
|
Replies: 1
Views: 157
|
Forum: Coder's Corner Lounge
Apr 17th, 2007, 2:22 PM
|
|
Replies: 6
Views: 194
|
Forum: Coder's Corner Lounge
Apr 7th, 2007, 4:16 PM
|
|
Replies: 21
Views: 417
|
Forum: Coder's Corner Lounge
Apr 5th, 2007, 10:59 PM
|
|
Replies: 19
Views: 554
|
Forum: C#
Mar 10th, 2007, 2:16 PM
|
|
Replies: 2
Views: 232
|
Forum: Coder's Corner Lounge
Feb 20th, 2007, 8:31 PM
|
|
Replies: 4
Views: 127
|
Forum: C++
Feb 3rd, 2007, 6:59 PM
|
|
Replies: 4
Views: 289
|
Forum: C++
Jan 29th, 2007, 6:44 PM
|
|
Replies: 30
Views: 907
Something like pygame (http://www.pygame.org)...
Something like pygame (http://www.pygame.org) coupled with py2exe (http://www.py2exe.org) could very well be what you want - what you can do is tie them together in a way similar to how Game Maker...
|
Forum: Python
Jan 14th, 2007, 3:48 PM
|
|
Replies: 3
Views: 251
Boost.Python...
Boost.Python (http://www.boost.org/libs/python/doc/index.html) and SWIG (http://www.swig.org/) are usually used to automate embedding Python in an application. Both have very good documentation.
But...
|
Forum: Coder's Corner Lounge
Jan 2nd, 2007, 11:48 PM
|
|
Replies: 22
Views: 466
Alright, I'll oblige...
Alright, I'll oblige ye...
http://img528.imageshack.us/img528/2189/mspace200701030010cv3.th.png (http://img528.imageshack.us/my.php?image=mspace200701030010cv3.png)
The "i gave up" line is actually...
|
Forum: Coder's Corner Lounge
Jan 1st, 2007, 4:20 PM
|
|
Replies: 22
Views: 466
|
Forum: Coder's Corner Lounge
Jan 1st, 2007, 12:14 AM
|
|
Replies: 22
Views: 466
|
Forum: Coder's Corner Lounge
Jan 1st, 2007, 12:09 AM
|
|
Replies: 9
Views: 290
|
Forum: Coder's Corner Lounge
Dec 29th, 2006, 10:01 PM
|
|
Replies: 9
Views: 290
|
Forum: PHP
Dec 29th, 2006, 9:58 PM
|
|
Replies: 6
Views: 221
exec() returns whatever the program prints on...
exec() returns whatever the program prints on stdout. So if your program is:
#include <stdio.h>
int main(int argc, char **argv)
{
fputs("Hello, world!\n", stdout);
}
The return value of exec()...
|
Forum: Coder's Corner Lounge
Dec 25th, 2006, 9:05 PM
|
|
Replies: 7
Views: 150
|
Forum: Coder's Corner Lounge
Dec 25th, 2006, 7:02 PM
|
|
Replies: 7
Views: 150
|
Forum: C++
Dec 14th, 2006, 3:13 PM
|
|
Replies: 1
Views: 148
|