|
Version Control
Last post 05-15-2007 2:11 PM by Carnildo. 15 replies.
-
05-04-2007 9:35 PM
|
|
-
phaedrus


- Joined on 03-20-2007
- Seattle Ex-Pat living in the Bay Area
- Posts 111
|
Ok. I know I cannot possibly be the only addict to version control. I just want to know who else on this board is a complete dork. I've got my project in a subversion repository, and I even created a branch for pruning out the debug printfs[1] out of the submission code. I even merged a bunch of bug fixes back into the trunk after I got the release branch finalized. What's everyone else using? [1] yes, I'm using stdio.h instead of iostream, I'm a C programmer. Maybe it's extra WTF points, who knows
All men are frauds. The only difference between them is that some admit it. I myself deny it. -- H. L. Mencken
|
|
-
-
Einsidler


- Joined on 11-15-2006
- Posts 99
|
phaedrus: yes, I'm using stdio.h instead of iostream, I'm a C programmer. Maybe it's extra WTF points, who knows
I think I might be using both, because I have no real idea what I'm doing.
Download my OMGWTF entry, Romanorum Computus
|
|
-
-
-
IMil


- Joined on 05-26-2006
- Posts 30
|
I use SVN too, as sometimes I have spare time at work and prefer to do something more productive than web-surfing. Never did anything but commit/update, though.
|
|
-
-
tchize


- Joined on 07-26-2006
- Belgium
- Posts 133
|
Einsidler: phaedrus: yes, I'm using stdio.h instead of iostream, I'm a C programmer. Maybe it's extra WTF points, who knows
I think I might be using both, because I have no real idea what I'm doing.
Am using none of stdio.h/iostream.h/stdlib.h This mean my mallocs and printf all generate a bunch of implicit declarations :) But who cares, it compiles and run the test case. Of course, you might guess, i have no implicit declaration for free, nobody free pointers for such a small application !
|
|
-
-
Carnildo


- Joined on 03-30-2005
- Posts 651
|
tchize: Einsidler: phaedrus: yes, I'm using stdio.h instead of iostream, I'm a C programmer. Maybe it's extra WTF points, who knows
I think I might be using both, because I have no real idea what I'm doing.
Am using none of stdio.h/iostream.h/stdlib.h This mean my mallocs and printf all generate a bunch of implicit declarations :) But who cares, it compiles and run the test case. Of course, you might guess, i have no implicit declaration for free, nobody free pointers for such a small application !
My third entry includes stdlib.h, stdio.h, unistd.h, sys/types.h, and math.h, among others. This doesn't mean I'm actually using any of them, though.
|
|
-
-
Whiskey Tango Foxtrot? Over.


- Joined on 03-10-2006
- I'm a Nashville carpetbagger.
- Posts 332
|
phaedrus:[1] yes, I'm using stdio.h instead of iostream, I'm a C programmer. Maybe it's extra WTF points, who knows
Aside from the GUI glue code, I used pure C++/STL; should be 100% portable.
Agile Team-Oriented Waterfall-Centric Cowboy Coder.
|
|
-
-
Einsidler


- Joined on 11-15-2006
- Posts 99
|
Carnildo:My third entry includes stdlib.h, stdio.h, unistd.h, sys/types.h, and math.h, among others. This doesn't mean I'm actually using any of them, though.
I basically just added anything that was used in any tutorials I was using, since I had no prior C++ experience, so I honestly couldn't tell you which I'm actually using. Here's my main set of #includes: #include <stdlib.h> // Standard library #include <stdio.h> // Standard input/ouput #include <iostream> // Input/Output stream #include <fstream> // File stream? #include <exception> // Exceptions #include <math.h> // Math is delicious! #include <windows.h> // More like #include <windoze.h>, amirite? using namespace std; // Not quite sure what this is
Download my OMGWTF entry, Romanorum Computus
|
|
-
-
-
Einsidler


- Joined on 11-15-2006
- Posts 99
|
Domster:I'm sure the "windoze" comment will go down well with Raymond Chen ;-)
Well, you know the old saying, "If you can't laugh at yourself, you will be eaten by lions" On second thoughts, maybe that comment wasn't such a good idea, I should have just included a file "windoze.h" with my program. :D
Download my OMGWTF entry, Romanorum Computus
|
|
-
-
GeniusDex


- Joined on 05-11-2007
- Posts 3
|
Whiskey Tango Foxtrot? Over.: phaedrus:[1] yes, I'm using stdio.h instead of iostream, I'm a C programmer. Maybe it's extra WTF points, who knows
Aside from the GUI glue code, I used pure C++/STL; should be 100% portable.
There's a STL?
|
|
-
-
Whiskey Tango Foxtrot? Over.


- Joined on 03-10-2006
- I'm a Nashville carpetbagger.
- Posts 332
|
GeniusDex: Whiskey Tango Foxtrot? Over.:Aside from the GUI glue code, I used pure C++/STL; should be 100% portable.
There's a STL?
Yes, it's the Standard Template Library.
Agile Team-Oriented Waterfall-Centric Cowboy Coder.
|
|
-
-
Einsidler


- Joined on 11-15-2006
- Posts 99
|
Whiskey Tango Foxtrot? Over.: GeniusDex: Whiskey Tango Foxtrot? Over.:Aside from the GUI glue code, I used pure C++/STL; should be 100% portable.
There's a STL?
Yes, it's the Standard Template Library.
I suspect that question may have been rhetoric and sarcastic, implying that GeniusDex didn't even use STL.
Download my OMGWTF entry, Romanorum Computus
|
|
-
-
Whiskey Tango Foxtrot? Over.


- Joined on 03-10-2006
- I'm a Nashville carpetbagger.
- Posts 332
|
Einsidler: Whiskey Tango Foxtrot? Over.: GeniusDex: Whiskey Tango Foxtrot? Over.:Aside from the GUI glue code, I used pure C++/STL; should be 100% portable.
There's a STL?
Yes, it's the Standard Template Library.
I suspect that question may have been rhetoric and sarcastic, implying that GeniusDex didn't even use STL.
Ahh! They don't have written sarcasm where I'm from, so I tend to miss it if I'm not concentrating.
Agile Team-Oriented Waterfall-Centric Cowboy Coder.
|
|
-
-
phaedrus


- Joined on 03-20-2007
- Seattle Ex-Pat living in the Bay Area
- Posts 111
|
Whiskey Tango Foxtrot? Over.: phaedrus:[1] yes, I'm using stdio.h instead of iostream, I'm a C programmer. Maybe it's extra WTF points, who knows
Aside from the GUI glue code, I used pure C++/STL; should be 100% portable.
As I've mentioned elsewhere, mine only compiles and works with GCC, since I did some wildly non-portable pointer arithmetic (in fact, it's in my post of my favorite function over on that other thread). It's only know to compile and work on Linux and NetBSD. It might not work under Cygwin or DJGPP. I haven't tried it. Portability is for the weak. You want to use my program? Here's a nickle, get yourself a Real Computer(TM). ... Just being arrogant, don't mind the Linux Bigot ...
All men are frauds. The only difference between them is that some admit it. I myself deny it. -- H. L. Mencken
|
|
-
-
Carnildo


- Joined on 03-30-2005
- Posts 651
|
Einsidler: Whiskey Tango Foxtrot? Over.: GeniusDex: Whiskey Tango Foxtrot? Over.:Aside from the GUI glue code, I used pure C++/STL; should be 100% portable.
There's a STL?
Yes, it's the Standard Template Library.
I suspect that question may have been rhetoric and sarcastic, implying that GeniusDex didn't even use STL.
Actually, it's probably a reference to the fact that for the longest time, the C++ "standard template library" was anything but standard.
|
|
Page 1 of 1 (16 items)
|
|
|