User hayalci - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T11:30:55Zhttp://stackoverflow.com/feeds/user/16084http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1742980/in-a-linux-kernel-module-how-can-i-get-inode-of-a-known-path2In a linux kernel module, how can I get inode of a known pathhayalci2009-11-16T15:41:57Z2009-11-20T21:49:03Z
<p>In a linux <strong>kernel module</strong> (i.e. working in kernel space), I have a path of a file. </p>
<p>Which function(s) can be used to get the inode of that file. Specifically I need to get the "inode *" pointing to the file's inode.</p>
http://stackoverflow.com/questions/1052746/getopt-does-not-parse-optional-arguments-to-parameters3getopt does not parse optional arguments to parametershayalci2009-06-27T12:15:28Z2009-06-28T00:16:29Z
<p>In C, getopt_long does not parse the optional arguments to command line parameters parameters.</p>
<p>When I run the program, the optional argument is not recognized like the example run below.</p>
<pre><code>$ ./respond --praise John
Kudos to John
$ ./respond --blame John
You suck !
$ ./respond --blame
You suck !
</code></pre>
<p>Here is the test code.</p>
<pre><code>#include <stdio.h>
#include <getopt.h>
int main(int argc, char ** argv )
{
int getopt_ret, option_index;
static struct option long_options[] = {
{"praise", required_argument, 0, 'p'},
{"blame", optional_argument, 0, 'b'},
{0, 0, 0, 0} };
while (1) {
getopt_ret = getopt_long( argc, argv, "p:b::",
long_options, &option_index);
if (getopt_ret == -1) break;
switch(getopt_ret)
{
case 0: break;
case 'p':
printf("Kudos to %s\n", optarg); break;
case 'b':
printf("You suck ");
if (optarg)
printf (", %s!\n", optarg);
else
printf ("!\n", optarg);
break;
case '?':
printf("Unknown option\n"); break;
}
}
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1052666/is-there-a-free-hosted-issue-tracker/1052952#10529520Answer by hayalci for Is there a free hosted issue tracker?hayalci2009-06-27T14:50:12Z2009-06-27T14:50:12Z<ul>
<li>There is <a href="https://launchpad.net/" rel="nofollow">Launchpad</a> for bazaar hosting and issue tracker. Also It provides translation, design, FAQ tools.</li>
<li>There is <a href="http://savannah.gnu.org" rel="nofollow">Savannah</a> for Free(as in Freedom) software projects. </li>
</ul>
http://stackoverflow.com/questions/1052746/getopt-does-not-parse-optional-arguments-to-parameters/1052750#10527506Answer by hayalci for getopt does not parse optional arguments to parametershayalci2009-06-27T12:18:36Z2009-06-27T12:18:36Z<p>Altough not mentioned in glibc documentation or getopt man page, optional arguments to long style command line parameters require 'equals sign' (=). Space seperating the optional argument from the parameter does not work</p>
<p>An example run with the test code:</p>
<blockquote>
<pre><code>$ ./respond --praise John
Kudos to John
$ ./respond --praise=John
Kudos to John
$ ./respond --blame John
You suck !
$ ./respond --blame=John
You suck , John!
</code></pre>
</blockquote>
http://stackoverflow.com/questions/984622/what-options-are-there-for-executing-a-php-script-at-a-certain-time-every-day/984647#9846470Answer by hayalci for What options are there for executing a PHP script at a certain time every day?hayalci2009-06-12T01:37:59Z2009-06-12T01:37:59Z<p>You can write a long running script that runs your main script in predefined times but it will be very unnecessary, error prone, and it will basically be a "cron rewrite in phph".</p>
<p>Using the real cron itself will be easier and a more robust solution. If you are packaging an application, you can put a file in /etc/cron.d which contains a single cron line running your application.</p>
http://stackoverflow.com/questions/167165/what-c-c-functions-are-most-often-used-incorrectly-and-can-lead-to-buffer-overf/167182#1671826Answer by hayalci for What C/C++ functions are most often used incorrectly and can lead to buffer overflows?hayalci2008-10-03T14:37:06Z2009-06-07T23:52:17Z<p>In general, any function that does not check bounds in the arguments. A list would be</p>
<ul>
<li>gets()</li>
<li>scanf()</li>
<li>strcpy()</li>
<li>strcat()</li>
</ul>
<p>You should use size limited versions like stncpy, strncat, fgets, etc. Then be careful while giving the size limit; take into consideration the '\0' terminating the string.</p>
<p>Also, arrays are NOT bound checked in C or C++. The following example would cause errors. See <a href="http://en.wikipedia.org/wiki/Off-by-one%5Ferror" rel="nofollow">off by one error</a></p>
<pre><code>int foo[3];
foo[3] = WALKED_OFF_END_OF_ARRAY;
</code></pre>
<p><strong>edit</strong>: Copied answers of @MrValdez , @Denton Gentry</p>
http://stackoverflow.com/questions/903885/python-sending-a-large-dictionary-to-a-server/903950#9039501Answer by hayalci for Python: Sending a large dictionary to a serverhayalci2009-05-24T15:02:18Z2009-05-24T15:02:18Z<p>Have you tried using pickle on the data ?</p>
http://stackoverflow.com/questions/861060/how-do-capture-groups-work-wrt-python-regular-expressions/861076#8610761Answer by hayalci for How do capture groups work? (wrt python regular expressions)hayalci2009-05-14T00:33:45Z2009-05-14T00:33:45Z<p>You are repeating the group itself by appending '+' after ')', I do not know the implementation details but it matches 7 times, and returns only the last match.</p>
<p>In the first one, you are matching 7 digits, and making it a group.</p>
http://stackoverflow.com/questions/772972/determining-the-amount-of-time-processes-spend-blocking-executing/813843#8138431Answer by hayalci for Determining the amount of time processes spend Blocking/Executinghayalci2009-05-02T00:47:43Z2009-05-02T00:47:43Z<p>You can use 'time' </p>
<pre><code> $ time ls /usr/bin
real 0m4.756s
user 0m0.051s
sys 0m0.078s
</code></pre>
<p>real - sys = total time waited for I/O (sleeping/blocking)</p>
<p>sys - user = the time spent on system calls</p>
<p>user = the time that was spent by executing the instructions in your program only ( maybe including dynamic linking overhead, not sure about that)</p>
http://stackoverflow.com/questions/813408/red-hat-enterprise-5-display-mode-detection-issue/813825#8138251Answer by hayalci for Red Hat Enterprise 5 display mode detection issuehayalci2009-05-02T00:34:40Z2009-05-02T00:34:40Z<p>You should really try a Linux forum for this question, but <a href="http://forums.whirlpool.net.au/forum-replies-archive.cfm/777575.html" rel="nofollow">here's a page that can help you</a></p>
http://stackoverflow.com/questions/813700/what-are-good-ways-to-get-something-like-d-bus-to-work-across-multiple-linux-mach/813818#8138181Answer by hayalci for What are good ways to get something like D-Bus to work across multiple Linux machines, possibly through firewalls?hayalci2009-05-02T00:31:49Z2009-05-02T00:31:49Z<p>I know of no ready-made solutions like this. </p>
<p>My suggestion is that you write scripts that use curl or wget to send HTTP POST requests to a very simple web application, containing your info. And another machine polls the same web in intervals and GETs the info.</p>
<p><a href="http://alex.dojotoolkit.org/2006/03/comet-low-latency-data-for-the-browser/" rel="nofollow">Comet</a> can improve the polling nastiness, but will probably require more effort.</p>
http://stackoverflow.com/questions/612256/how-can-i-use-bash-for-csv-separation/612353#6123531Answer by hayalci for How can I use bash for CSV Separation?hayalci2009-03-04T20:46:31Z2009-03-04T20:46:31Z<p>One trick is to set IFS(internal field seperator) variable to comma(,). The <a href="http://tldp.org/LDP/abs/html/internalvariables.html#IFSREF" rel="nofollow">advanced bash scripting guide</a> shows good examples.</p>
http://stackoverflow.com/questions/549810/control-r-reverse-i-search-in-cygwin-bash-how-do-you-reset-the-search/549860#5498600Answer by hayalci for Control-r reverse-i-search in Cygwin bash: how do you "reset" the search?hayalci2009-02-14T21:46:12Z2009-02-14T22:01:09Z<p>My bash works as you are expecting. Maybe hitting "ctrl+C" instead of "esc" can help.</p>
<p>Also, you can search forward using "ctrl+s" </p>
<p><em>edit</em>: ctrl+s works if it does not send a "stop" to your terminal, i.e. if "stty -a" gives you "-ixon". You can change it by "stty -ixon". Thanks to @Phil for reminder.</p>
http://stackoverflow.com/questions/474698/how-do-i-create-a-unix-password-hash-with-php/474730#4747302Answer by hayalci for How do I create a unix password hash with phphayalci2009-01-23T21:48:40Z2009-01-23T21:48:40Z<p>Use <a href="http://www.php.net/manual/en/function.crypt.php" rel="nofollow">crypt</a>. Recent linux/unixes use CRYPT_MD5 or
CRYPT_BLOWFISH. MD5 is the most widely supported one. DES's are for old systems.</p>
<p>Also I should note that the MD5 version is not a simple MD5 sum operation, it also uses a "salt" value to make hashes not-precalculatable. [[ I made up this term :) ]]</p>
http://stackoverflow.com/questions/452375/detecting-https-requests-in-php/452395#4523954Answer by hayalci for Detecting https requests in phphayalci2009-01-16T23:23:23Z2009-01-16T23:23:23Z<p>If the load balancer is the other end of the SSL connection, you cannot get any more info than the load balancer explicitly provides. I would go for adding a http header, it may already be doing that, dump all the HTTP headers and look.</p>
<p>As another solution, you can do the redirection on the load balancer based on URL.</p>
http://stackoverflow.com/questions/394978/download-from-explosm-net-comics-script-python/395066#3950663Answer by hayalci for Download from EXPLOSM.net Comics Script [Python]hayalci2008-12-27T14:53:42Z2008-12-27T14:53:42Z<p><a href="http://refactormycode.com/" rel="nofollow">refactormycode</a> may be a more appropriate web site for these "let's improve this code" type of discussions.</p>
http://stackoverflow.com/questions/346692/writing-bash-script-to-change-text-and-write-to-a-log/346711#3467113Answer by hayalci for writing bash script to change text and write to a loghayalci2008-12-06T20:15:14Z2008-12-08T23:44:27Z<p>This will change only the first appearance of "dev" to "stage"</p>
<pre><code>sed -i '0,/dev/ s/dev/stage/' config.inc.php
</code></pre>
<p>Be aware that it changes "devel" into "stageel". This version behaves just like you want, only a "dev" is searched, not a "devel" (in fact, <code>s/\<dev\>/stage/</code> as the substitution expression should work, but it does not seem to work as expected? I'll be glad if anyone with more sed-fu can explain. )</p>
<pre><code>sed -i "/\<dev\>/,/\<dev\>/ s/dev/stage/" config.inc.php
</code></pre>
<p>For logging:</p>
<pre><code>date >> /path/to/dev/run.log
</code></pre>
<p><hr></p>
<p><em>Added by Jonathan Leffler</em></p>
<ul>
<li>Assuming other issues are resolved (see below), the second <code>sed</code> command can still change <code>devel</code> to <code>stagel</code> if the line contains, for example, "<em>move devel code from /some/dev/location to /some/stage/location</em>".</li>
<li>Also, the second <code>sed</code> command will map each <code>dev</code> found between the first line containing <code>dev</code> and the second such line. This matters if there's more than one matching line, whereas the original '<code>0,/dev/</code>' (or amended '<code>0,/\<dev\>/</code>') only matches the first line as requested.</li>
<li>The reason <code>"s/\<dev\>/stage/"</code> doesn't work is not a <code>sed</code> issue but a shell issue. Use single quotes and you'd be almost OK. With double quotes, the back-slash less-than sequence appears to <code>sed</code> as just less-than.</li>
<li><strong>Rule of Thumb</strong>: use single quotes around any argument in a shell script containing regular expression material. Unlesss it is saturated with single quotes, replace each single quote in the regular expression with the sequence quote, backslash, quote, quote "<code>'\''</code>". (The first quote terminates the single quote string; the backslash quote is a single quote; the last quote restarts the single quote string.)</li>
<li>Note that the '<code>-i</code>' option is a GNU extension to <code>sed</code>; it is a legimate part of the answer since the question is tagged Linux, where GNU <code>sed</code> is used; be aware if you need to move to a platform such as Solaris, AIX, HP-UX.</li>
<li>Finally, <code>sed</code> does not support extended regular expressions as standard; you have to explicitly enable them in GNU sed with the '<code>-r</code>' option.</li>
</ul>
<p>In my estimation, assuming overwrite is desirable, the command should be:</p>
<pre><code>sed -i -r '0,/\<dev\>/s/\<dev\>/stage/' config.inc.php
</code></pre>
http://stackoverflow.com/questions/329463/what-methods-do-you-use-to-test-a-debian-ubuntu-package/329476#3294760Answer by hayalci for What method(s) do you use to test a debian/ubuntu package?hayalci2008-11-30T22:05:57Z2008-11-30T22:05:57Z<p>chroots are commonly used for package testing.</p>
http://stackoverflow.com/questions/313178/whats-the-best-way-of-doing-dos2unix-on-a-500k-line-file-in-windows/313196#3131963Answer by hayalci for What's the best way of doing dos2unix on a 500k line file, in Windows?hayalci2008-11-24T00:52:12Z2008-11-24T01:22:22Z<pre><code>tr -d '^M' < infile > outfile
</code></pre>
<p>You will type ^M as : ctrl+V , Enter</p>
<p><em>Edit</em>: You can use '\r' instead of manually entering a carriage return, [<em>thanks to @strager</em>]</p>
<pre><code>tr -d '\r' < infile > outfile
</code></pre>
<p><em>Edit 2</em>: 'tr' is a unix utility, you can download a native windows version from <a href="http://unxutils.sourceforge.net" rel="nofollow">http://unxutils.sourceforge.net</a>[<em>thanks to @Rob Kennedy</em>] or use <a href="http://www.cygwin.com/" rel="nofollow">cygwin</a>'s unix emulation.</p>
http://stackoverflow.com/questions/312915/procmail-troubles/313206#3132060Answer by hayalci for Procmail Troubleshayalci2008-11-24T01:03:20Z2008-11-24T01:03:20Z<ol>
<li><p>Your ~.forward file has a missing '/' before usr. Also, you may keep it short like this;</p>
<p>"| <strong>/</strong>usr/bin/procmail"</p></li>
<li>put your .procmailrc under your HOME directory</li>
<li>After setting your MAILDIR, write only "Hello" as the mailbox name in general.rc. Also use ":0:" at the beginning of the recipe to enable locking, all deliveries must lock the mailbox file!</li>
<li>Make sure you have procmail installed at /usr/bin/procmail on the server.</li>
<li>Make sure "Hello" file exists in your MAILDIR.</li>
<li>Check the log file</li>
</ol>
http://stackoverflow.com/questions/294367/what-are-the-experiences-with-using-unicode-in-identifiers/294547#2945470Answer by hayalci for What are the experiences with using unicode in identifiershayalci2008-11-16T23:19:17Z2008-11-16T23:19:17Z<p>I would also recommend using ascii for identifiers. Comments can stay in a non-english language if the editor/ide/compiler etc. are all locale aware and set up to use the same encoding.</p>
<p>Additionally, some case insensitive languages change the identifiers to lowercase before using, and that causes problems if active system locale is Turkish or Azerbaijani . <a href="http://www.i18nguy.com/unicode/turkish-i18n.html" rel="nofollow">see here for more info about Turkish locale problem</a>. I know that PHP does this, and <a href="http://bugs.php.net/bug.php?id=18556" rel="nofollow">it has a long standing bug</a>. </p>
<p>This problem is also present in any software that compares strings using Turkish locales, not only the language implementations themselves, just to point out. It causes <a href="http://planet.gentoo.org/developers/serkan/2008/11/16/applications_failing_with_turkish_locale" rel="nofollow">many headaches</a></p>
http://stackoverflow.com/questions/257872/htaccess-require-ssl-for-a-particular-url/257875#2578751Answer by hayalci for .htaccess require SSL for a particular URLhayalci2008-11-03T03:35:22Z2008-11-03T03:35:22Z<p>You should take a look at <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html" rel="nofollow">mod_rewrite</a> documentation</p>
http://stackoverflow.com/questions/256457/how-does-one-insert-a-backslash-or-a-tilde-into-latex/257814#2578142Answer by hayalci for How does one insert a backslash or a tilde into LaTeX?hayalci2008-11-03T02:37:05Z2008-11-03T02:37:05Z<p>For the tilde, you can use empty curly brace pair. That puts the "over the letter" tilde over an "empty" letter, so it's placed upward.</p>
<pre><code>My tilde\~{}here
</code></pre>
http://stackoverflow.com/questions/257609/which-browsers-plugins-block-httpreferer-from-being-sent/257686#2576860Answer by hayalci for Which browsers/plugins block HttpReferer from being sent?hayalci2008-11-03T01:03:22Z2008-11-03T01:03:22Z<p>I personally disable it using "Web Developer" extension of Firefox, only because of some "helpful" sites that highlight the search terms that I used to get to that page. </p>
<p>Thanks, I am fully capable of installing a highlighter plugin, or search for the words inside your page.</p>
http://stackoverflow.com/questions/257659/how-to-get-a-command-line-process-to-use-less-processing-power/257670#2576701Answer by hayalci for How to get a command line process to use less processing powerhayalci2008-11-03T00:52:26Z2008-11-03T00:52:26Z<p>You should use nice with 19 "niceness" this makes the process very unlikely to run if there are other processes waiting for the cpu.</p>
<pre><code> nice -n 19 <command>
</code></pre>
<p>Be sure that the program does not have busy waits and also check the I/O wait time.</p>
http://stackoverflow.com/questions/255277/ideas-from-function-logic-object-oriented-programming/255326#2553260Answer by hayalci for Ideas from function/logic/object-oriented programminghayalci2008-11-01T00:36:58Z2008-11-01T00:36:58Z<p>There is a reading list about <a href="http://www.cis.upenn.edu/~bcpierce/courses/670Fall04/GreatWorksInPL.shtml" rel="nofollow">programming language concepts here</a></p>
http://stackoverflow.com/questions/255312/how-to-get-a-variable-name-as-a-string-in-php/255318#2553180Answer by hayalci for How to get a variable name as a string in PHP?hayalci2008-11-01T00:33:17Z2008-11-01T00:33:17Z<p>What are the possible different ways that you can get that variable ? You can just do this ;)</p>
<pre><code>print "FooBar"
</code></pre>
http://stackoverflow.com/questions/245290/subversion-vs-cvs/245297#2452972Answer by hayalci for Subversion vs CVShayalci2008-10-28T23:49:35Z2008-10-29T18:24:19Z<p>Subversion is like `a better CVS'. It handles moving files AND directories well. It has branching support, although that is inferior to Distributed VCSs.</p>
<p>You may also consider using a distributed VCS one like git, bazaar or mercurial.</p>
<p>Edit: Here is a <a href="http://stackoverflow.com/questions/1261/what-are-the-advantages-of-using-svn-over-cvs">link to a similar question</a></p>
http://stackoverflow.com/questions/235284/why-do-browsers-not-have-a-file-upload-progress-bar/235414#2354140Answer by hayalci for Why do browsers not have a file upload progress bar?hayalci2008-10-24T22:07:36Z2008-10-24T22:07:36Z<p>Good idea,</p>
<p>See the answer <a href="http://stackoverflow.com/questions/235327/why-is-the-http-auth-ui-so-poor-in-browsers#235405">to your other question</a></p>
http://stackoverflow.com/questions/235327/why-is-the-http-auth-ui-so-poor-in-browsers/235405#2354052Answer by hayalci for Why is the http auth UI so poor in browsers?hayalci2008-10-24T22:04:30Z2008-10-24T22:04:30Z<p>Have you entered a bug report for major browsers ? (At least, ones with bug trackers, Firefox, Chrome (Chromium) etc.</p>
<p>List of open HTTP Auth sessions would be useful.</p>
http://stackoverflow.com/questions/1742980/in-a-linux-kernel-module-how-can-i-get-inode-of-a-known-path/1743074#1743074Comment by hayalci on In a linux kernel module, how can I get inode of a known pathhayalci2009-11-16T16:38:10Z2009-11-16T16:38:10ZThanks for the warnings but I do not intend to read the file. http://stackoverflow.com/questions/1111494/are-hashed-and-salted-passwords-secure-against-dictionary-attacks/1111508#1111508Comment by hayalci on Are hashed and salted passwords secure against dictionary attacks?hayalci2009-07-15T14:13:41Z2009-07-15T14:13:41ZIf pam_cracklib.so included in the PAM stack, it is integrated.http://stackoverflow.com/questions/1125025/what-is-the-role-of-magic-number-in-boot-loading-in-linuxComment by hayalci on What is the role of Magic Number in boot loading in Linux?hayalci2009-07-14T23:34:19Z2009-07-14T23:34:19Zthis belongs on serverfault OR superuserhttp://stackoverflow.com/questions/1111494/are-hashed-and-salted-passwords-secure-against-dictionary-attacks/1111508#1111508Comment by hayalci on Are hashed and salted passwords secure against dictionary attacks?hayalci2009-07-10T19:38:18Z2009-07-10T19:38:18Z@Steven Sudit: you can use cracklib for this purpose
http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652802#652802Comment by hayalci on What is the worst real-world macros/pre-processor abuse you've ever come across?hayalci2009-06-27T13:52:36Z2009-06-27T13:52:36Z@pZy: yeah it is very cl(EVER)http://stackoverflow.com/questions/1052746/getopt-does-not-parse-optional-arguments-to-parameters/1052750#1052750Comment by hayalci on getopt does not parse optional arguments to parametershayalci2009-06-27T12:38:51Z2009-06-27T12:38:51Z@Thomas Some people seem to hate self-answered questions.http://stackoverflow.com/questions/1052746/getopt-does-not-parse-optional-arguments-to-parametersComment by hayalci on getopt does not parse optional arguments to parametershayalci2009-06-27T12:38:01Z2009-06-27T12:38:01ZI'm documenting this here with the answer, so other people does not need to bang their head against the wall.http://stackoverflow.com/questions/20063/whats-the-best-way-to-grab-parse-command-line-arguments-passed-to-a-python-scrip/26910#26910Comment by hayalci on What's the best way to grab/parse command line arguments passed to a Python script?hayalci2009-06-26T11:54:25Z2009-06-26T11:54:25Z@Silfheed's suggestion of argparse seems even better. code.google.com/p/argparse http://stackoverflow.com/questions/984141/forcing-non-cached-gethostbyname/984371#984371Comment by hayalci on Forcing non-cached gethostbyname()hayalci2009-06-12T01:44:44Z2009-06-12T01:44:44Zthe service would be "hosts"http://stackoverflow.com/questions/346692/writing-bash-script-to-change-text-and-write-to-a-log/346704#346704Comment by hayalci on writing bash script to change text and write to a loghayalci2008-12-06T20:52:15Z2008-12-06T20:52:15ZCongratulations, you've just won a "useless use of cat" award, <a href="http://partmaps.org/era/unix/award.html" rel="nofollow">partmaps.org/era/unix/award.html</a> No offense, cheer up :)http://stackoverflow.com/questions/346692/writing-bash-script-to-change-text-and-write-to-a-log/346699#346699Comment by hayalci on writing bash script to change text and write to a loghayalci2008-12-06T20:09:46Z2008-12-06T20:09:46Zthat changes every instance of dev to stagehttp://stackoverflow.com/questions/312915/procmail-troubles/313369#313369Comment by hayalci on Procmail Troubleshayalci2008-11-26T19:50:31Z2008-11-26T19:50:31Zif you edit your question and put your revised setup there, I would be glad to reexamine.http://stackoverflow.com/questions/315470/why-do-people-ask-for-computer-it-help-if-you-tell-them-youre-a-programmer/315589#315589Comment by hayalci on Why do people ask for computer (IT) help if you tell them you're a programmer?hayalci2008-11-24T22:17:11Z2008-11-24T22:17:11ZI am shocked at the cultural differences between countries, whenever I see that response, which is so often on sites like slashdot. In my country (Turkey) saying that to a friend or relative would be a very shameful thing to do :) You would have to make some excuses instead ;)http://stackoverflow.com/questions/315470/why-do-people-ask-for-computer-it-help-if-you-tell-them-youre-a-programmer/315539#315539Comment by hayalci on Why do people ask for computer (IT) help if you tell them you're a programmer?hayalci2008-11-24T22:13:04Z2008-11-24T22:13:04ZIf only I could vote up comments :)http://stackoverflow.com/questions/313178/whats-the-best-way-of-doing-dos2unix-on-a-500k-line-file-in-windows/313196#313196Comment by hayalci on What's the best way of doing dos2unix on a 500k line file, in Windows?hayalci2008-11-24T01:04:20Z2008-11-24T01:04:20Zcygwin may be of help