User hayalci - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T11:30:55Z http://stackoverflow.com/feeds/user/16084 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1742980/in-a-linux-kernel-module-how-can-i-get-inode-of-a-known-path 2 In a linux kernel module, how can I get inode of a known path hayalci 2009-11-16T15:41:57Z 2009-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-parameters 3 getopt does not parse optional arguments to parameters hayalci 2009-06-27T12:15:28Z 2009-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 &lt;stdio.h&gt; #include &lt;getopt.h&gt; 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, &amp;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#1052952 0 Answer by hayalci for Is there a free hosted issue tracker? hayalci 2009-06-27T14:50:12Z 2009-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#1052750 6 Answer by hayalci for getopt does not parse optional arguments to parameters hayalci 2009-06-27T12:18:36Z 2009-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#984647 0 Answer by hayalci for What options are there for executing a PHP script at a certain time every day? hayalci 2009-06-12T01:37:59Z 2009-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#167182 6 Answer by hayalci for What C/C++ functions are most often used incorrectly and can lead to buffer overflows? hayalci 2008-10-03T14:37:06Z 2009-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#903950 1 Answer by hayalci for Python: Sending a large dictionary to a server hayalci 2009-05-24T15:02:18Z 2009-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#861076 1 Answer by hayalci for How do capture groups work? (wrt python regular expressions) hayalci 2009-05-14T00:33:45Z 2009-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#813843 1 Answer by hayalci for Determining the amount of time processes spend Blocking/Executing hayalci 2009-05-02T00:47:43Z 2009-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#813825 1 Answer by hayalci for Red Hat Enterprise 5 display mode detection issue hayalci 2009-05-02T00:34:40Z 2009-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#813818 1 Answer by hayalci for What are good ways to get something like D-Bus to work across multiple Linux machines, possibly through firewalls? hayalci 2009-05-02T00:31:49Z 2009-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#612353 1 Answer by hayalci for How can I use bash for CSV Separation? hayalci 2009-03-04T20:46:31Z 2009-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#549860 0 Answer by hayalci for Control-r reverse-i-search in Cygwin bash: how do you "reset" the search? hayalci 2009-02-14T21:46:12Z 2009-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#474730 2 Answer by hayalci for How do I create a unix password hash with php hayalci 2009-01-23T21:48:40Z 2009-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#452395 4 Answer by hayalci for Detecting https requests in php hayalci 2009-01-16T23:23:23Z 2009-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#395066 3 Answer by hayalci for Download from EXPLOSM.net Comics Script [Python] hayalci 2008-12-27T14:53:42Z 2008-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#346711 3 Answer by hayalci for writing bash script to change text and write to a log hayalci 2008-12-06T20:15:14Z 2008-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/\&lt;dev\&gt;/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 "/\&lt;dev\&gt;/,/\&lt;dev\&gt;/ s/dev/stage/" config.inc.php </code></pre> <p>For logging:</p> <pre><code>date &gt;&gt; /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,/\&lt;dev\&gt;/</code>') only matches the first line as requested.</li> <li>The reason <code>"s/\&lt;dev\&gt;/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,/\&lt;dev\&gt;/s/\&lt;dev\&gt;/stage/' config.inc.php </code></pre> http://stackoverflow.com/questions/329463/what-methods-do-you-use-to-test-a-debian-ubuntu-package/329476#329476 0 Answer by hayalci for What method(s) do you use to test a debian/ubuntu package? hayalci 2008-11-30T22:05:57Z 2008-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#313196 3 Answer by hayalci for What's the best way of doing dos2unix on a 500k line file, in Windows? hayalci 2008-11-24T00:52:12Z 2008-11-24T01:22:22Z <pre><code>tr -d '^M' &lt; infile &gt; 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' &lt; infile &gt; 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#313206 0 Answer by hayalci for Procmail Troubles hayalci 2008-11-24T01:03:20Z 2008-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#294547 0 Answer by hayalci for What are the experiences with using unicode in identifiers hayalci 2008-11-16T23:19:17Z 2008-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#257875 1 Answer by hayalci for .htaccess require SSL for a particular URL hayalci 2008-11-03T03:35:22Z 2008-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#257814 2 Answer by hayalci for How does one insert a backslash or a tilde into LaTeX? hayalci 2008-11-03T02:37:05Z 2008-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#257686 0 Answer by hayalci for Which browsers/plugins block HttpReferer from being sent? hayalci 2008-11-03T01:03:22Z 2008-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#257670 1 Answer by hayalci for How to get a command line process to use less processing power hayalci 2008-11-03T00:52:26Z 2008-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 &lt;command&gt; </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#255326 0 Answer by hayalci for Ideas from function/logic/object-oriented programming hayalci 2008-11-01T00:36:58Z 2008-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#255318 0 Answer by hayalci for How to get a variable name as a string in PHP? hayalci 2008-11-01T00:33:17Z 2008-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#245297 2 Answer by hayalci for Subversion vs CVS hayalci 2008-10-28T23:49:35Z 2008-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#235414 0 Answer by hayalci for Why do browsers not have a file upload progress bar? hayalci 2008-10-24T22:07:36Z 2008-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#235405 2 Answer by hayalci for Why is the http auth UI so poor in browsers? hayalci 2008-10-24T22:04:30Z 2008-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#1743074 Comment by hayalci on In a linux kernel module, how can I get inode of a known path hayalci 2009-11-16T16:38:10Z 2009-11-16T16:38:10Z Thanks 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#1111508 Comment by hayalci on Are hashed and salted passwords secure against dictionary attacks? hayalci 2009-07-15T14:13:41Z 2009-07-15T14:13:41Z If 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-linux Comment by hayalci on What is the role of Magic Number in boot loading in Linux? hayalci 2009-07-14T23:34:19Z 2009-07-14T23:34:19Z this belongs on serverfault OR superuser http://stackoverflow.com/questions/1111494/are-hashed-and-salted-passwords-secure-against-dictionary-attacks/1111508#1111508 Comment by hayalci on Are hashed and salted passwords secure against dictionary attacks? hayalci 2009-07-10T19:38:18Z 2009-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#652802 Comment by hayalci on What is the worst real-world macros/pre-processor abuse you've ever come across? hayalci 2009-06-27T13:52:36Z 2009-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#1052750 Comment by hayalci on getopt does not parse optional arguments to parameters hayalci 2009-06-27T12:38:51Z 2009-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-parameters Comment by hayalci on getopt does not parse optional arguments to parameters hayalci 2009-06-27T12:38:01Z 2009-06-27T12:38:01Z I'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#26910 Comment by hayalci on What's the best way to grab/parse command line arguments passed to a Python script? hayalci 2009-06-26T11:54:25Z 2009-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#984371 Comment by hayalci on Forcing non-cached gethostbyname() hayalci 2009-06-12T01:44:44Z 2009-06-12T01:44:44Z the service would be &quot;hosts&quot; http://stackoverflow.com/questions/346692/writing-bash-script-to-change-text-and-write-to-a-log/346704#346704 Comment by hayalci on writing bash script to change text and write to a log hayalci 2008-12-06T20:52:15Z 2008-12-06T20:52:15Z Congratulations, you've just won a &quot;useless use of cat&quot; 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#346699 Comment by hayalci on writing bash script to change text and write to a log hayalci 2008-12-06T20:09:46Z 2008-12-06T20:09:46Z that changes every instance of dev to stage http://stackoverflow.com/questions/312915/procmail-troubles/313369#313369 Comment by hayalci on Procmail Troubles hayalci 2008-11-26T19:50:31Z 2008-11-26T19:50:31Z if 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#315589 Comment by hayalci on Why do people ask for computer (IT) help if you tell them you're a programmer? hayalci 2008-11-24T22:17:11Z 2008-11-24T22:17:11Z I 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#315539 Comment by hayalci on Why do people ask for computer (IT) help if you tell them you're a programmer? hayalci 2008-11-24T22:13:04Z 2008-11-24T22:13:04Z If 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#313196 Comment by hayalci on What's the best way of doing dos2unix on a 500k line file, in Windows? hayalci 2008-11-24T01:04:20Z 2008-11-24T01:04:20Z cygwin may be of help