User depesz - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T10:12:52Zhttp://stackoverflow.com/feeds/user/80168http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1793398/postgresql-having-clause-limitation/1793537#17935370Answer by depesz for Postgresql HAVING clause limitationdepesz2009-11-24T22:59:46Z2009-11-24T22:59:46Z<p>Bacause it's not implemented? And if you're asking why it wasn't implemented, I see 2 possible explanations:</p>
<ul>
<li>standard doesn't require it</li>
<li>nobody had time to spent on it</li>
</ul>
<p>if you'd like to have it - mail to -hackers, talk about, and then implement.</p>
<p>Frankly I don't see it as a big problem - it's not like you have 1000 characters to retype.</p>
http://stackoverflow.com/questions/1793105/how-do-i-access-the-arrays-element-stored-in-my-hash-in-perl/1793278#17932780Answer by depesz for How do I access the array's element stored in my hash in Perl?depesz2009-11-24T22:09:24Z2009-11-24T22:09:24Z<p>Others already explained nicely what's what, but I would like to add, that (especially if you're new to Perl), it would be great if you spend some time and read the <a href="http://perldoc.perl.org/perldsc.html" rel="nofollow">perldsc</a> and <a href="http://perldoc.perl.org/perllol.html" rel="nofollow">perllol</a> docs.</p>
http://stackoverflow.com/questions/1780893/postgres-partial-column-in-select-group-by-column-must-appear-in-the-group-by/1781872#17818721Answer by depesz for postgres - partial column in SELECT/GROUP BY - column must appear in the GROUP BY clause or be used in an aggregate functiondepesz2009-11-23T08:53:39Z2009-11-23T08:53:39Z<p>You did something else that you didn't describe in the question, as both of your queries work just fine. Tested on 8.5 and 8.3.8:</p>
<pre><code># create table cdrs (start_time text);
CREATE TABLE
# insert into cdrs (start_time) values ('20090101121212'),('20090101131313'),('20090510040603');
INSERT 0 3
# SELECT substring(start_time,1,8) AS date, count(*) as total from cdrs group by date;
date | total
----------+-------
20090510 | 1
20090101 | 2
(2 rows)
# SELECT substring(start_time,1,8) AS date, count(*) as total from cdrs group by substring(start_time,1,8);
date | total
----------+-------
20090510 | 1
20090101 | 2
(2 rows)
</code></pre>
http://stackoverflow.com/questions/1774942/how-can-i-connect-to-a-remote-machine-via-tcp-and-udp-with-perl/1775705#17757052Answer by depesz for How can I connect to a remote machine via TCP and UDP with Perl?depesz2009-11-21T15:01:04Z2009-11-21T15:01:04Z<p>Start with reading of <a href="http://perldoc.perl.org/perlipc.html" rel="nofollow">perlipc</a> documentation - it contains examples of simple servers and clients, with a lot of very important addons (like: how to properly daemonize).</p>
http://stackoverflow.com/questions/1772924/postgresql-and-point-in-time-recovery/1773083#17730832Answer by depesz for PostgreSQL and Point in Time Recoverydepesz2009-11-20T20:33:51Z2009-11-20T20:33:51Z<p>You might want to consult <a href="http://www.postgresql.org/docs/8.4/static/backup.html" rel="nofollow">documentation</a>.</p>
<p>I think that you will want to read mostly part "24.4. Warm Standby Servers for High Availability" - but what is written there is based on information from "24.3. Continuous Archiving and Point-In-Time Recovery (PITR)" so you might want to read it first.</p>
<p>To summarize:</p>
<ul>
<li>pitr lets you do continuous backup with very low performance impact.</li>
<li>this backup is incremental</li>
<li>it can be restored to any given point in time (hence the name)</li>
<li>using pitr you can also setup warm standby server </li>
</ul>
http://stackoverflow.com/questions/1771543/postgresql-updating-an-enum-type/1771673#17716731Answer by depesz for PostgreSQL - Updating an Enum Typedepesz2009-11-20T16:33:05Z2009-11-20T16:33:05Z<p>Simplest: get rid of enums. They are not easily modifiable, and thus should <strong>very</strong> rarely be used.</p>
http://stackoverflow.com/questions/1771350/postgresql-and-jms-or-other-pub-sub-callback-mechanism/1771571#17715711Answer by depesz for PostgreSQL and JMS (Or other Pub-Sub/Callback Mechanism)depesz2009-11-20T16:17:08Z2009-11-20T16:17:08Z<p>the simplest approach is to use <a href="http://www.postgresql.org/docs/current/interactive/sql-listen.html" rel="nofollow">LISTEN</a>/<a href="http://www.postgresql.org/docs/current/interactive/sql-notify.html" rel="nofollow">NOTIFY</a> interface, write your own program that connects to database, issues some LISTENs, and does whatever you want when it gets notification - for example sens information over JMS, or simply does what should be done, without adding additional transportation layer.</p>
http://stackoverflow.com/questions/1769595/concurrency-issues-when-retriveing-ids-of-newly-inserted-rows-with-ibatis/1770392#17703921Answer by depesz for Concurrency issues when retriveing Ids of newly inserted rows with ibatisdepesz2009-11-20T13:22:03Z2009-11-20T13:22:03Z<p>This is definitely wrong. Use:</p>
<pre><code>select currval('sometable_id_seq')
</code></pre>
<p>or better yet:</p>
<pre><code>INSERT INTO sometable ( somefield ) VALUES ( #value# ) returning id
</code></pre>
<p>which will return you inserted id.</p>
http://stackoverflow.com/questions/1768749/effective-interpreted-programming-language-for-file-image-manipulation/1768851#17688519Answer by depesz for Effective Interpreted Programming Language for File/Image manipulation depesz2009-11-20T07:12:45Z2009-11-20T07:12:45Z<p>Any language + <a href="http://www.imagemagick.org/script/index.php" rel="nofollow">ImageMagick</a> set of programs. Using them via libraries (like PerlMagick) proved to be less than optimal, but doing it via system() calls worked incredibly well. You can find a <a href="http://www.fmwconcepts.com/imagemagick/" rel="nofollow">set of scripts</a> that:</p>
<ul>
<li>perform several useful tasks</li>
<li>show less known features of ImageMagick</li>
</ul>
http://stackoverflow.com/questions/1743439/how-to-write-a-constraint-concerning-a-max-number-of-rows-in-postgresql/1743859#17438591Answer by depesz for How to write a constraint concerning a max number of rows in postgresql?depesz2009-11-16T18:06:52Z2009-11-16T18:06:52Z<p>One another approach would be to add column "photo_count" to users table, update it with triggers to make it reflect reality, and add check on it to enforce maximum number of photos.</p>
<p>Side benefit from this is that at any given moment we know (without counting) how many photos user has.</p>
<p>On other hand - the approach Quassnoi suggested is also pretty cool, as it gives you ability to reorder the photos in case user would want it.</p>
http://stackoverflow.com/questions/1735136/what-is-the-equivalent-of-timestamp-rowversion-sql-server-with-postgresql/1738627#17386271Answer by depesz for What is the equivalent of timestamp/rowversion (SQL Server) with PostgreSQLdepesz2009-11-15T19:59:48Z2009-11-16T10:29:59Z<p>If I understand correctly rowversion is the same as <a href="http://www.postgresql.org/docs/8.4/interactive/datatype-numeric.html#DATATYPE-SERIAL" rel="nofollow">serial</a>? If not - you'd have to make your own with triggers.</p>
http://stackoverflow.com/questions/1738615/how-do-i-create-valid-ip-ranges-given-an-ip-address-and-subnet-mask-in-perl/1741051#17410510Answer by depesz for How do I create valid IP ranges given an IP address and Subnet mask in Perl?depesz2009-11-16T09:30:10Z2009-11-16T09:30:10Z<p>If you want to play with bitwise operators yourself, it becomes this:</p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
use Socket;
my $ip_address = '192.168.0.15';
my $netmask = 28;
my $ip_address_binary = inet_aton( $ip_address );
my $netmask_binary = ~pack("N", (2**(32-$netmask))-1);
my $network_address = inet_ntoa( $ip_address_binary & $netmask_binary );
my $first_valid = inet_ntoa( pack( 'N', unpack('N', $ip_address_binary & $netmask_binary ) + 1 ));
my $last_valid = inet_ntoa( pack( 'N', unpack('N', $ip_address_binary | ~$netmask_binary ) - 1 ));
my $broadcast_address = inet_ntoa( $ip_address_binary | ~$netmask_binary );
print $network_address, "\n";
print $first_valid, "\n";
print $last_valid, "\n";
print $broadcast_address, "\n";
exit;
</code></pre>
<p>With Net::Netmask it's easier to understand:</p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
use Net::Netmask;
my $ip_address = '192.168.0.15';
my $netmask = 28;
my $block = Net::Netmask->new( "$ip_address/$netmask" );
my $network_address = $block->base();
my $first_valid = $block->nth(1);
my $last_valid = $block->nth( $block->size - 2 );
my $broadcast_address = $block->broadcast();
print $network_address, "\n";
print $first_valid, "\n";
print $last_valid, "\n";
print $broadcast_address, "\n";
exit;
</code></pre>
http://stackoverflow.com/questions/1721365/force-postgres-dump-to-use-copy-rather-than-inserts/1721722#17217222Answer by depesz for Force postgres dump to use copy rather than INSERTSdepesz2009-11-12T12:01:43Z2009-11-12T12:01:43Z<p>you <strong>are</strong> specifying -d !!!!!:</p>
<pre><code>pg_dump -Fp -t some_table -h localhost -d thisDB -f /some_dir/bkup
^^^^
</code></pre>
<p>Luckily -d <a href="http://www.depesz.com/index.php/2009/03/22/waiting-for-84-no-more-d-in-pg%5Fdump/" rel="nofollow">is no more</a>.</p>
http://stackoverflow.com/questions/1715137/the-best-way-to-ensure-only-1-copy-of-bash-script-is-running4The best way to ensure only 1 copy of bash script is running?depesz2009-11-11T13:21:24Z2009-11-12T11:58:40Z
<p>What is the simplest/best way to ensure only 1 copy of given script is running - assuming it's bash on linux?</p>
<p>At the moment I'm doing:</p>
<pre><code>ps -C script.name.sh > /dev/null 2>&1 || ./script.name.sh
</code></pre>
<p>but it has several issues:</p>
<ol>
<li>it puts the check outside of script</li>
<li>it doesn't let me run the same script from separate accounts - which I would like sometimes.</li>
<li>-C checks only first 14 characters of process name</li>
</ol>
<p>Of course I can write my own pidfile handling, but I sense that there should be some simple way to do it.</p>
http://stackoverflow.com/questions/1715137/the-best-way-to-ensure-only-1-copy-of-bash-script-is-running/1721712#17217120Answer by depesz for The best way to ensure only 1 copy of bash script is running?depesz2009-11-12T11:58:40Z2009-11-12T11:58:40Z<p>I found a pretty simple way to handle "one copy of script per system".
It doesn't allow me to run multiple copies of the script from many accounts though (on standard Linux that is).</p>
<p>Solution:</p>
<p>At the beginning of script, I gave:</p>
<pre><code>pidof -s -o '%PPID' -x $( basename $0 ) > /dev/null 2>&1 && exit
</code></pre>
<p>Apparently <a href="http://linux.die.net/man/8/pidof" rel="nofollow">pidof</a> works great in a way that:</p>
<ul>
<li>it doesn't have limit on program name like <code>ps -C ...</code></li>
<li>it doesn't require me to do <code>grep -v grep</code> ( or anything similar )</li>
</ul>
<p>And it doesn't rely on lockfiles, which for me is a big win, because relaying on them means you have to add handling of stale lockfiles - which is not really complicated, but if it can be avoided - why not?</p>
<p>As for checking with "one copy of script per running user", i wrote this, but I'm not overly happy with it:</p>
<pre><code>(
pidof -s -o '%PPID' -x $( basename $0 ) | tr ' ' '\n'
ps xo pid= | tr -cd '[0-9\n]'
) | sort | uniq -d
</code></pre>
<p>and then I check its output - if it's empty - there are no copies of the script from same user.</p>
http://stackoverflow.com/questions/1701479/why-does-my-perl-script-to-decompress-files-slower-when-i-use-threads/1702028#17020283Answer by depesz for Why does my Perl script to decompress files slower when I use threads?depesz2009-11-09T16:12:38Z2009-11-09T16:12:38Z<p>ithreads work well if you're dealing with something which is mostly <em>not</em> cpu bound. decompression is cpu bound.</p>
<p>You can easily alleviate the problem with using <a href="http://search.cpan.org/perldoc/Parallel%3A%3AForkManager" rel="nofollow">Parallel::ForkManager</a> module.</p>
<p>Generally - threads in Perl and not really good.</p>
http://stackoverflow.com/questions/1665722/is-1-or-faster-for-replacing-a-matched-string-using-s-in-perl/1665929#1665929-1Answer by depesz for Is $1 or $& faster for replacing a matched string using s/// in Perl?depesz2009-11-03T08:19:41Z2009-11-03T08:19:41Z<pre><code>use Benchmark;
</code></pre>
<p>and test.</p>
<p>Generally - really, really, it doesn't matter. Unless you're doing billions of these operations.</p>
http://stackoverflow.com/questions/1598198/making-postgres-accessible-in-firefox-by-psql/1599089#15990892Answer by depesz for Making Postgres accessible in Firefox by Psqldepesz2009-10-21T06:42:06Z2009-10-21T06:42:06Z<p>Firefox is irrelevant. It's webserver that makes the connection. If you can connect from local shell (via psql), but can't from webserver then:</p>
<ol>
<li>show us the error you're getting</li>
<li>show us pg_hba.conf</li>
</ol>
<p>Then maybe we can help.</p>
<p>Besides - for diagnosing problems you'd me <strong>much</strong> better off with asking on irc - server irc.freenode.net, channel #postgresql.</p>
http://stackoverflow.com/questions/1595574/postgresql-select-the-last-order-per-customer-per-date-range/1595782#15957824Answer by depesz for PostgreSQL SELECT the last order per customer per date rangedepesz2009-10-20T16:16:05Z2009-10-20T16:16:05Z<pre><code>select customernum, max(ordernum)
from table
where orderdate between '...' and '...'
group by customernum
</code></pre>
<p>that's all.</p>
http://stackoverflow.com/questions/1588795/how-can-i-speed-up-perls-processing-of-fixed-width-data/1592998#15929981Answer by depesz for How can I speed up Perl's processing of fixed-width data?depesz2009-10-20T07:33:13Z2009-10-20T07:33:13Z<p>Simply make it go in parallel. It's trivial, and on any even remotely modern machine it will be faster.</p>
http://stackoverflow.com/questions/1590504/what-would-be-your-choice-of-perl-xml-parsers-for-files-greater-than-15-gb/1590833#15908333Answer by depesz for What would be your choice of Perl XML Parsers for files greater than 15 GB?depesz2009-10-19T20:11:17Z2009-10-19T20:11:17Z<p>For parsing such files I always used <a href="http://search.cpan.org/perldoc/XML%3A%3AParser" rel="nofollow">XML::Parser</a>. Simple, accessible anywhere and working well.</p>
http://stackoverflow.com/questions/1588427/postgresql-compiled-from-source-wal-file-compatibility-with-ubuntu-package/1588507#15885071Answer by depesz for Postgresql compiled from source WAL file compatibility with ubuntu packagedepesz2009-10-19T12:47:20Z2009-10-19T12:47:20Z<p>It depends on compilation options.</p>
<p>Generally - is it the same architecture (same os, 32/64 bit?), and is "integer datetimes" set to the same value on both postgreses? if yes - it should work.</p>
http://stackoverflow.com/questions/1499773/ruby-on-rails-master-slave-postrgres-databases/1587473#15874731Answer by depesz for Ruby On Rails Master-Slave Postrgres Databasesdepesz2009-10-19T08:09:07Z2009-10-19T08:09:07Z<p>If you're using Ruby, it would be sin not to try out <a href="http://www.rubyrep.org/" rel="nofollow">rubyrep</a>.</p>
http://stackoverflow.com/questions/1585560/can-you-take-a-reference-of-a-builtin-function-in-perl/1587466#15874660Answer by depesz for Can you take a reference of a builtin function in Perl?depesz2009-10-19T08:05:35Z2009-10-19T08:05:35Z<p>As I understand you want to have coderef that will be called on some data, and it might point to some your function or to builtin.</p>
<p>If I'm right, just put the builtin in closure:</p>
<pre><code>#!/usr/bin/perl -w
use strict;
my $coderef = \&test;
$coderef->( "Test %u\n", 1 );
$coderef = sub { printf @_ };
$coderef->( "Test %u\n", 2 );
exit;
sub test {
print join(' ', map { "[$_]" } @_) . "\n";
}
</code></pre>
<p>Doing it with shift is also possible, but remember that shift without explicit array to work on, works on different arrays based on where it was called.</p>
http://stackoverflow.com/questions/1570734/when-backing-up-a-postgres-database-i-get-prompted-for-a-password/1570968#15709681Answer by depesz for When backing up a postgres database I get prompted for a passworddepesz2009-10-15T08:14:11Z2009-10-15T08:14:11Z<p>First of all: <strong>never</strong> use -d option to pg_dump. Do you even know what it does?</p>
<p>Second: use <a href="http://www.postgresql.org/docs/current/interactive/libpq-pgpass.html" rel="nofollow">pgpass</a> file or <a href="http://www.postgresql.org/docs/current/interactive/libpq-envars.html" rel="nofollow">PGPASSWORD</a> env variable.</p>
http://stackoverflow.com/questions/1568162/how-to-create-a-backup-of-an-postgres-db-using-bash/1568402#15684024Answer by depesz for How to create a backup of an POSTGRES DB using bash?depesz2009-10-14T19:17:14Z2009-10-14T19:17:14Z<pre><code>pg_dump -U some_user_name -f dump.file -Fc database_name
</code></pre>
<p>That's all.</p>
<p>If you need to authenticate with password - use <a href="http://www.postgresql.org/docs/current/interactive/libpq-pgpass.html" rel="nofollow">pgpass file</a>.</p>
http://stackoverflow.com/questions/1565339/how-can-i-read-a-directory-in-perl-with-one-statement/1567775#1567775-1Answer by depesz for How can I read a directory in Perl with one statement?depesz2009-10-14T17:25:28Z2009-10-14T17:25:28Z<p>Check <a href="http://search.cpan.org/perldoc/IO%3A%3AAll" rel="nofollow">IO::All</a>.</p>
http://stackoverflow.com/questions/1564056/importing-modules-into-postgres/1564645#15646452Answer by depesz for Importing modules into postgresdepesz2009-10-14T06:52:14Z2009-10-14T06:52:14Z<p>If you are talking about contrib modules (for example ltree or something like this), than: with each such module there is installation .sql file. For example - on my ubuntu, all these contrib .sql files are in /usr/share/postgresql/8.3/contrib/.</p>
<p>You load this sql files just like any other - with <code>psql -U postgres -d your_database -f name_of_file_to_load.sql</code></p>
http://stackoverflow.com/questions/1563830/i-have-a-vim-config-however-when-i-paste-text/1564636#15646362Answer by depesz for I have a vim config. However, when I paste text...depesz2009-10-14T06:49:32Z2009-10-14T06:49:32Z<p>You might want to:</p>
<pre><code>set pastetoggle=<F6>
</code></pre>
<p>With this you can change paste status with F6 (you can of course bind it to anything you want.</p>
http://stackoverflow.com/questions/1540590/how-to-speed-up-like-operation-in-sql-postgres-preferably/1543045#15430450Answer by depesz for How to speed up LIKE operation in SQL (Postgres preferably)depesz2009-10-09T10:39:24Z2009-10-09T11:29:46Z<p>Generally like '%something%' is not indexable.</p>
<p>But.</p>
<p>There are couple of issues:</p>
<ol>
<li>Are you absolutely sure that you need full substring match? Perhaps you could do with "any word (whitespace separated) starts with something"? - it's close to %something% and definitely indexable.</li>
<li>You might want to use full text searches, but they usually work on words, so it's even less applicable to your solution if you positively really need substring search.</li>
<li>You can try to use trigrams for your search (module pg_trgm in contrib)</li>
<li>You can also try <a href="http://www.sai.msu.su/~megera/wiki/wildspeed" rel="nofollow">wildspeed</a>, but be warned that it <a href="http://archives.postgresql.org/pgsql-patches/2008-05/msg00333.php" rel="nofollow">makes huge indexes</a>.</li>
</ol>
http://stackoverflow.com/questions/1771543/postgresql-updating-an-enum-type/1771673#1771673Comment by depesz on PostgreSQL - Updating an Enum Typedepesz2009-11-23T15:21:44Z2009-11-23T15:21:44Ztry that. besides - how many rows you have there. 10 * 1024 ^ 4?http://stackoverflow.com/questions/1771543/postgresql-updating-an-enum-type/1771673#1771673Comment by depesz on PostgreSQL - Updating an Enum Typedepesz2009-11-22T20:29:35Z2009-11-22T20:29:35ZAnd what exactly is the problem of storing values as strings?http://stackoverflow.com/questions/1771543/postgresql-updating-an-enum-type/1771673#1771673Comment by depesz on PostgreSQL - Updating an Enum Typedepesz2009-11-20T20:34:36Z2009-11-20T20:34:36Zperhaps a simple check constrain will do?http://stackoverflow.com/questions/1769595/concurrency-issues-when-retriveing-ids-of-newly-inserted-rows-with-ibatis/1770392#1770392Comment by depesz on Concurrency issues when retriveing Ids of newly inserted rows with ibatisdepesz2009-11-20T14:55:16Z2009-11-20T14:55:16ZOf course it will. try yourself with 2 connections from psql.
as for ibatis - i have no idea what it is, but it looks java-related - which means i can't help.http://stackoverflow.com/questions/1768749/effective-interpreted-programming-language-for-file-image-manipulation/1768767#1768767Comment by depesz on Effective Interpreted Programming Language for File/Image manipulation depesz2009-11-20T13:23:43Z2009-11-20T13:23:43ZI wouldn't suggest to use Perl Magick. I had a problem with it that the imagemagick part segfaulted on some bad images - and since perlmagick loads imagemagick as library - it effectively ended my program.http://stackoverflow.com/questions/1769595/concurrency-issues-when-retriveing-ids-of-newly-inserted-rows-with-ibatis/1769607#1769607Comment by depesz on Concurrency issues when retriveing Ids of newly inserted rows with ibatisdepesz2009-11-20T13:22:20Z2009-11-20T13:22:20Zit is not session specific.http://stackoverflow.com/questions/1735136/what-is-the-equivalent-of-timestamp-rowversion-sql-server-with-postgresqlComment by depesz on What is the equivalent of timestamp/rowversion (SQL Server) with PostgreSQLdepesz2009-11-15T13:08:52Z2009-11-15T13:08:52ZIt would help if you'd say what is "Timestamp/Rowversion" - I, for one, have absolutely no idea if these are datatypes (what range/precision then?) or some specific "functions" (like rownum in Oracle), or magical stuff that makes your eyebrows to grow.http://stackoverflow.com/questions/1715137/the-best-way-to-ensure-only-1-copy-of-bash-script-is-running/1715155#1715155Comment by depesz on The best way to ensure only 1 copy of bash script is running?depesz2009-11-11T15:21:44Z2009-11-11T15:21:44Z@ennuikiller: that assumption was not in your example. besides - it will find "call.sh" even in things like "call.sh". and it will also fail if i'll call it from ./call.sh itself (it will find the call.sh copy that is doing the check, not some previous) - so. in short - this is not solution. it can be changed to be solution by adding at least 2 more greps, or changing existing one, but it doesn't on its own solve the problem.http://stackoverflow.com/questions/1715137/the-best-way-to-ensure-only-1-copy-of-bash-script-is-running/1715151#1715151Comment by depesz on The best way to ensure only 1 copy of bash script is running?depesz2009-11-11T15:19:36Z2009-11-11T15:19:36ZI don't have lockfile program on my linux, but one thing bothers me - will it work if first script will die without removing lock? i.e. in such case i want next run of script to run, and not die "because previous copy is still working"http://stackoverflow.com/questions/1715137/the-best-way-to-ensure-only-1-copy-of-bash-script-is-running/1715155#1715155Comment by depesz on The best way to ensure only 1 copy of bash script is running?depesz2009-11-11T14:02:59Z2009-11-11T14:02:59Zennuikiller: no - grep $0 will find processes like $0 (for example the one that is running this ps right now), but it will <i>also</i> find a grep itself! so basically - it will virtually always succeed.http://stackoverflow.com/questions/1715137/the-best-way-to-ensure-only-1-copy-of-bash-script-is-running/1715155#1715155Comment by depesz on The best way to ensure only 1 copy of bash script is running?depesz2009-11-11T13:28:33Z2009-11-11T13:28:33ZThis has the relatively well known bug with grep finding itself. Of course I can work around it, but it's not something I would call simple and robust.http://stackoverflow.com/questions/1587178/paste-in-vim-without-moving-the-cursor/1587219#1587219Comment by depesz on Paste in Vim without moving the cursordepesz2009-10-19T08:12:15Z2009-10-19T08:12:15Zp pastes after cursor. it doesn't have to be in next line. it depends on how you selected block to copy (v vs. shift-v). -1http://stackoverflow.com/questions/1570734/when-backing-up-a-postgres-database-i-get-prompted-for-a-password/1570968#1570968Comment by depesz on When backing up a postgres database I get prompted for a passworddepesz2009-10-15T13:12:39Z2009-10-15T13:12:39Z@Roland: it's slow. and most people use it because they think it's "--database". And it is dropped in 8.4 (finally).http://stackoverflow.com/questions/1570734/when-backing-up-a-postgres-database-i-get-prompted-for-a-password/1570968#1570968Comment by depesz on When backing up a postgres database I get prompted for a passworddepesz2009-10-15T13:10:14Z2009-10-15T13:10:14Z@newt - not sure where you're migrating to, but migration is the case when you can use inserts. for backups there is no point.http://stackoverflow.com/questions/1568115/delete-first-word-of-each-line/1568359#1568359Comment by depesz on delete first word of each linedepesz2009-10-14T19:25:06Z2009-10-14T19:25:06Z-1 - not sure what's "true vi style", but there is no point in doing cryptic, unfriendly things, just to show off. there is perfectly readable solution, which is also more general.