User indiv - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T20:26:00Zhttp://stackoverflow.com/feeds/user/19719http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1884339/how-is-c-inspired-by-c-more-than-by-java/1884687#18846871Answer by indiv for How is C# inspired by C++ more than by Java?indiv2009-12-10T22:57:01Z2009-12-10T22:57:01Z<p>One example is the comparison operator == on strings. C# takes the C++ approach and does a lexical compare on the string. Java compares string references.</p>
<p>Here's a good <a href="http://msdn.microsoft.com/en-us/library/ms228394%28VS.80%29.aspx" rel="nofollow">MSDN article</a> that takes you through a comparison between C# and Java and C# and C++.</p>
http://stackoverflow.com/questions/1340402/how-can-i-tell-with-something-like-objdump-if-an-object-file-has-been-built-wit/1794136#17941360Answer by indiv for How can I tell, with something like objdump, if an object file has been built with -fPIC?indiv2009-11-25T01:42:03Z2009-11-25T01:42:03Z<p>I just had to do this on a PowerPC target to find which shared object (.so) was being built without -fPIC. What I did was run <strong>readelf -d libMyLib1.so</strong> and look for TEXTREL. If you see TEXTREL, one or more source files that make up your .so were not built with -fPIC. You can substitute <strong>readelf</strong> with <strong>elfdump</strong> if necessary.</p>
<p>E.g.,</p>
<pre><code>[user@host lib]$ readelf -d libMyLib1.so | grep TEXT # Bad, not -fPIC
0x00000016 (TEXTREL)
[user@host lib]$ readelf -d libMyLib2.so | grep TEXT # Good, -fPIC
[user@host lib]$
</code></pre>
<p>And to help people searching for solutions, the error I was getting when I ran my executable was this:</p>
<pre><code>root@target:/# ./program: error while loading shared libraries: /usr/lib/libMyLi
b1.so: R_PPC_REL24 relocation at 0x0fc5987c for symbol 'memcpy' out of range
</code></pre>
<p>I don't know whether this info applies to all architectures.</p>
<p>Source: <a href="http://blogs.sun.com/rie/entry/my%5Frelocations%5Fdon%5Ft%5Ffit" rel="nofollow">blogs.sun.com/rie</a></p>
http://stackoverflow.com/questions/1581334/how-to-convert-to-m4v/1581591#15815910Answer by indiv for How to convert to m4vindiv2009-10-17T06:42:15Z2009-10-17T06:42:15Z<p>Assuming that you have a (command-line capable) program already that can convert to m4v and you just want to be able to automate the process, here's a batch file that you could modify to loop through all the files in a directory and its subdirectories and invoke your conversion program. As written, it uses Handbrake to convert a DVD in .iso, .img, or extracted as VIDEO_TS format to mp4 for consumption by an XBox 360. It should be fairly easy to change.</p>
<p>Just save it as <strong>encode.bat</strong> or something.</p>
<pre><code>@echo off
rem Encode DVD for XBOX360 using Handbrake
rem Anything in %ENCODED_DIR% will not be encoded because everything in there
rem is assumed to have been encoded already.
rem
rem Encodes VIDEO_TS, iso, and img .. renames img to iso
SETLOCAL ENABLEDELAYEDEXPANSION
SET FILE_TYPES=VIDEO_TS *.iso *.img
SET ENCODED_DIR=[ENCODED]
SET CONVERT_PROG=[HANDBRAKE]\HandBrakeCLI.exe
SET CONVERT_ARG_INPUT=-i
SET CONVERT_ARG_OUTPUT=-o
SET CONVERT_ARG_SETTINGS=--longest --preset="Xbox 360" --native-language=eng --subtitle-scan
IF NOT EXIST "%ENCODED_DIR%" mkdir "%ENCODED_DIR%"
FOR /F "usebackq delims==" %%i IN (`dir %FILE_TYPES% /s /d /b ^| find /V "%ENCODED_DIR%"`) DO (
rem trim the trailing slash and we have our output name minus the extension
SET INPUT_FILENAME=%%i
SET OUTPUT_FILENAME=%%~pi
SET BASE_NAME=!OUTPUT_FILENAME:~0,-1!
SET OUTPUT_FILENAME=!BASE_NAME!.mp4
rem rename .img to .iso so Handbrake recognizes it as a proper input format
IF /I "%%~xi"==".img" (
SET INPUT_FILENAME=%%~pi%%~ni.iso
ren "%%i" "%%~ni.iso"
)
start "Converting" /BELOWNORMAL /WAIT "%CONVERT_PROG%" %CONVERT_ARG_INPUT% "!INPUT_FILENAME!" %CONVERT_ARG_OUTPUT% "!OUTPUT_FILENAME!" %CONVERT_ARG_SETTINGS%
echo ERRORLEVEL AFTER CONVERT %ERRORLEVEL% >> last_errorlevel.txt
)
ENDLOCAL
</code></pre>
<p>So you'll need to modify these variables:</p>
<pre><code>SET FILE_TYPES=VIDEO_TS *.iso *.img
SET ENCODED_DIR=[ENCODED]
SET CONVERT_PROG=[HANDBRAKE]\HandBrakeCLI.exe
SET CONVERT_ARG_INPUT=-i
SET CONVERT_ARG_OUTPUT=-o
SET CONVERT_ARG_SETTINGS=--longest --preset="Xbox 360" --native-language=eng --subtitle-
</code></pre>
<p><strong>*FILE_TYPES*</strong> is what you want to use as input format for your converter program. <strong>*ENCODED_DIR*</strong> is a directory that you want to skip (you could use it to store files you've already encoded or store them elsewhere). <strong>*CONVERT_PROG*</strong> is the directory of your converter. In the example, I have it in a subdirectory called [HANDBRAKE], and it's called HandBrakeCLI.exe. <strong>*CONVERT_ARG_**</strong> are the settings you use to invoke your converter program.</p>
<p>Just put what you want to convert in a subdirectory off of the script. For example, without changing the script you would rely on this directory structure:</p>
<pre><code>encode_stuff\encode.bat
encode_stuff\[ENCODED]\<stuff to skip>
encode_stuff\[HANDBRAKE]\HandBrakeCLI.exe
encode_stuff\dvd1\VIDEO_TS\<movie junk>
encode_stuff\dvd2\my_dvd2.iso
</code></pre>
<p>Then when you run the script, it'll create dvd1.mp4 and my_dvd2.mp4.</p>
<p>So based on this description on how it works, hopefully you can figure out how to modify it even if you don't know too much about cmd shell programming using the batch language. If this answer doesn't help, you should update the original question to include what format you're going from, what playback device you're targeting with m4v, and whether you already have a program that can do the conversion.</p>
http://stackoverflow.com/questions/1463736/c-right-shift-division-round-toward-zero-help/1463796#14637963Answer by indiv for C Right shift (Division) -> ROUND TOWARD ZERO. Help :''(*indiv2009-09-23T03:18:52Z2009-09-23T03:18:52Z<p>Do something conditionally depending on whether your value is positive or negative.</p>
<pre><code>if( value < 0 ) {
-((-value) >> 3);
}
else {
value >> 3;
}
</code></pre>
http://stackoverflow.com/questions/1441668/curl-php-youtube/1463638#14636381Answer by indiv for Curl php youtubeindiv2009-09-23T02:11:19Z2009-09-23T02:11:19Z<p>I don't have a developer key so I can't help you out directly, but clearly Google has a problem with your http header so you have to find out what you're sending in the header, not the message body. The best way to do this is to inspect the packet on the wire as it leaves your machine.</p>
<p>So install <a href="http://www.wireshark.org/" rel="nofollow">Wireshark</a>, start it up on your WAMP server, start capturing packets, do your test, and then look at the http connection in the packet. Make sure it's what you expect.</p>
<p>Or maybe there's a way for curl to write the packet to a file instead of the server for debugging purposes. I don't know.</p>
<p>Also it's a long shot (and would rely on them being out of spec), but I noticed that you and that other person you linked to have "Content-length". Try "Content-Length" to match the example.</p>
http://stackoverflow.com/questions/1450324/simple-program-adding-d-to-output/1450334#14503341Answer by indiv for Simple program adding "D" to outputindiv2009-09-20T05:04:04Z2009-09-20T05:04:04Z<p>Change the print line to this:</p>
<p>printf("\n%d\n", nl);</p>
<p>Then you'll see that when you hit ctrl-d, you get "^D" on the line. Only since you didn't press ctrl-D followed by Enter, then it's not on a newline in your original program. Not all systems will echo ctrl-d back to you, but it does on OS-X for example. So it ends up messing up the output if you print a one-digit number. You'll have to work around it.</p>
http://stackoverflow.com/questions/1441100/need-better-way-to-format-a-phone-number-in-c/1441465#14414651Answer by indiv for Need better way to format a phone number in C.indiv2009-09-17T21:37:23Z2009-09-17T21:37:23Z<p>Well I guess I'm just too slow. Nothing clever about this over memmove(), but it shows how you can have a loop and still take all those comparisons out of the inside:</p>
<pre><code>char *formatPhoneNum(char *buffer) {
int index = 0;
for( index = 0; index < 12; ++index ) {
buffer[index] = buffer[index + 1];
}
buffer[3] = '-';
buffer[12] = '\0';
return buffer;
}
</code></pre>
<p>You may find it helpful if you return the start of the string you modify instead of just void so you can chain commands easier. E.g., </p>
<pre><code>printf("%s\n", formatPhoneNum(buffer));
</code></pre>
http://stackoverflow.com/questions/1406256/getting-and-printing-chars-in-c/1406723#14067233Answer by indiv for Getting and printing chars in C?indiv2009-09-10T17:50:09Z2009-09-10T18:05:53Z<p>The problem you're seeing is that it really is reading a character, but it's just not the character you're expecting. scanf does formatted input. The first time you call it, you're telling it to expect a number. But you're really entering more than just a number:</p>
<pre><code>Number?
1234.5678<enter>
</code></pre>
<p>When you press the enter key, it is actually inserting a character into your input stream. As you may know, we use \n to represent newline, the character you get when you press enter. So your input stream actually looks like "1234.5678\n".</p>
<p>So scanf does its thing and reads 1234.5678 and then it sees '\n'. It says "oh, that's not part of the number, so I'll stop." Well, your input still has the '\n'. The next time you call scanf, you tell it to read a character. The user types whatever they want, but that goes behind the '\n' from the previous scanf. So scanf tries to match the input stream with a character and says "ok, the first thing in this input stream is a character, and it's '\n', so I'll return that." The stuff the user typed is still sitting in the input stream.</p>
<p>So a simple way to get rid of it is to have a loop that empties all remaining characters from the input stream until it finds '\n'.</p>
<pre><code>printf("Number?\n");
scanf("%f", &number1);
while( getchar() != '\n');
</code></pre>
<p>After this loop executes, your input stream will be empty. So the next time you call scanf, it'll wait for the user to type something and will use whatever the user typed.</p>
<p>Also note that scanf has a return value that you should check after calling it. Read up about scanf to see what it returns.</p>
http://stackoverflow.com/questions/1335805/animated-text-images-in-c/1337025#13370252Answer by indiv for Animated Text Images in Cindiv2009-08-26T19:42:59Z2009-09-08T00:40:17Z<p>Here's an example to show you how to animate something. This is exactly what that Star Wars animation is. It's a gigantic text file split up into individual frames. Read the FAQ at the <a href="http://www.asciimation.co.nz/" rel="nofollow" title="Star Wars ASCIImation">Star Wars ASCIImation page</a> to find out more about it.</p>
<p>The general idea is that you have a set of frames. Each frame contains one image in the animation. You clear the screen, show a frame, and then wait for some time period. Do that over and over, and you have a text animation.</p>
<p>So first you create a file with your frames. Call it frames.txt. To allow variable-length frames, we follow each frame by a line that begins with <strong>@!</strong> followed by the number of animation ticks that frame should stay on the screen. For example, if you're drawing at 15 frames per second and the line is <strong>@! 15</strong>, then the frame will be on screen for 1 second (15 ticks).</p>
<pre><code>+---------+
| frame 1 |
+---------+
@! 15
.-----------.
| frame 2 |
| |
`-----------'
@! 15
+-------------+
| frame 3 |
| |
| |
| |
+-------------+
@! 15
.-----------.
| frame 4 |
| |
.-----------.
@! 15
+---------+
| frame 5 |
+---------+
@! 3
+---------+
| rame 5 |
+---------+
@! 3
+---------+
| ame 5 |
+---------+
@! 3
+---------+
| me 5 |
+---------+
@! 3
+---------+
| e 5 |
+---------+
@! 3
+---------+
| 5 |
+---------+
@! 3
+---------+
| |
+---------+
@! 3
</code></pre>
<p>Then compile and run this program. On Linux or OSX, I just save it as *text_animate.cpp* and run *make text_animate*. On Windows maybe the only thing you'll have to do is change the line that says system("clear") to system("cls"), but I don't know for sure.</p>
<pre><code>#include <iostream>
#include <string>
#include <ctime>
#include <fstream>
const char *FRAME_DELIM = "@!";
unsigned int FRAME_DELIM_LEN = strlen(FRAME_DELIM);
int main(int argc, char *argv[]) {
if( argc != 2 ) {
std::cout << "Usage: text_animate <frames file>\n";
exit(1);
}
std::string frames_fn = argv[1];
struct timespec sleep_time = {0, 1000000000 / 15}; // 15 fps
std::ifstream file_stream;
file_stream.open(frames_fn.c_str(), std::ios::in);
if( !file_stream.is_open() ) {
std::cout << "Couldn't open [" << frames_fn.c_str() << "]\n";
return -1;
}
std::string frame_line;
unsigned int frame_ticks = 0;
while( true ) {
system("clear");
bool is_frame_delim = false;
do {
getline(file_stream, frame_line);
if( file_stream.fail() && file_stream.eof()) {
file_stream.clear();
file_stream.seekg(0, std::ios::beg);
getline(file_stream, frame_line);
}
else if( file_stream.fail() ) {
std::cout << "Error reading from file.\n";
break;
}
is_frame_delim = strncmp(frame_line.c_str(),FRAME_DELIM,
FRAME_DELIM_LEN) == 0;
if( !is_frame_delim ) {
std::cout << frame_line << "\n";
}
} while( !is_frame_delim );
frame_ticks = atoi(&(frame_line.c_str()[FRAME_DELIM_LEN + 1]));
while( frame_ticks-- > 0 ) {
nanosleep(&sleep_time, NULL);
}
}
file_stream.close();
return 0;
}
</code></pre>
<p>Then just run <strong>./text_animate frames.txt</strong>. Press CTRL-C to exit since it loops forever.</p>
http://stackoverflow.com/questions/1301156/how-to-sort-digits-in-a-number/1338221#13382210Answer by indiv for How to sort digits in a number? indiv2009-08-27T00:05:21Z2009-08-27T00:05:21Z<p>Here's an answer to the title question in Perl, with a bias toward sorting 4-digit numbers for the Kaprekar algorithm. In the example, replace 'shift' with the number to sort. It sorts digits in a 4-digit number with leading 0's ($asc is sorted in ascending order, $dec is descending), and outputs a number with leading 0's:</p>
<pre><code>my $num = sprintf("%04d", shift);
my $asc = sprintf("%04d", join('', sort {$a <=> $b} split('', $num)));
my $dec = sprintf("%04d", join('', sort {$b <=> $a} split('', $num)));
</code></pre>
http://stackoverflow.com/questions/141864/operator-overloading-for-c-maps1Operator overloading for C++ mapsindiv2008-09-26T20:45:19Z2008-10-24T02:54:34Z
<p>I need help understanding some C++ operator overload statements. The class is declared like this: </p>
<pre><code>template <class key_t, class ipdc_t>
class ipdc_map_template_t : public ipdc_lockable_t
{
...
typedef map<key_t,
ipdc_t*,
less<key_t>> map_t;
...
</code></pre>
<p>The creator of the class has created an iterator for the internal map structure:</p>
<pre><code>struct iterator : public map_t::iterator
{
iterator() {}
iterator(const map_t::iterator & it)
: map_t::iterator(it) {}
iterator(const iterator & it)
: map_t::iterator(
*static_cast<const map_t::iterator *>(&it)) {}
operator key_t() {return ((this->operator*()).first);} // I don't understand this.
operator ipdc_t*() const {return ((this->operator*()).second);} // or this.
};
</code></pre>
<p>And begin() and end() return the begin() and end() of the map:</p>
<pre><code>iterator begin() {IT_ASSERT(is_owner()); return map.begin();}
iterator end() {return map.end();}
</code></pre>
<p>My question is, if I have an iterator, how do I use those overloads to get the key and the value?</p>
<pre><code>ipdc_map_template_t::iterator iter;
for( iter = my_instance.begin();
iter != my_instance.end();
++iter )
{
key_t my_key = ??????;
ipdc_t *my_value = ??????;
}
</code></pre>
http://stackoverflow.com/questions/193336/third-party-windows-command-line-program/200050#2000501Answer by indiv for Third-party windows command-line program?indiv2008-10-14T04:55:13Z2008-10-14T04:55:13Z<p>I'm not clear on what you mean by Linux/OSX command prompts being "nice". If you just mean that they provide more utilities, I usually install <a href="http://technet.microsoft.com/en-us/interopmigration/bb380242.aspx" rel="nofollow">Windows Services for Unix</a> to add common programs like grep and vi.</p>
http://stackoverflow.com/questions/197757/printing-pointers-in-c/197780#1977803Answer by indiv for Printing pointers in Cindiv2008-10-13T14:31:38Z2008-10-13T15:15:56Z<p>Yes, your compiler is expecting void *. Just cast them to void *.</p>
<pre><code>/* for instance... */
printf("The value of s is: %p\n", (void *) s);
printf("The direction of s is: %p\n", (void *) &s);
</code></pre>
http://stackoverflow.com/questions/117963/how-do-i-connect-online-with-other-programming-conference-attendees-with-similar/117993#1179930Answer by indiv for How do I connect online with other programming conference attendees with similar interests?indiv2008-09-22T22:23:42Z2008-10-10T08:45:43Z<p>Go old school and post signs at the convention center, or hand out flyers.</p>
http://stackoverflow.com/questions/175462/places-where-computers-are-used-correctly-in-movies/176522#1765228Answer by indiv for Places where computers are used correctly in moviesindiv2008-10-06T22:51:33Z2008-10-06T22:51:33Z<p>I thought <a href="http://www.imdb.com/title/tt0088846/" rel="nofollow">Brazil</a> had a pretty correct depiction of computers. In that they're often hard to use, frustrating, and confusing.</p>
<p><img src="http://www.cyberpunkreview.com/images/brazil13.jpg" alt="Brazil screenshot" /></p>
http://stackoverflow.com/questions/174633/regular-expression-match-to-aabb-cc/174701#1747011Answer by indiv for Regular Expression: Match to (aa|bb) (cc)? indiv2008-10-06T15:14:40Z2008-10-06T15:31:41Z<p>Unless your sample input is riddled with all sorts of permutations of your keywords, you could simplify it immensely with this:</p>
<pre><code>Visual .+? 2008
</code></pre>
http://stackoverflow.com/questions/37473/how-can-i-assert-without-using-abort/168611#1686110Answer by indiv for How can I assert() without using abort()?indiv2008-10-03T19:53:30Z2008-10-03T20:03:00Z<p><a href="http://library.gnome.org/devel/glib/unstable/glib-Warnings-and-Assertions.html" rel="nofollow" title="glib documentation for error reporting functions">glib's error reporting functions</a> take the approach of continuing after an assert. glib is the underlying platform independence library that Gnome (via GTK) uses. Here's a macro that checks a precondition and prints a stack trace if the precondition fails.</p>
<pre><code>#define RETURN_IF_FAIL(expr) do { \
if (!(expr)) \
{ \
fprintf(stderr, \
"file %s: line %d (%s): precondition `%s' failed.", \
__FILE__, \
__LINE__, \
__PRETTY_FUNCTION__, \
#expr); \
print_stack_trace(2); \
return; \
}; } while(0)
#define RETURN_VAL_IF_FAIL(expr, val) do { \
if (!(expr)) \
{ \
fprintf(stderr, \
"file %s: line %d (%s): precondition `%s' failed.", \
__FILE__, \
__LINE__, \
__PRETTY_FUNCTION__, \
#expr); \
print_stack_trace(2); \
return val; \
}; } while(0)
</code></pre>
<p>Here's the function that prints the stack trace, written for an environment that uses the gnu toolchain (gcc):</p>
<pre><code>void print_stack_trace(int fd)
{
void *array[256];
size_t size;
size = backtrace (array, 256);
backtrace_symbols_fd(array, size, fd);
}
</code></pre>
<p>This is how you'd use the macros:</p>
<pre><code>char *doSomething(char *ptr)
{
RETURN_VAL_IF_FAIL(ptr != NULL, NULL); // same as assert(ptr != NULL), but returns NULL if it fails.
if( ptr != NULL ) // Necessary if you want to define the macro only for debug builds
{
...
}
return ptr;
}
void doSomethingElse(char *ptr)
{
RETURN_IF_FAIL(ptr != NULL);
}
</code></pre>
http://stackoverflow.com/questions/160218/to-ternary-or-not-to-ternary/160291#1602915Answer by indiv for To ternary or not to ternary?indiv2008-10-01T23:56:53Z2008-10-01T23:56:53Z<p>I like using the operator in debug code to print error values so I don't have to look them up all the time. Usually I do this for debug prints that aren't going to remain once I'm done developing.</p>
<pre><code>int result = do_something();
if( result != 0 )
{
debug_printf("Error while doing something, code %x (%s)\n", result,
result == 7 ? "ERROR_YES" :
result == 8 ? "ERROR_NO" :
result == 9 ? "ERROR_FILE_NOT_FOUND" :
"Unknown");
}
</code></pre>
http://stackoverflow.com/questions/145375/masters-vs-work-experience/146118#14611813Answer by indiv for Masters vs Work experienceindiv2008-09-28T15:42:36Z2008-09-28T15:42:36Z<p><em>Everyone</em> gets work experience. Not everyone gets a Master's Degree experience.</p>
<p>It was absolutely worth it to me. It was the first time I had to work independently to accomplish rather large goals (research+thesis, part of other independent projects involving multiple research groups). Many (but not all) of my courses were worthwhile. I wrote a multitasking operating system in one, finally learned and understood topics in algorithms that I didn't quite grasp during undergrad, and lots more. Some classes were redundant and easy, but those fluff classes just let me put more time into the ones that really mattered.</p>
<p>Anyway, I've known lots of people who take 1 class per semester towards a Master's degree because they no longer are willing or able to give up their current lifestyle to return to a full-time student. It was way easier for me to keep living on ramen noodles then it is for these people to go back to it.</p>
http://stackoverflow.com/questions/138981/how-do-i-test-if-a-file-is-a-directory-in-a-batch-script/143935#1439352Answer by indiv for How do I test if a file is a directory in a Batch script?indiv2008-09-27T16:22:44Z2008-09-27T16:22:44Z<p>Here's a script that uses FOR to build a fully qualified path, and then pushd to test whether the path is a directory. Notice how it works for paths with spaces, as well as network paths.</p>
<pre><code>@echo off
if [%1]==[] goto usage
for /f "delims=" %%i in ("%~1") do set MYPATH="%%~fi"
pushd %MYPATH% 2>nul
if errorlevel 1 goto notdir
goto isdir
:notdir
echo not a directory
goto exit
:isdir
popd
echo is a directory
goto exit
:usage
echo Usage: %0 DIRECTORY_TO_TEST
:exit
</code></pre>
<p>Sample output with the above saved as "isdir.bat":</p>
<pre><code>C:\>isdir c:\Windows\system32
is a directory
C:\>isdir c:\Windows\system32\wow32.dll
not a directory
C:\>isdir c:\notadir
not a directory
C:\>isdir "C:\Documents and Settings"
is a directory
C:\>isdir \
is a directory
C:\>isdir \\ninja\SharedDocs\cpu-z
is a directory
C:\>isdir \\ninja\SharedDocs\cpu-z\cpuz.ini
not a directory
</code></pre>
http://stackoverflow.com/questions/141344/how-to-check-if-directory-exists-in-path/142605#1426051Answer by indiv for How to check if directory exists in %PATH%?indiv2008-09-27T00:26:10Z2008-09-27T00:26:10Z<p>I took your implementation using the <em>for</em> loop and extended it into something that iterates through all elements of the path. Each iteration of the for loop removes the first element of the path (%p) from the entire path (held in %q and %r).</p>
<pre><code>@echo off
SET MYPATHCOPY=%PATH%
:search
for /f "delims=; tokens=1,2*" %%p in ("%MYPATHCOPY%") do (
@echo %%~p
SET MYPATHCOPY=%%~q;%%~r
)
if "%MYPATHCOPY%"==";" goto done;
goto search;
:done
</code></pre>
<p>Sample output:</p>
<pre><code>Z:\>path.bat
C:\Program Files\Microsoft DirectX SDK (November 2007)\Utilities\Bin\x86
c:\program files\imagemagick-6.3.4-q16
C:\WINDOWS\system32
C:\WINDOWS
C:\SFU\common\
c:\Program Files\Debugging Tools for Windows
C:\Program Files\Nmap
</code></pre>
http://stackoverflow.com/questions/131196/convert-console-exe-to-dll-in-c/131227#1312274Answer by indiv for Convert console exe to dll in Cindiv2008-09-25T02:51:23Z2008-09-25T02:51:23Z<p>In Windows, you just call <a href="http://msdn.microsoft.com/en-us/library/ms682425.aspx" rel="nofollow">CreateProcess</a> with the SoX command line. I don't know the Delphi bindings for Win32, but I've done this exact thing in both Win32 and C#.</p>
<p>And now that you know CreateProcess is what you want to call, a google search on how to do that from Delphi should give you all the code you need.</p>
<p><a href="http://www.delphicorner.f9.co.uk/articles/wapi4.htm" rel="nofollow">Delphi Corner Article - Using CreateProcess to Execute Programs</a></p>
<p><a href="http://www.chami.com/tips/delphi/122096D.html" rel="nofollow">Calling CreateProcess() the easy way</a></p>
http://stackoverflow.com/questions/4943/is-it-a-good-idea-to-put-easter-eggs-in-applications/130437#1304371Answer by indiv for Is it a good idea to put Easter Eggs in applications?indiv2008-09-24T22:51:41Z2008-09-24T22:51:41Z<p>The only easter egg I slipped into a program was a random connection string. When our product connected to the server, it printed a bunch of debug statements, most of which were redundant or pointless. I trimmed out all of those that I could, but ran into one string that was both redundant and pointless, but I couldn't remove it because of how the architecture worked.</p>
<p>So instead of leaving such a pointless debug message, I wrote a function that returned a random sentence. There were 3 columns of words to choose from: verb, adjective, noun, all filled with technical sounding words. So when our product connected and you had expanded the "details" view to see what it was doing, you'd see a line in there with random gibberish like "Enabling advanced algorithms", "Searching for obstructed scanners", and "Shifting exhausting transients".</p>
<p>The lead tester noticed it and threatened to make me take it out, but she ended up letting it slide for some reason. Must have been in a good mood that day.</p>
http://stackoverflow.com/questions/130116/dos-batch-commands-to-read-first-line-from-text-file/130298#13029811Answer by indiv for DOS batch command(s) to read first line from text fileindiv2008-09-24T22:20:14Z2008-09-24T22:20:14Z<p>Again adding to other answers, and combining them into a utility that mimics the gnu head utility, which I named "head.bat":</p>
<pre><code>@echo off
setlocal enabledelayedexpansion
if [%1] == [] goto usage
if [%2] == [] goto usage
SET /a counter=0
for /f "usebackq delims=" %%a in (%2) do (
if "!counter!"=="%1" goto exit
echo %%a
set /a counter+=1
)
goto exit
:usage
echo Usage: head.bat COUNT FILENAME
:exit
</code></pre>
<p>Test runs:</p>
<pre><code>Z:\>head "test test.c"
Usage: head.bat COUNT FILENAME
Z:\>head 1 "test test.c"
#include <stdlib.h>
Z:\>head 2 "test test.c"
#include <stdlib.h>
#include <stdio.h>
Z:\>head 3 "test test.c"
#include <stdlib.h>
#include <stdio.h>
int q;
Z:\>head 2 t.c
#include <stdlib.h>
#include <stdio.h>
Z:\>head 0 t.c
</code></pre>
http://stackoverflow.com/questions/128625/stand-alone-text-editor-with-visual-studio-editor-functionality/128667#1286670Answer by indiv for Stand-alone text editor with Visual Studio editor functionalityindiv2008-09-24T17:51:28Z2008-09-24T17:51:28Z<p><a href="http://www.slickedit.com/" rel="nofollow">Slickedit</a></p>
http://stackoverflow.com/questions/124701/what-do-you-do-during-a-build/124728#1247281Answer by indiv for What do you do during a build?indiv2008-09-24T00:27:25Z2008-09-24T00:27:25Z<p>In the case where builds have taken around 15-30 minutes, I learned to get things "mostly finished", and then I'd start the build. While it was building, I'd work on finishing things up. It actually takes conscious effort to change your workflow to this method when you're used to finishing things completely and then building.</p>
<p>(but usually I take building as a time to take a break and work on different design issues or answer e-mail or socialize or build toys out of common office supplies)</p>
<p><strong>edit:</strong></p>
<p>I wanted to add that my first work project took 25 minutes to build on my PC. I recorded in a spreadsheet how much downtime I spent waiting for it to complete and used it as justification for a new PC. The build took 5 minutes after I managed to get the company to upgrade me from that dinosaur.</p>
http://stackoverflow.com/questions/123559/a-comprehensive-regex-for-phone-number-validation/124179#1241792Answer by indiv for A comprehensive regex for phone number validationindiv2008-09-23T21:58:26Z2008-09-23T22:24:04Z<p>Although the answer to strip all whitespace is neat, it doesn't really solve the problem that's posed, which is to find a regex. Take, for instance, my test script that downloads a web page and extracts all phone numbers using the regex. Since you'd need a regex anyway, you might as well have the regex do all the work. I came up with this:</p>
<pre><code>1?\W*([2-9][0-8][0-9])\W*([2-9][0-9]{2})\W*([0-9]{4})(\se?x?t?(\d*))?
</code></pre>
<p>Here's a perl script to test it. When you match, $1 contains the area code, $2 and $3 contain the phone number, and $5 contains the extension. My test script downloads a file from the internet and prints all the phone numbers in it.</p>
<pre><code>#!/usr/bin/perl
my $us_phone_regex =
'1?\W*([2-9][0-8][0-9])\W*([2-9][0-9]{2})\W*([0-9]{4})(\se?x?t?(\d*))?';
my @tests =
(
"1-234-567-8901",
"1-234-567-8901 x1234",
"1-234-567-8901 ext1234",
"1 (234) 567-8901",
"1.234.567.8901",
"1/234/567/8901",
"12345678901",
"not a phone number"
);
foreach my $num (@tests)
{
if( $num =~ m/$us_phone_regex/ )
{
print "match [$1-$2-$3]\n" if not defined $4;
print "match [$1-$2-$3 $5]\n" if defined $4;
}
else
{
print "no match [$num]\n";
}
}
#
# Extract all phone numbers from an arbitrary file.
#
my $external_filename =
'http://web.textfiles.com/ezines/PHREAKSANDGEEKS/PnG-spring05.txt';
my @external_file = `curl $external_filename`;
foreach my $line (@external_file)
{
if( $line =~ m/$us_phone_regex/ )
{
print "match $1 $2 $3\n";
}
}
</code></pre>
<p><strong>Edit:</strong></p>
<p>You can change \W* to \s*\W?\s* in the regex to tighten it up a bit. I wasn't thinking of the regex in terms of, say, validating user input on a form when I wrote it, but this change makes it possible to use the regex for that purpose.</p>
<pre><code>'1?\s*\W?\s*([2-9][0-8][0-9])\s*\W?\s*([2-9][0-9]{2})\s*\W?\s*([0-9]{4})(\se?x?t?(\d*))?';
</code></pre>
http://stackoverflow.com/questions/122616/painless-way-to-trim-leading-trailing-whitespace-in-c/122974#1229745Answer by indiv for Painless way to trim leading/trailing whitespace in C?indiv2008-09-23T18:48:09Z2008-09-23T18:48:09Z<p>Here's one that shifts the string into the first position of your buffer. You might want this behavior so that if you dynamically allocated the string, you can still free it on the same pointer that trim() returns:</p>
<pre><code>char *trim(char *str)
{
size_t len = 0;
char *frontp = str - 1;
char *endp = NULL;
if( str == NULL )
return NULL;
if( str[0] == '\0' )
return str;
len = strlen(str);
endp = str + len;
/* Move the front and back pointers to address
* the first non-whitespace characters from
* each end.
*/
while( isspace(*(++frontp)) );
while( isspace(*(--endp)) && endp != frontp );
if( str + len - 1 != endp )
*(endp + 1) = '\0';
else if( frontp != str && endp == frontp )
*str = '\0';
/* Shift the string so that it starts at str so
* that if it's dynamically allocated, we can
* still free it on the returned pointer. Note
* the reuse of endp to mean the front of the
* string buffer now.
*/
endp = str;
if( frontp != str )
{
while( *frontp ) *endp++ = *frontp++;
*endp = '\0';
}
return str;
}
</code></pre>
<p>I even tested it for correctness:</p>
<pre><code>int main(int argc, char *argv[])
{
char *sample_strings[] =
{
"nothing to trim",
" trim the front",
"trim the back ",
" trim one char front and back ",
" trim one char front",
"trim one char back ",
" ",
" ",
"a",
"",
NULL
};
char test_buffer[64];
int index;
for( index = 0; sample_strings[index] != NULL; ++index )
{
strcpy( test_buffer, sample_strings[index] );
printf("[%s] -> [%s]\n", sample_strings[index],
trim(test_buffer));
}
/* The test prints the following:
[nothing to trim] -> [nothing to trim]
[ trim the front] -> [trim the front]
[trim the back ] -> [trim the back]
[ trim one char front and back ] -> [trim one char front and back]
[ trim one char front] -> [trim one char front]
[trim one char back ] -> [trim one char back]
[ ] -> []
[ ] -> []
[a] -> [a]
[] -> []
*/
return 0;
}
</code></pre>
<p>Source file was trim.c. Compiled with 'cc trim.c -o trim'.</p>
http://stackoverflow.com/questions/117171/design-by-contract-tests-by-assert-or-by-exception/117729#1177290Answer by indiv for design by contract tests by assert or by exception?indiv2008-09-22T21:23:13Z2008-09-22T21:23:13Z<p>You should use both. Asserts are for your convenience as a developer. Exceptions catch things you missed or didn't expect during runtime.</p>
<p>I've grown fond of <a href="http://library.gnome.org/devel/glib/unstable/glib-Warnings-and-Assertions.html" rel="nofollow" title="glib documentation for error reporting functions">glib's error reporting functions</a> instead of plain old asserts. They behave like assert statements but instead of halting the program, they just return a value and let the program continue. It works surprisingly well, and as a bonus you get to see what happens to the rest of your program when a function doesn't return "what it's supposed to". If it crashes, you know that your error checking is lax somewhere else down the road.</p>
<p>In my last project, I used these style of functions to implement precondition checking, and if one of them failed, I would print a stack trace to the log file but keep on running. Saved me tons of debugging time when other people would encounter a problem when running my debug build.</p>
<pre><code>#ifdef DEBUG
#define RETURN_IF_FAIL(expr) do { \
if (!(expr)) \
{ \
fprintf(stderr, \
"file %s: line %d (%s): precondition `%s' failed.", \
__FILE__, \
__LINE__, \
__PRETTY_FUNCTION__, \
#expr); \
::print_stack_trace(2); \
return; \
}; } while(0)
#define RETURN_VAL_IF_FAIL(expr, val) do { \
if (!(expr)) \
{ \
fprintf(stderr, \
"file %s: line %d (%s): precondition `%s' failed.", \
__FILE__, \
__LINE__, \
__PRETTY_FUNCTION__, \
#expr); \
::print_stack_trace(2); \
return val; \
}; } while(0)
#else
#define RETURN_IF_FAIL(expr)
#define RETURN_VAL_IF_FAIL(expr, val)
#endif
</code></pre>
<p>If I needed runtime checking of arguments, I'd do this:</p>
<pre><code>char *doSomething(char *ptr)
{
RETURN_VAL_IF_FAIL(ptr != NULL, NULL); // same as assert(ptr != NULL), but returns NULL if it fails.
// Goes away when debug off.
if( ptr != NULL )
{
...
}
return ptr;
}
</code></pre>
http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/116572#1165720Answer by indiv for Did you ever switch from one programming language to another?indiv2008-09-22T18:21:38Z2008-09-22T18:21:38Z<p>4 years out of school now, and I switch all the time.</p>
<p>In school it was mainly java, c++, and 68K assembly, switching back and forth all the time.</p>
<p>Then my first project at work was in C++. I completed a hobby project in PHP during this time. When my first work project shipped, our second project had a C# GUI talking to a C++ back-end. Third project I was in C (the GUI library GTK is in C) and C++. Fourth project I jumped in and helped out doing perl that drove a web page admin portal. During that time I also did other components in C and C++.</p>
<p>I had the option to do a project in 8560 assembly, but I passed on it since it's just supporting a legacy product about 10 years old. New development for me only, please.</p>
<p>Anyway, who are these developers that just use one language?</p>
http://stackoverflow.com/questions/1571340/what-is-the-assert-function/1571368#1571368Comment by indiv on what is the assert functionindiv2009-10-17T05:32:11Z2009-10-17T05:32:11ZYou want to assert(myBank != NULL) if you want to halt when myBank is NULL.http://stackoverflow.com/questions/1563872/hard-code-list-of-years/1564022#1564022Comment by indiv on Hard Code List of Years?indiv2009-10-14T04:31:59Z2009-10-14T04:31:59ZI'm not seeing what these unnecessary regexes are. I don't know asp.net, but I'd think you'd need to validate user input regardless of whether you're using a drop-down box or not to prevent malicious input (or to untaint the data).http://stackoverflow.com/questions/1550932/i-was-asked-this-in-a-recent-interviewComment by indiv on I was asked this in a recent interviewindiv2009-10-11T16:03:02Z2009-10-11T16:03:02Z20-decimal product IDs, not 20 decimal product IDs. <a href="http://www.kentlaw.edu/academics/lrw/grinker/LwtaCompound_Adjectives.htm" rel="nofollow">kentlaw.edu/academics/lrw/…</a> http://stackoverflow.com/questions/1024389/print-an-int-in-binary-representation-using-c/1024414#1024414Comment by indiv on Print an int in binary representation using Cindiv2009-09-24T23:43:01Z2009-09-24T23:43:01ZYou need parentheses in your comparison: ((a & 1) == 0. Otherwise it always prints '1'. I also prefer this: *buffer-- = (a & 1) + '0'http://stackoverflow.com/questions/1474341/need-help-with-this-programming-questionComment by indiv on Need help with this programming questionindiv2009-09-24T23:33:34Z2009-09-24T23:33:34ZI don't know whether it's homework, but a google search revealed the same question at <a href="http://www.javabat.com/prob/p160543" rel="nofollow">javabat.com/prob/p160543</a>.http://stackoverflow.com/questions/1463932/c-bitwise-truncating-zeros-in-hex-0x15000000-0x15-how/1463949#1463949Comment by indiv on C Bitwise, TRUNCATING zero's in hex. 0x15000000 -> 0x15 ??? HOW?indiv2009-09-23T04:29:43Z2009-09-23T04:29:43ZNot quite. That would truncate the 1's. while(!(input & 0x01))http://stackoverflow.com/questions/1455379/get-server-ram-with-php/1455407#1455407Comment by indiv on get server ram with phpindiv2009-09-21T16:32:25Z2009-09-21T16:32:25ZShould not be a comment because the original question intent is unclear. If the intent of the original poster is to modify script behavior based on available system RAM, then this person should be aware that php.ini defines resource limits like memory_limit. And in that case, this is a decent answer (although could be elaborated...). If that's not the intent and they just want to display RAM stats, well, then answers like this are just a side effect of not posting your intent with the question.http://stackoverflow.com/questions/1406256/getting-and-printing-chars-in-cComment by indiv on Getting and printing chars in C?indiv2009-09-10T17:55:20Z2009-09-10T17:55:20ZNote to readers: want should be won't.http://stackoverflow.com/questions/197757/printing-pointers-in-c/197780#197780Comment by indiv on Printing pointers in Cindiv2008-10-13T15:19:24Z2008-10-13T15:19:24ZMy first thought was that he just wanted to print numbers to see the values that the compiler had assigned, and casting to void would let him, regardless of any problems in his declarations. But yes, that is certainly avoiding the issue.http://stackoverflow.com/questions/174633/regular-expression-match-to-aabb-cc/174701#174701Comment by indiv on Regular Expression: Match to (aa|bb) (cc)? indiv2008-10-06T15:33:04Z2008-10-06T15:33:04ZGood catch. I've edited the post to reflect your change.http://stackoverflow.com/questions/170259/should-programmers-be-able-to-write-clearly/170271#170271Comment by indiv on Should programmers be able to write clearly?indiv2008-10-04T16:07:10Z2008-10-04T16:07:10ZAspire to be the guy who creates the design, not an intern-level programmer who just implements the design. You'll thank me for this advice in 10 years.
http://stackoverflow.com/questions/150697/is-dd-better-than-cat/150702#150702Comment by indiv on Is dd better than cat?indiv2008-09-30T04:25:41Z2008-09-30T04:25:41ZBrian: They timed cat vs dd using the same 8MB size. "To equal the playing ground, we ptime(1) both at 8MB IO." Cat was still faster, and if you keep reading that article, you'll find out why.
http://stackoverflow.com/questions/140409/why-avoid-pessimistic-locking-in-a-version-control-system/140572#140572Comment by indiv on Why avoid pessimistic locking in a version control system?indiv2008-09-26T17:42:32Z2008-09-26T17:42:32ZBob's a real jerk for not merging when he's using a sandbox paradigm. John is a real dummy for not just retrieving his earlier version from source control and merging his changes with Bob's.http://stackoverflow.com/questions/109023/best-algorithm-to-count-the-number-of-set-bits-in-a-32-bit-integer/109915#109915Comment by indiv on Best algorithm to count the number of set bits in a 32-bit integer?indiv2008-09-25T03:42:31Z2008-09-25T03:42:31ZInstead of dividing by 2 and commenting it as "shift bits...", you should just use the shift operator (>>) and leave out the comment.
http://stackoverflow.com/questions/130116/dos-batch-commands-to-read-first-line-from-text-file/130154#130154Comment by indiv on DOS batch command(s) to read first line from text fileindiv2008-09-24T23:12:24Z2008-09-24T23:12:24ZThis solution's problem is that it delimits on space instead of newline, and you can't have a filename with spaces. You can fix these issues with the delims and usebackq options in the for loop.