Emacs wiki
Sunday, September 18th, 2005I just stumbled upon http://www.emacswiki.org/cgi-bin/wiki/SiteMap, which looks like a very nice place.
I found a newer version of longlines.el, for example.
I just stumbled upon http://www.emacswiki.org/cgi-bin/wiki/SiteMap, which looks like a very nice place.
I found a newer version of longlines.el, for example.
This command will convert an AAC audio file to an mp3 audio file:
ffmpeg -i input.m4a -acodec mp3 -ac 2 -ab 128 output.mp3
Batch conversion can be done with
for i in *.m4a; do
ffmpeg -i "$i" -acodec mp3 -ac 2 -ab 128 "${i%m4a}mp3";
done
Sometimes it really is simple
I can’t help finding this slightly elegant. Unfortunately I no longer remember where the idea came from.
#!/usr/bin/perl
use strict;
use warnings;
sub longest_common_prefix {
my $prefix = shift;
for (@_) {
chop $prefix while (! /^$prefix/);
}
return $prefix;
}
print longest_common_prefix(@ARGV), "
";