User singpolyma - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T16:45:02Zhttp://stackoverflow.com/feeds/user/8611http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1234558/cross-compiling-with-openssl-for-windows0Cross-compiling with OpenSSL for Windowssingpolyma2009-08-05T17:11:28Z2009-11-26T22:00:02Z
<p>I'm trying to compile the oauth-utils
<a href="http://mir.dnsalias.com/oss/oauth/start" rel="nofollow">http://mir.dnsalias.com/oss/oauth/start</a>
for Windows from Ubuntu. I have compiled it on Windows before
(a few months back), but wanted to try cross-compiling.</p>
<p>I got openssl build using mingw32 ok, and put
libssl.a and libcrypto.a in the right place. The linker is now
finding the libraries (yay!) but I get the following error:</p>
<pre><code>/usr/lib/gcc/i586-mingw32msvc/4.2.1-sjlj/../../../../i586-mingw32msvc/lib/libcrypto.a(rand_win.o):rand_win.c:(.text+0xaac): undefined reference to `_CreateDCA@16'
/usr/lib/gcc/i586-mingw32msvc/4.2.1-sjlj/../../../../i586-mingw32msvc/lib/libcrypto.a(rand_win.o):rand_win.c:(.text+0xab9): undefined reference to `_CreateCompatibleDC@4'
/usr/lib/gcc/i586-mingw32msvc/4.2.1-sjlj/../../../../i586-mingw32msvc/lib/libcrypto.a(rand_win.o):rand_win.c:(.text+0xacc): undefined reference to `_GetDeviceCaps@8'
/usr/lib/gcc/i586-mingw32msvc/4.2.1-sjlj/../../../../i586-mingw32msvc/lib/libcrypto.a(rand_win.o):rand_win.c:(.text+0xadc): undefined reference to `_GetDeviceCaps@8'
/usr/lib/gcc/i586-mingw32msvc/4.2.1-sjlj/../../../../i586-mingw32msvc/lib/libcrypto.a(rand_win.o):rand_win.c:(.text+0xaf4): undefined reference to `_CreateCompatibleBitmap@12'
/usr/lib/gcc/i586-mingw32msvc/4.2.1-sjlj/../../../../i586-mingw32msvc/lib/libcrypto.a(rand_win.o):rand_win.c:(.text+0xb04): undefined reference to `_SelectObject@8'
/usr/lib/gcc/i586-mingw32msvc/4.2.1-sjlj/../../../../i586-mingw32msvc/lib/libcrypto.a(rand_win.o):rand_win.c:(.text+0xb18): undefined reference to `_GetObjectA@12'
/usr/lib/gcc/i586-mingw32msvc/4.2.1-sjlj/../../../../i586-mingw32msvc/lib/libcrypto.a(rand_win.o):rand_win.c:(.text+0xb81): undefined reference to `_BitBlt@36'
/usr/lib/gcc/i586-mingw32msvc/4.2.1-sjlj/../../../../i586-mingw32msvc/lib/libcrypto.a(rand_win.o):rand_win.c:(.text+0xb8c): undefined reference to `_GetBitmapBits@12'
/usr/lib/gcc/i586-mingw32msvc/4.2.1-sjlj/../../../../i586-mingw32msvc/lib/libcrypto.a(rand_win.o):rand_win.c:(.text+0xbe5): undefined reference to `_SelectObject@8'
/usr/lib/gcc/i586-mingw32msvc/4.2.1-sjlj/../../../../i586-mingw32msvc/lib/libcrypto.a(rand_win.o):rand_win.c:(.text+0xbec): undefined reference to `_DeleteObject@4'
/usr/lib/gcc/i586-mingw32msvc/4.2.1-sjlj/../../../../i586-mingw32msvc/lib/libcrypto.a(rand_win.o):rand_win.c:(.text+0xbf6): undefined reference to `_DeleteDC@4'
/usr/lib/gcc/i586-mingw32msvc/4.2.1-sjlj/../../../../i586-mingw32msvc/lib/libcrypto.a(rand_win.o):rand_win.c:(.text+0xc00): undefined reference to `_DeleteDC@4'
</code></pre>
<p>Any ideas what could be causing this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1792894/internet-explorer-wont-load-site0Internet Explorer won't load site [closed]singpolyma2009-11-24T21:01:56Z2009-11-24T21:10:17Z
<p>Internet Explorer (versions 6 and 8, on XP) refuse to load <a href="https://theveeb.com" rel="nofollow">https://theveeb.com</a>, giving a server not found error.</p>
<p><a href="http://wiki.theveeb.com" rel="nofollow">http://wiki.theveeb.com</a> works, so it can talk to the apache2 server I have running there.</p>
<p>The only thing I can think of is that IE is hating my SSL setup... but I can't think of why that would be or what I need to do to fix it.</p>
<p>When I try <a href="http://theveeb.com" rel="nofollow">http://theveeb.com</a> in the same browsers, I get the same effect. They should redirect to https://, but they don't seem to, they just error.</p>
<p>Firefox, Uzbl, curl, wget on Ubunt work fine
wget.exe on Windows seems to also work fine</p>
http://stackoverflow.com/questions/1584552/incorporating-open-id-with-my-current-login-system/1682879#16828791Answer by singpolyma for Incorporating Open ID with my current login System?singpolyma2009-11-05T19:12:36Z2009-11-05T19:12:36Z<p>The idea with the table layout you show is to have a 1:many from users:openids.</p>
<p>Thus, no changes to the users table are needed.</p>
<p>When someone logs in with an OpenID, you check if that OpenID is in the openids table. If so, you have the user_id of the user and you are done.</p>
<p>Otherwise create a new user (with no username/password set) and insert an (openid,user_id) pair for them into the openids table.</p>
<p>You template can display whatever nice placeholder (such as their OP, or whatever) where it would normally display username for users whose username is blank.</p>
<p>Hopefully you already disallow logging in with blank passwords, so there should be no security issue there.</p>
http://stackoverflow.com/questions/1676363/cygwin-shell-scripts0Cygwin Shell Scriptssingpolyma2009-11-04T20:20:46Z2009-11-04T20:27:21Z
<p>I'm not running cygwin, but I have the cygwin ash.exe in my %PATH% as sh.exe and have cygwin1.dll in %PATH%</p>
<p>I am trying to invoke some shell scripts (named with no extension) using sh -c shell-script-name but I get a "permission denied" error. If I run sh and run ./script I also get this error. I have a proper #!/bin/sh shebang line and even renaming to .sh or .exe has no effect. What should I do?</p>
http://stackoverflow.com/questions/1256264/div-or-iframe-over-an-applet/1607752#16077521Answer by singpolyma for div or iframe over an appletsingpolyma2009-10-22T14:44:16Z2009-10-22T14:44:16Z<p>There is no reliable way to force a browser to layer content on top of a plugin, because plugins like Flash just talk to the video/audio system rather directly and just paint in the bounding box the browser tells them to.</p>
<p>Obviously it's still experimental, and there's no IE support (without ChromeFrame), but was designed to solve exactly this problem.</p>
http://stackoverflow.com/questions/1493919/best-way-to-implement-a-calendar-interface-using-google-cal-feeds-for-events/1607726#16077260Answer by singpolyma for Best way to implement a Calendar interface using Google Cal feeds for events?singpolyma2009-10-22T14:41:10Z2009-10-22T14:41:10Z<p>I would build (or find) an app that mixes the selected iCal feeds together to create a new feed, so that it can be subscribed to in GCal/iCal/Outloook/30boxes/...</p>
<p>If you still want a display you might try WebCalendar.</p>
<p>IIRC there are also some Drupal modules for this kind of thing.</p>
http://stackoverflow.com/questions/115813/how-to-statically-compile-an-sdl-game-on-windows/1416421#14164210Answer by singpolyma for How to statically compile an SDL game on Windowssingpolyma2009-09-12T23:20:14Z2009-09-12T23:20:14Z<p>On my system (Ubuntu) I have to use the following flags:</p>
<pre><code>-Wl,Bstatic -lSDL_image `sdl-config --libs` -lpng12 -lz -ltiff -ljpeg -lasound -laudio -lesd -Wl,-Bdynamic `directfb-config --libs` -lpulse-simple -lcaca -laa -ldl
</code></pre>
<p>That links SDL, SDL<code>_</code>image, and many of their dependencies as static. libdl you never want static, so making a fully-static binary that uses SDL<code>_</code>image is a poor idea. pulse,caca,aa, and directfb can probably be made static. I haven't got far enough to figure them out yet.</p>
http://stackoverflow.com/questions/1234558/cross-compiling-with-openssl-for-windows/1234605#12346050Answer by singpolyma for Cross-compiling with OpenSSL for Windowssingpolyma2009-08-05T17:21:46Z2009-08-05T17:21:46Z<p>It seems that if one remove everything between</p>
<pre><code>static void readscreen(void)
{
#if !defined(OPENSSL_SYS_WINCE) && !defined(OPENSSL_SYS_WIN32_CYGWIN)
</code></pre>
<p>and</p>
<pre><code>#endif /* !OPENSSL_SYS_WINCE */
}
</code></pre>
<p>in rand_win.c, that building works. I'm not 100% sure how safe removing this is.</p>
http://stackoverflow.com/questions/938760/read-stdin-sysin-in-cobol3Read STDIN (SYSIN) in COBOLsingpolyma2009-06-02T10:01:05Z2009-07-12T11:24:52Z
<p>I want to read the lines out of STDIN (aka SYSIN) in COBOL. For now I just want to print them out so that I know I've got them. From everything I'm reading it looks like this should work:</p>
<pre><code> IDENTIFICATION DIVISION.
PROGRAM-ID. APP.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT SYSIN ASSIGN TO DA-S-SYSIN ORGANIZATION LINE SEQUENTIAL.
DATA DIVISION.
FILE SECTION.
FD SYSIN.
01 ln PIC X(255).
88 EOF VALUE HIGH-VALUES.
WORKING-STORAGE SECTION.
PROCEDURE DIVISION.
OPEN INPUT SYSIN
READ SYSIN
AT END SET EOF TO TRUE
END-READ
PERFORM UNTIL EOF
DISPLAY ln
READ SYSIN
AT END SET EOF TO TRUE
END-READ
END-PERFORM
CLOSE SYSIN
STOP RUN.
</code></pre>
<p>That compiles (using open-cobol and cobc -x), but running it I get:</p>
<pre><code>libcob: File does not exist (STATUS = 35) File : ''
</code></pre>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1061240/is-client-side-interface-development-as-a-speciality-dying-out/1061400#10614000Answer by singpolyma for Is client side (interface) development as a speciality dying out?singpolyma2009-06-30T01:59:44Z2009-06-30T01:59:44Z<p>A lot of devs who can't design to save their lives (I mostly fit that) can quite nicely convert a design mockup they're given into good XHTML/CSS (usually much better than a design-oriented person could!)</p>
<p>I would say designers who can code a bit and coders who can translate designs get rid of the need for people who just do XHTML work.</p>
http://stackoverflow.com/questions/1061355/learning-version-control-for-a-college-freshman/1061384#10613845Answer by singpolyma for Learning version control for a college freshmansingpolyma2009-06-30T01:52:54Z2009-06-30T01:52:54Z<p>If those are your only options, definitely SVN. That's the one (from that list) that real people use in the wild.</p>
<p>Honestly, though, learn a DVCS. Git, Mercurial, darcs, one of them.</p>
http://stackoverflow.com/questions/769293/get-specific-version-of-a-column0Get specific "version" of a columnsingpolyma2009-04-20T17:31:57Z2009-06-11T16:16:50Z
<p>I have an app that uses SQLite to store data locally. There may be more than one file storing the data. All the files contain a list of items, but only one of them has the "correct" status for the current user (basically, there is a "user" db in $HOME and a "system-wide" one in /etc).</p>
<p>Usually, both files will contain the same list of items, and only the status column will differ. If, however, either contains items not in both, I want that data as well.</p>
<p>SQLite does not have FULL OUTER JOIN.</p>
<p>A solution I have come up with is this:</p>
<pre><code>SELECT item, group_concat(status) AS status FROM (SELECT item,status FROM items UNION SELECT item,status FROM otherdb.items) GROUP BY item;
</code></pre>
<p>And then parsing the comma-seperated "status" output to get the "right" status. I would like a pure SQL solution, however.</p>
<p>The values I want for status are:</p>
<pre><code>If any = 1, status = 1
elif any = -1, status = -1
elif any = 2, status = 2
elif any = -2, status = -2
else status = 0 or NULL
</code></pre>
<p>status may only (in the db) be -2,-1,0,NULL,1,2 so this covers all data.</p>
<p>If there is a solution that only gives whichever one is non-zero and non-null, that could work too, although I would prefer the above.</p>
http://stackoverflow.com/questions/966970/can-i-use-a-wordpress-theme-in-new-php-pages/967578#9675780Answer by singpolyma for Can I use a wordpress theme in new php pages?singpolyma2009-06-08T23:50:15Z2009-06-08T23:50:15Z<p>Another option is to use Wordpress as the CMS for all content on your site. This is increasingly becoming popular, as Wordpress is quite good at non-blog-things these days.</p>
http://stackoverflow.com/questions/938760/read-stdin-sysin-in-cobol/947865#9478651Answer by singpolyma for Read STDIN (SYSIN) in COBOLsingpolyma2009-06-03T23:44:05Z2009-06-03T23:44:05Z<p>The following was suggested to me on the <a href="http://www.opencobol.org/modules/newbb/viewtopic.php?viewmode=thread&topic%5Fid=610&forum=1&post%5Fid=3111#3111" rel="nofollow">OpenCOBOL forums</a>.</p>
<pre><code>SELECT SYSIN ASSIGN TO KEYBOARD ORGANIZATION LINE SEQUENTIAL.
</code></pre>
<p>It's the keyword KEYBOARD that makes it work.</p>
<p>Apparently DISPLAY is a similar word for STDOUT, but I have not tested that.</p>
http://stackoverflow.com/questions/940533/how-do-i-set-path-such-that-ssh-userhost-command-works/941995#9419952Answer by singpolyma for How do I set $PATH such that `ssh user@host command` works?singpolyma2009-06-02T21:25:35Z2009-06-02T21:25:35Z<p>As <a href="#940595" rel="nofollow">grawity said</a>, ~/.bashrc is what you want, since it is sourced by non-interactive non-login shells.</p>
<p>I expect the problem you're having has to do with the default Ubuntu ~/.bashrc file. It usually starts with something like this:</p>
<pre><code># If not running interactively, don't do anything
[ -z "$PS1" ] && return
</code></pre>
<p>You want to put anything for non-interactive shells <em>before</em> this line.</p>
http://stackoverflow.com/questions/937613/order-of-stacked-html-elements/937618#9376180Answer by singpolyma for Order of stacked HTML elementssingpolyma2009-06-02T01:50:08Z2009-06-02T01:50:08Z<p>Yes, it's a bit of a fluke... z-index should really be set on both to make sure.</p>
http://stackoverflow.com/questions/886371/generating-objects-in-php-using-rest/900406#9004060Answer by singpolyma for Generating objects in PHP using REST singpolyma2009-05-22T23:25:34Z2009-05-22T23:25:34Z<p>The whole idea behind rest is that you do not use it with hackish "object models" like with SOAP. The problem is you're trying to use the system wrong :)</p>
<p>If you want object models, use SOAP.</p>
<p>If you want web-friendly APIs, use REST.</p>
http://stackoverflow.com/questions/891055/what-do-sites-like-google-docs-and-zoho-writer-use-to-generate-ms-office-document/900393#9003930Answer by singpolyma for What do sites like Google Docs and Zoho Writer use to generate MS Office documentssingpolyma2009-05-22T23:19:18Z2009-05-22T23:19:18Z<p>A popular way to do it is to generate RTF with the file extension .doc. It works fine with Word and other editors, and users remain happy that it is "a DOC file"</p>
http://stackoverflow.com/questions/866622/c-timer-callback0C Timer Callbacksingpolyma2009-05-15T01:10:27Z2009-05-15T03:50:42Z
<p>Interested in something similar to JavaScript setTimeout in C on both UNIX and Windows.</p>
<p>Basically, I want:</p>
<pre><code>start_timer(&function_pointer, int time_in_secs)
</code></pre>
<p>or as close to that as I can get.</p>
<p>Also, something similar to setInterval would be nice (where it calls the callback every n seconds), but that can be implemented using setTimeout :)</p>
http://stackoverflow.com/questions/859431/what-license-to-use-for-translations-of-open-source-software/859654#8596541Answer by singpolyma for What license to use for translations of open source softwaresingpolyma2009-05-13T18:38:14Z2009-05-13T18:38:14Z<p>CC-BY is probably the best to use, however since you are a GNU guy, you may prefer GFDL.</p>
http://stackoverflow.com/questions/859473/toggle-visibility-of-div-tags-based-on-browser-language/859596#8595962Answer by singpolyma for Toggle visibility of div tags based on Browser Languagesingpolyma2009-05-13T18:29:23Z2009-05-13T18:29:23Z<p>First off, you shouldn't wrap in a div, you should just put the attribute directly on the tag.
Secondly, if you're in HTML you can use the lang attribute, and if you're in XHTML you can use the xml:lang attribute... this is much more descriptive than "id".
Finally, it's probably best to do the processing server-side if you can, using Accept-Language</p>
http://stackoverflow.com/questions/998997/should-i-avoid-regular-expressions/842361#8423611Answer by singpolyma for Should I avoid regular expressions?singpolyma2009-05-09T00:17:50Z2009-05-09T00:17:50Z<p>Regular expressions are often easier to understand than the non-regex equivalent, especially in a language with native regular expressions, especially in a code section where other things that need to be done with regexes are present.</p>
<p>That doesn't meant they're not overused. The only time string.match(/\?/) is better than string.contains('?') is if it's significantly more readable with the surrounding code, or if you know that .contains is implemented with regexes anyway</p>
http://stackoverflow.com/questions/842144/comparing-rails-vs-php-to-a-non-technical-audience/842349#8423490Answer by singpolyma for Comparing Rails vs. PHP to a non-technical audiencesingpolyma2009-05-09T00:12:23Z2009-05-09T00:12:23Z<p>I don't think branding is important. If the site is something best done in PHP, then no argument in favour of rails will look good. If the site is best done in rails (or django) then that should be obvious.</p>
<p>If you're to be a one-man team I'd just build it in rails because you're the developer and that's what you know. Even a non-techie should see that hiring a rails developer to build a site in pure PHP is just silly.</p>
http://stackoverflow.com/questions/826865/convert-an-svn-checkout-to-use-git-git-svn/826887#8268873Answer by singpolyma for Convert an SVN checkout to use git (git-svn)singpolyma2009-05-05T20:59:14Z2009-05-05T20:59:14Z<p>No. A git-svn clone converts the entire repository into git. SVN checkouts do not have the entire repository and so cannot be cloned from. This is the primary advantage of switching from SVN or CVS to a distributed system (like git).</p>
http://stackoverflow.com/questions/772208/best-audio-playback-api-for-c-c-under-linux/772243#7722431Answer by singpolyma for Best audio playback api for C/C++ under Linux?singpolyma2009-04-21T12:06:14Z2009-04-21T12:06:14Z<p>SDL is really nice</p>
http://stackoverflow.com/questions/758018/path-to-binary-in-c4Path to binary in Csingpolyma2009-04-16T20:58:30Z2009-04-18T21:06:25Z
<p>How can I get the path where the binary that is executing resides in a C program?</p>
<p>I'm looking for something similar to <code>__FILE__</code> in ruby/perl/PHP (but of course, the <code>__FILE__</code> macro in C is determined at compile time).</p>
<p><code>dirname(argv[0])</code> will give me what I want in all cases unless the binary is in the user's <code>$PATH</code>... then I do not get the information I want at all, but rather <code>""</code> or <code>"."</code></p>
http://stackoverflow.com/questions/762631/find-out-if-a-command-exists-on-posix-system0Find out if a command exists on POSIX systemsingpolyma2009-04-18T00:31:34Z2009-04-18T00:55:47Z
<p>I want to be able to tell if a command exists on any POSIX system from a shell script.</p>
<p>On Linux, I can do the following:</p>
<pre><code>if which <command>; then
...snip...
fi
</code></pre>
<p>However, Solaris and MacOS <code>which</code> do not give an exit failure code when the command does not exist, they just print an error message to STDOUT.</p>
<p>Also, I recently discovered that the <code>which</code> command itself is not POSIX (see <a href="http://www.opengroup.org/onlinepubs/009695399/utilities/" rel="nofollow">http://www.opengroup.org/onlinepubs/009695399/utilities/</a>)</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/762631/find-out-if-a-command-exists-on-posix-system/762682#7626822Answer by singpolyma for Find out if a command exists on POSIX systemsingpolyma2009-04-18T00:55:47Z2009-04-18T00:55:47Z<p><code>command -v</code> is a POSIX specified command that does what which does.</p>
<p>It is defined to to return >0 when the command is not found or an error occurs.</p>
http://stackoverflow.com/questions/761442/storing-ascii-and-binary-data-with-in-a-single-tab-delimited-file/761450#7614507Answer by singpolyma for Storing ascii and binary data with in a single tab-delimited filesingpolyma2009-04-17T17:40:52Z2009-04-17T17:40:52Z<p>base64 encode your binary data. Maybe prefix it with base64: or something if that helps. Then it's just an ASCII file and you can easily parse it as such.</p>
http://stackoverflow.com/questions/760493/w3c-compliant-wysiwyg/760573#7605731Answer by singpolyma for W3C Compliant WYSIWYG?singpolyma2009-04-17T14:11:50Z2009-04-17T14:11:50Z<p>The whole concept of WYSIWYG goes against the spirit of the HTML specs.</p>
<p>I'm not sure if there are any good WYSIWYM editors meant for the web. Lyx is great for documents, but not websites.</p>
http://stackoverflow.com/questions/1676363/cygwin-shell-scripts/1676395#1676395Comment by singpolyma on Cygwin Shell Scriptssingpolyma2009-11-04T20:32:51Z2009-11-04T20:32:51ZLine endings are Unix
./script fails
. ./script succeeds
sh ./script succeeds
sh -c ./script fails
sh -c script failshttp://stackoverflow.com/questions/256953/html-5-versus-xhtml-1-0-transitional/595937#595937Comment by singpolyma on HTML 5 versus XHTML 1.0 Transitional?singpolyma2009-10-22T14:04:44Z2009-10-22T14:04:44ZXHTML1.1 is just XHTML1.0 with some more deprecations and stricter doctype. IE treats it as tag soup instead of knowing the doctype, but since IE is pretty quirky anyway I've never had a big problem with that.http://stackoverflow.com/questions/1058589/send-array-from-flash-as3-to-javascript/1058715#1058715Comment by singpolyma on Send array from Flash (AS3) to JavaScript.singpolyma2009-06-30T01:54:09Z2009-06-30T01:54:09ZJust be sure your data will never contain the separator character(s)!http://stackoverflow.com/questions/1018853/why-is-alloca-not-considered-good-practice/1018865#1018865Comment by singpolyma on Why is alloca not considered good practice?singpolyma2009-06-23T00:28:24Z2009-06-23T00:28:24ZNot the same as large arrays, since the OS will guarentee space for those... they're statically sized.http://stackoverflow.com/questions/938760/read-stdin-sysin-in-cobol/939051#939051Comment by singpolyma on Read STDIN (SYSIN) in COBOLsingpolyma2009-06-02T17:17:54Z2009-06-02T17:17:54ZI'm OK with using ACCEPT instead (although I've read that's considered bad practise for large data), but then how do I construct the loop to detect EOF?http://stackoverflow.com/questions/115256/skills-in-demand-during-2009/115519#115519Comment by singpolyma on Skills in demand during 2009singpolyma2009-06-02T01:54:24Z2009-06-02T01:54:24ZYou can't find a LAMP dev? No, you can't find one "with professional experience". So try one without on a contract basis. If he's good, keep him.http://stackoverflow.com/questions/176324/why-does-everyone-like-jquery-more-than-prototype-script-aclo-us-or-mootools-or-w/277012#277012Comment by singpolyma on Why does everyone like jQuery more than prototype/script.aclo.us or mootools or whatever?singpolyma2009-05-27T01:39:59Z2009-05-27T01:39:59ZAgree with the comment that jQuery's $ function does way too much!http://stackoverflow.com/questions/176324/why-does-everyone-like-jquery-more-than-prototype-script-aclo-us-or-mootools-or-wComment by singpolyma on Why does everyone like jQuery more than prototype/script.aclo.us or mootools or whatever?singpolyma2009-05-27T01:35:54Z2009-05-27T01:35:54ZThis question assumes everyone likes jQuery... this is a flawed assumptionhttp://stackoverflow.com/questions/769786/vendor-branches-in-gitComment by singpolyma on Vendor Branches in GITsingpolyma2009-05-05T21:58:55Z2009-05-05T21:58:55ZIt's on topic... you keep arguing that git is tied to ruby. It's not.
Rail is not ruby.http://stackoverflow.com/questions/826865/convert-an-svn-checkout-to-use-git-git-svn/826887#826887Comment by singpolyma on Convert an SVN checkout to use git (git-svn)singpolyma2009-05-05T21:53:58Z2009-05-05T21:53:58ZThat's not how git works. DVCS is "distributed" because every clone is a full copy of the repository. That's the whole point.http://stackoverflow.com/questions/769786/vendor-branches-in-gitComment by singpolyma on Vendor Branches in GITsingpolyma2009-04-22T20:59:18Z2009-04-22T20:59:18ZRuby? Git has nothing to do with ruby... it was designed for the Linux kernel.
Git bash has always worked fine for me the rare day I'm on a Win32 system.http://stackoverflow.com/questions/762631/find-out-if-a-command-exists-on-posix-system/762652#762652Comment by singpolyma on Find out if a command exists on POSIX systemsingpolyma2009-04-18T00:44:28Z2009-04-18T00:44:28ZType without -p is POSIX, but POSIX does not guarentee that it interprets the command not existing as an error.http://stackoverflow.com/questions/762631/find-out-if-a-command-exists-on-posix-system/762640#762640Comment by singpolyma on Find out if a command exists on POSIX systemsingpolyma2009-04-18T00:37:01Z2009-04-18T00:37:01ZAh, [ -x "<code>which aeiei</code>" ] could work... again, assuming which exists...http://stackoverflow.com/questions/762631/find-out-if-a-command-exists-on-posix-system/762640#762640Comment by singpolyma on Find out if a command exists on POSIX systemsingpolyma2009-04-18T00:35:49Z2009-04-18T00:35:49ZThe problem is, that even on systems that <i>have</i> which, I am not guarenteed there will even <i>be</i> any output... I guess I could just check to see that it doesn't "look like a path"...http://stackoverflow.com/questions/758018/path-to-binary-in-c/758033#758033Comment by singpolyma on Path to binary in Csingpolyma2009-04-16T21:04:39Z2009-04-16T21:04:39ZI don't want the working directory path, though, I want the path to the <i>binary</i>