User jkramer - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T01:49:25Zhttp://stackoverflow.com/feeds/user/12523http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/108183/how-to-prevent-sigpipes-or-handle-them-properly5How to prevent SIGPIPEs (or handle them properly).jkramer2008-09-20T13:43:21Z2009-11-10T04:58:36Z
<p>I have a small server program that accepts connections on a TCP or local UNIX socket, reads a simple command and, depending on the command, sends a reply. The problem is that the client may have no interest in the answer sometimes and exits early, so writing to that socket will cause a SIGPIPE and make my server crash. What's the best practice to prevent the crash here? Is there a way to check if the other side of the line is still reading? (select() doesn't seem to work here as it always says the socket is writable). Or should I just catch the SIGPIPE with a handler and ignore it?</p>
http://stackoverflow.com/questions/1290889/blackberry-api-compatibility-testing0BlackBerry API Compatibility Testingjkramer2009-08-17T22:40:23Z2009-08-17T23:33:47Z
<p>Is there an easy way to find out the minimum BlackBerry API version required by an application? I know there are several ways, but I think there must be something really simple that is too obvious for me to think of. One way would be to download all device simulators provided by RIM and test the application on each of them. Another way could be to look up all classes and methods used in the application in the API reference and see in which API version they were introduced. The last way would be to pay a testing company (RIM has links to some them on their developer site). Is there something else I didn't think of? Something simple, free?</p>
http://stackoverflow.com/questions/1219175/running-blackberry-application-automatically-directly-after-installation0Running BlackBerry application automatically directly after installation.jkramer2009-08-02T16:11:50Z2009-08-04T20:20:57Z
<p>Hi,</p>
<p>I have written an application that injects some menu items in other BlackBerry applications (for example a "bookmark this page" menu item in the BlackBerry browser). I have configured the application to be run automatically at startup (of the device) so when the device starts, the menu items are installed in the other applications. However, I would also like to have my application started directly after installation (via OTA), so the menu items are directly available to the user. Is there a way to accomplish this without having the user to reboot the device or manually start the application after installation?</p>
<p>Regards,
Jonas</p>
http://stackoverflow.com/questions/1216789/build-specific-blackberry-project-in-eclipse-workspace0Build specific BlackBerry project in Eclipse workspace.jkramer2009-08-01T15:11:01Z2009-08-02T16:01:53Z
<p>I have a workspace in Eclipse containing two BlackBerry projects. I started the workspace with the first project and later added the second project. Now I wanted to build and run the second project, but Eclipse keeps starting the first project in the BlackBerry simulator. When I close the first project and try to run the second one again, I get the error message "Launching DebugServer has encountered a problem. Resource FIRST PROJECT is not open." I think I have to configure Eclipse/BlackBerry simulator to build and run the second project an some place, but I can't find out where to do it. I hope someone can help me, as I also fail to move the second project into another workspace for some reason.</p>
http://stackoverflow.com/questions/1216789/build-specific-blackberry-project-in-eclipse-workspace/1219144#12191440Answer by jkramer for Build specific BlackBerry project in Eclipse workspace.jkramer2009-08-02T16:01:53Z2009-08-02T16:01:53Z<p>I found the solution. The projects that are to be built and run can be configured in the menu "BlackBerry -> Build Configurations -> Edit". For every mode ("private", "debug" and "release") I had to uncheck the first project and check the second one.</p>
http://stackoverflow.com/questions/1831/what-can-someone-do-to-get-organized-around-here/365765#3657650Answer by jkramer for What Can Someone Do to Get Organized Around Here?jkramer2008-12-13T21:28:05Z2008-12-13T21:28:05Z<p>I got myself a Nokia N810 this year and I'm using the <a href="http://pimlico-project.org/" rel="nofollow">Pimlico Suite</a> on it (especially "Dates" and "Tasks") to organize myself. Both a pretty simple and don't have many features (just the right amount), which I appreciate. The tools are also available for other PDAs or PC (only GTK needed I think).</p>
<p>I have also organized my mailbox GMail style - I create a folder "Archive" and everything that's not really important at the moment is moved there. This way I always have at most 0-10 mails in the inbox, which need me to do something. When they "outdate" (work is done, mail is answered or whatever), they go to the archive too. This really improved the way I'm working.</p>
http://stackoverflow.com/questions/323419/simple-script-to-count-nloc/365749#3657491Answer by jkramer for Simple script to count NLOC?jkramer2008-12-13T21:17:14Z2008-12-13T21:17:14Z<p>I usually just do this:</p>
<pre><code>grep -vc '^$' (my files)
</code></pre>
<p>Works only if your empty lines are really empty (no spaces). Sufficient for me.</p>
http://stackoverflow.com/questions/344665/get-most-common-value-in-sql/344772#3447722Answer by jkramer for Get most common value in SQLjkramer2008-12-05T18:44:03Z2008-12-06T01:46:56Z<pre><code>SELECT DISTINCT
"F1"."food",
"F1"."country"
FROM "foo" "F1"
WHERE
"F1"."food" =
(SELECT "food" FROM
(
SELECT "food", COUNT(*) AS "count"
FROM "foo" "F2"
WHERE "F2"."country" = "F1"."country"
GROUP BY "F2"."food"
ORDER BY "count" DESC
) AS "F5"
LIMIT 1
)
</code></pre>
<p>Well, I wrote this in a hurry and didn't check it really well. The sub-select might be pretty slow, but this is shortest and most simple SQL statement that I could think of. I'll probably tell more when I'm less drunk.</p>
<p>PS: Oh well, "foo" is the name of my table, "food" contains the name of the food and "country" the name of the country. Sample output:</p>
<pre><code> food | country
-----------+------------
Bratwurst | Germany
Fisch | Frankreich
</code></pre>
http://stackoverflow.com/questions/229009/how-can-i-get-a-call-stack-listing-in-perl/229151#2291519Answer by jkramer for How can I get a call stack listing in Perl?jkramer2008-10-23T09:53:32Z2008-10-23T09:53:32Z<p>There's also <code>Carp::confess</code> and <code>Carp::cluck</code>.</p>
http://stackoverflow.com/questions/171563/whats-in-your-zshrc/187877#1878771Answer by jkramer for What's in your .zshrc?jkramer2008-10-09T15:40:26Z2008-10-09T15:40:26Z<p>This is my setup for GNU Screen support in ZSH. Don't know where I found it, but it's pretty sweet to have speaking titles in your screen windows if you have lots of them.</p>
<pre><code>function title {
if [[ $TERM == "screen"* ]]; then
print -nR $'\033k'$1$'\033\\'
print -nR $'\033]0;'$2$'\a'
fi
}
function precmd {
title "zsh" "$PWD"
}
function preexec {
emulate -L zsh
local -a cmd; cmd=(${(z)1})
title "$cmd[1]:t" "$cmd[2,-1]"
}
</code></pre>
http://stackoverflow.com/questions/171563/whats-in-your-zshrc/187853#1878533Answer by jkramer for What's in your .zshrc?jkramer2008-10-09T15:36:38Z2008-10-09T15:36:38Z<p>Here's another ZSH snippet I'm very proud of because of the great readability. ;)</p>
<pre><code># URL encode something and print it.
function url-encode; {
setopt extendedglob
echo "${${(j: :)@}//(#b)(?)/%$[[##16]##${match[1]}]}"
}
# Search google for the given keywords.
function google; {
$VIEW "http://www.google.com/search?q=`url-encode "${(j: :)@}"`"
}
</code></pre>
<p>Set <code>VIEW</code> to your browser, e.g. <code>export VIEW=/usr/bin/elinks</code> or whatever you want to use for a quick google search.</p>
http://stackoverflow.com/questions/129945/what-does-0-but-true-mean-in-perl16What does "0 but true" mean in Perl?jkramer2008-09-24T21:00:46Z2008-10-09T13:51:37Z
<p>Can someone explain what exactly the string "0 but true" means in Perl? As far as I understand, it equals zero in an integer comparison, but evaluates to true when used as a boolean. Is this correct? Is this a normal behavior of the language or is this a special string treated as a special case in the interpreter?</p>
http://stackoverflow.com/questions/185043/gvim-and-gdb-for-c/185302#1853023Answer by jkramer for gvim and gdb for C? jkramer2008-10-08T23:11:37Z2008-10-08T23:11:37Z<p>Have a look at the <a href="http://www.vim.org/scripts/script_search_results.php?keywords=gdb" rel="nofollow">Vim script search</a>. I see at least 5 plugins that do what you want.</p>
http://stackoverflow.com/questions/184590/is-there-a-perl-compatible-regular-expression-to-trim-whitespace-from-both-sides/185272#1852721Answer by jkramer for Is there a Perl-compatible regular expression to trim whitespace from both sides of a string?jkramer2008-10-08T23:02:20Z2008-10-08T23:02:20Z<p>I usually do it like this:</p>
<pre><code>($foo) = $foo =~ /^\s*(.*?)\s*$/;
</code></pre>
<p>Everything between the leading spaces and the trailing spaces is grouped and returned, so I can assign it to the same old variable.</p>
http://stackoverflow.com/questions/182592/mysql-driver-segfaulting-under-modperl-where-to-look-for-issue/185176#1851761Answer by jkramer for MySQL driver segfaulting under mod_perl - where to look for issuejkramer2008-10-08T22:31:10Z2008-10-08T22:31:10Z<p>I've seen this problem, but I'm not sure it had the same cause as yours. Are you by chance using a certain module for sending mails (forgot the name, sorry) from your application? When we had the problem in a project, after days of debugging we found that this mail module was doing strange things with open file descriptors, then forked off another process which called the console tool sendmail, which again did strange things with file descriptors. I guess one of the file descriptors it messed around with was the connection to the database, but I'm still not sure about that. The problem disappeared when we switched to another module for sending mails. Maybe it's worth a look for you too.</p>
http://stackoverflow.com/questions/171563/whats-in-your-zshrc/172500#1725005Answer by jkramer for What's in your .zshrc?jkramer2008-10-05T19:30:16Z2008-10-05T19:30:16Z<p>Here is something that I added recently and that I couldn't live without anymore:</p>
<pre><code>function chpwd; {
DIRECTORY="$PWD"
while true; do
if [ -f './.env.rc' ]; then
source './.env.rc'
break
fi
if [ -f './env' ]; then
source './env'
break
fi
[ $PWD = '/' ] && break
cd -q ..
done
cd -q "$DIRECTORY"
}
</code></pre>
<p>This is a hook function that is called whenever you <code>cd</code> somewhere. It then looks if there is a file <code>env</code> or <code>.env.rc</code> is in the new directory or one of the directories above in the tree and sources it, if found. I have a <code>env</code> file in every project directory, in which I set up development environment stuff, like updating the PERL5LIB variable with new paths, refreshing tags files etc. It really saves a lot of time if you're often switching between projects or branches.</p>
http://stackoverflow.com/questions/164319/is-there-any-difference-between-group-by-and-distinct/164331#1643317Answer by jkramer for Is there any difference between Group By and Distinctjkramer2008-10-02T20:11:07Z2008-10-02T20:11:07Z<p>Use DISTINCT if you just want to remove duplicates. Use GROUPY BY if you want to apply aggregate operators (MAX, SUM, GROUP_CONCAT, ..., or a HAVING clause).</p>
http://stackoverflow.com/questions/156916/case-insensitive-glob-on-zsh-bash/157425#1574256Answer by jkramer for Case-insensitive Glob on zsh/bashjkramer2008-10-01T12:50:20Z2008-10-02T07:02:24Z<p>ZSH:</p>
<pre><code>$ unsetopt CASE_GLOB
</code></pre>
<p>Or, if you don't want to enable case-insensitive globbing in general, you can activate it for only the varying part:</p>
<pre><code>$ print -l (#i)(somelongstring)*
</code></pre>
<p>This will match any file that starts with "somelongstring" (in any combination of lower/upper case). The case-insensitive flag applies for everything between the parentheses and can be used multiple times. Read the manual <code>zshexpn(1)</code> for more information.</p>
<p><strong>UPDATE</strong>
Almost forgot, you have to enable extendend globbing for this to work:</p>
<pre><code>setopt extendedglob
</code></pre>
http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project/158230#1582301Answer by jkramer for Do you have a hobby development project?jkramer2008-10-01T15:29:57Z2008-10-01T15:29:57Z<p>My main hobby project is <a href="http://nex.scrapping.cc/code/shell-fm" rel="nofollow">shell-fm</a>, a console based last.fm player for Linux. I open sourcedabout two years ago and since then received many good contributions from ambitious users. According to the shell-fm user group on last.fm, there are about 140 "official" users.</p>
http://stackoverflow.com/questions/150764/are-regexes-really-maintainable/150812#1508127Answer by jkramer for Are regexes really maintainable?jkramer2008-09-29T21:35:19Z2008-09-29T21:35:19Z<p>I don't know which language you're using, but Perl - for example - supports the <code>x</code> flag, so spaces are ignored in regexes unless escaped, so you can break it into several lines and comment everything inline:</p>
<pre><code>$foo =~ m{
(some-thing) # matches something
\s* # matches any amount of spaces
(match another thing) # matches something else
}x;
</code></pre>
<p>This helps making long regexes more readable.</p>
http://stackoverflow.com/questions/150622/how-to-select-from-varchar-where-where-value-is-not-part-of-a-group/150627#1506273Answer by jkramer for How to select from Varchar where where `Value` is not part of a groupjkramer2008-09-29T20:58:02Z2008-09-29T20:58:02Z<p>It's <code>IN('foo', 'bar')</code>, with a comma, not a pipe.</p>
http://stackoverflow.com/questions/150043/python-v-perl/150235#15023551Answer by jkramer for Python v. Perljkramer2008-09-29T19:21:41Z2008-09-29T19:28:41Z<p>There are so many people praising Python here that I think I have to put a bit of counterweight here. :)</p>
<p>Maybe I'm a bit biased because I've been coding in Perl for so long, but I think this also allows me to give a better insight into the language. Many people are frightened of Perl because they saw a cryptic one-liner and think to know that Python is "cleaner". Here's what I think.</p>
<p>As some people already mentioned, Python is a very verbose language. It forces you to indent correctly. This doesn't mean that you can't indent Perl code nicely too, it just means that Perl still works if you don't.
Pythons verbosity also makes single pieces of code more understandable. However, if you look at bigger Python applications, you'll find that being force to write simple things with much code distracts from the real important things.
If you know Perl well, you'll thank God for the possibility to put simple things away in two lines or three or even a one-liner and put the spotlight on the important things, like business logic, which you're free to write as verbose as you feel like. If you know a natural language, one line of text is more understandable than 20 lines, saying the same thing, isn't it?</p>
<p>Perl is surely harder to learn than Python. And it takes longer to learn. After years of using it every day I still find cool features sometimes that I didn't know before, and that I absolutely love. It's a bit like Vim. ;)</p>
<p>Some people also claim that the Python community is more active and develop more cool new things. That's surely true. Perl people don't develop cool new things, because they've been developed years ago and are available from CPAN, ready to use.</p>
<p>To make things short: Python forces you to do things. Perl allows you to do things your way. You will do lots of errors in the beginning, because Perl doesn't say "do it this way, or it won't work!". While Python will make it easy for you in the beginning, Perl will allow you to be effective in the end.
Plus (and this is why I love Perl so much), when you become better, you'll learn to love the freedom to express yourself with your code. Code is just art, after all.</p>
http://stackoverflow.com/questions/148568/storing-database-data-in-files/148586#1485860Answer by jkramer for Storing database data in files?jkramer2008-09-29T13:11:38Z2008-09-29T13:11:38Z<p>You could use a serialization format like YAML, and store an array of hashes, where each hash is a table record and the keys in each hash are column names. You could then just load the serialized file into memory, work with arrays and hashes, and then store everything back.</p>
<p>I hope that's what you meant.</p>
http://stackoverflow.com/questions/146291/manpage-scandir-prototype-weirdness/146310#1463101Answer by jkramer for Manpage scandir() prototype weirdnessjkramer2008-09-28T17:32:08Z2008-09-28T18:11:20Z<p>You're giving it a pointer to an inline function? That doesn't make sense, actually I wonder that it even compiles with only a warning.</p>
<p><strong>EDIT</strong>: Chris above is right, the inline keyword is just ignored silently when it doesn't make sense / is not applicable.</p>
http://stackoverflow.com/questions/129945/what-does-0-but-true-mean-in-perl/145680#1456800Answer by jkramer for What does "0 but true" mean in Perl?jkramer2008-09-28T11:24:13Z2008-09-28T11:24:13Z<p>I just found proof that the string "0 but true" is actially built into the interpreter, like some people here already answered:</p>
<pre><code>$ strings /usr/lib/perl5/5.10.0/linux/CORE/libperl.so | grep -i true
Perl_sv_true
%-p did not return a true value
0 but true
0 but true
</code></pre>
http://stackoverflow.com/questions/131058/do-you-use-vim-for-your-notes/135920#1359201Answer by jkramer for Do you use Vim for your notes?jkramer2008-09-25T20:43:02Z2008-09-25T21:04:24Z<p>I just started using the Vim plugin <a href="http://www.vim.org/scripts/script.php?script_id=2176" rel="nofollow">cwiki</a>. It's a very young project, but looks promising. <a href="http://a-hw.narod.ru/cwiki.png" rel="nofollow">Here</a> is a screenshot.</p>
<p><a href="http://www.vim.org/scripts/script.php?script_id=828" rel="nofollow">VimNotes</a> sounds interesting too, haven't tested it yet though.</p>
http://stackoverflow.com/questions/135543/how-can-i-repair-upgraded-subversion-working-directories1How can I repair "upgraded" subversion working directories?jkramer2008-09-25T19:44:20Z2008-09-25T20:04:03Z
<p>It may sound stupid, but sometimes I run into version conflicts between two versions of subversion. I mount a directory on a development server with sshfs and then edit the code with my local Vim. For subversion stuff like updating, committing etc. I ssh on the server and do it there. However, sometimes I mix up my shells and accidently do an update or commit in my local shell in the mounted directory. Subversion exits with an error, which is fine. However, when I try to do the same thing on the development server in my ssh session, subversion says that the working directory/subversion has a wrong version. The subversion version on the server is older than the version on my notebook, so I guess my (newer) version somehow upgrades the working directories so they are incompatible with the old version on the development server. Sometimes deleting the .svn/lock files helps, but only if I do it right after I executed the subversion command on my notebook. When I execute the command on the development server afterwards, the lock files disappear and I don't see a way to rescue the checkout. This wouldn't be so bad if the repository wasn't that big. Especially when I made lots of changes and can't commit them.</p>
<p>The only solution I see at the moment is to copy the files I changed somewhere, remove the checkout, do a complete new checkout and copy the files back.</p>
<p>Is there a better solution to rescue a broken checkout and/or my changes?</p>
<p><strong>UPDATE</strong>
The FAQ Mikael Sundberg linked contained the answer. I write it down here, because he doesn't explictictly mention it. There's a script that can downgrade upgraded repositories, when it's safe:</p>
<p><a href="http://svn.collab.net/repos/svn/trunk/tools/client-side/change-svn-wc-format.py" rel="nofollow">http://svn.collab.net/repos/svn/trunk/tools/client-side/change-svn-wc-format.py</a></p>
http://stackoverflow.com/questions/125828/best-way-to-capture-stdout-from-a-system-command-so-it-can-be-passed-to-another/125859#1258596Answer by jkramer for Best way to capture stdout from a system() command so it can be passed to another functionjkramer2008-09-24T07:37:59Z2008-09-24T07:37:59Z<p>From the popen manual:</p>
<pre><code>#include <stdio.h>
FILE *popen(const char *command, const char *type);
int pclose(FILE *stream);
</code></pre>
http://stackoverflow.com/questions/122616/painless-way-to-trim-leading-trailing-whitespace-in-c/123724#1237241Answer by jkramer for Painless way to trim leading/trailing whitespace in C?jkramer2008-09-23T20:42:16Z2008-09-23T20:47:23Z<p>My solution. String must be changeable. The advantage above some of the other solutions that it moves the non-space part to the beginning so you can keep using the old pointer, in case you have to free() it later.</p>
<pre><code>void trim(char * s) {
char * p = s;
int l = strlen(p);
while(isspace(p[l - 1])) p[--l] = 0;
while(* p && isspace(* p)) ++p, --l;
memmove(s, p, l + 1);
}
</code></pre>
<p>This version creates a copy of the string with strndup() instead of editing it in place. strndup() requires _GNU_SOURCE, so maybe you need to make your own strndup() with malloc() and strncpy().</p>
<pre><code>char * trim(char * s) {
int l = strlen(s);
while(isspace(s[l - 1])) --l;
while(* s && isspace(* s)) ++s, --l;
return strndup(s, l);
}
</code></pre>
http://stackoverflow.com/questions/122267/imap-how-to-move-a-message-from-one-folder-to-another/122289#1222891Answer by jkramer for IMAP: how to move a message from one folder to anotherjkramer2008-09-23T16:58:03Z2008-09-23T17:03:29Z<p>I guess you COPY the message to the new folder and then delete (EXPUNGE) it in the old one.</p>
<p><a href="http://www.networksorcery.com/enp/rfc/rfc3501.txt" rel="nofollow">RFC351</a></p>
<p><strong>HINT</strong> There's no DELETE command that does what you mean, you have to flag the message as deleted and then EXPUNGE the mailbox. Have a look at the RFC. Be careful with DELETE, as it deletes whole mailboxes, not single mails.</p>
http://stackoverflow.com/questions/1290889/blackberry-api-compatibility-testing/1291044#1291044Comment by jkramer on BlackBerry API Compatibility Testingjkramer2009-08-18T18:18:21Z2009-08-18T18:18:21ZDoes that mean the that all later versions after the first working one are compatible too?http://stackoverflow.com/questions/1216789/build-specific-blackberry-project-in-eclipse-workspace/1216806#1216806Comment by jkramer on Build specific BlackBerry project in Eclipse workspace.jkramer2009-08-01T15:37:52Z2009-08-01T15:37:52ZThanks, but the problem is that it only pushes the first project to the simulator and ignores the second.http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/164978#164978Comment by jkramer on What is your latest useful Perl one-liner (or a pipe involving Perl)?jkramer2008-10-10T11:08:57Z2008-10-10T11:08:57ZIn ZSH the variable <code>path</code> is bound the variable <code>PATH</code>, so <code>PATH</code> is always the elements of <code>path</code>, join with a colon, and <code>path</code> is always an array containing the chunks of <code>PATH</code> split by a column. To make them unique, just apply the -U modifier to one of the variables:
typeset -U PATHhttp://stackoverflow.com/questions/150043/python-v-perl/150235#150235Comment by jkramer on Python v. Perljkramer2008-09-29T19:53:45Z2008-09-29T19:53:45ZPeople keep calling Perl a "write-only" language, but in my oppinion that's just plain wrong. If you don't understand a feature, don't use it. I've never had problems reading code I once wrote. It's a completely difference thing with other peoples code though. ;)http://stackoverflow.com/questions/143234/lua-operator-as-print/143257#143257Comment by jkramer on Lua = operator as printjkramer2008-09-27T09:09:27Z2008-09-27T09:09:27ZShouldn't it print 8 on "a = 8" then, too? I know many scriping consoles do that (python, irb, perl -d -e 0 etc.), but I just tried it LUA doesn't print the value of all statements, just "= ...".http://stackoverflow.com/questions/135543/how-can-i-repair-upgraded-subversion-working-directories/135654#135654Comment by jkramer on How can I repair "upgraded" subversion working directories?jkramer2008-09-25T20:09:02Z2008-09-25T20:09:02ZThanks, but sadly after the repository is upgraded, Subversion doesn't do <i>any</i> commands anymore, not even <code>log</code> or <code>status</code>, so your solution won't work.http://stackoverflow.com/questions/125828/best-way-to-capture-stdout-from-a-system-command-so-it-can-be-passed-to-another/125856#125856Comment by jkramer on Best way to capture stdout from a system() command so it can be passed to another functionjkramer2008-09-24T07:39:02Z2008-09-24T07:39:02Zpopen() returns a FILE pointer, not a integer file descriptor.http://stackoverflow.com/questions/122616/painless-way-to-trim-leading-trailing-whitespace-in-c/122721#122721Comment by jkramer on Painless way to trim leading/trailing whitespace in C?jkramer2008-09-23T20:30:10Z2008-09-23T20:30:10ZYou should mention that you have to keep a copy of the original pointer in the first example when the string is malloc'ed, or you will never be able to free it again.http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/112339#112339Comment by jkramer on What is your latest useful Perl one-liner (or a pipe involving Perl)?jkramer2008-09-23T17:17:58Z2008-09-23T17:17:58ZWell, the whole idea of this thing is somewhat instable, since it assumes that for every .avi there's a .srt and that both, when sorted alphabetically, have each avi/srt pair at the same position in the lists. However, you can replace the && with ; and put braces around it. ;)http://stackoverflow.com/questions/117844/converting-string-of-1s-and-0s-into-binary-value/117870#117870Comment by jkramer on Converting string of 1s and 0s into binary valuejkramer2008-09-22T22:22:56Z2008-09-22T22:22:56ZAh, now I see your point. The string length shouldn't be a problem as long as the resulting number fits into the long or long long integer.http://stackoverflow.com/questions/117844/converting-string-of-1s-and-0s-into-binary-value/117870#117870Comment by jkramer on Converting string of 1s and 0s into binary valuejkramer2008-09-22T22:21:39Z2008-09-22T22:21:39ZBesides strtol there's also stroll (two L) for "long long" integers.http://stackoverflow.com/questions/117812/alternate-fizzbuzz-questions/117850#117850Comment by jkramer on Alternate FizzBuzz Questionsjkramer2008-09-22T22:02:21Z2008-09-22T22:02:21ZI'd say that depends on the language. In C it could be interesting, in Perl it's done with <code>scalar(reverse 'foo') == 'foo'</code>.http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/112339#112339Comment by jkramer on What is your latest useful Perl one-liner (or a pipe involving Perl)?jkramer2008-09-22T12:13:50Z2008-09-22T12:13:50ZSorry, my fault, I should really read more carefully. I'll fix that in the answer.http://stackoverflow.com/questions/109880/is-there-a-perl-solution-for-lazy-lists-this-side-of-perl-6/109899#109899Comment by jkramer on Is there a Perl solution for lazy lists this side of Perl 6?jkramer2008-09-21T11:27:37Z2008-09-21T11:27:37Zcjm: That was just meant as a placeholder for <i>calculate-your-next-element-here</i>, not really a function call. Otherwise you're right of course.http://stackoverflow.com/questions/26195/vimdiff-and-cvs-integration/26708#26708Comment by jkramer on vimdiff and CVS integrationjkramer2008-09-20T11:25:04Z2008-09-20T11:25:04ZHehe, that was fast. Thanks!