User - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T13:44:13Zhttp://stackoverflow.com/feeds/user/13860http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1758104/how-can-i-tell-if-there-is-data-in-an-input-filehandles-buffer-in-perl2How can I tell if there is data in an input filehandle's buffer in Perl?flimzy2009-11-18T18:33:57Z2009-11-19T20:48:32Z
<p>I'm working on a program that uses an epoll-based event loop to handle multiple simultaneous socket connections. When the app detects that there is data to be read, it calls a process_request() sub, which uses buffered IO. For example:</p>
<pre><code>sub process_request {
my ( $fh ) = @_;
if ( my $line = <$fh> ) {
# Do something interesting
}
}
</code></pre>
<p>The trouble is that by using buffered I/O here, epoll doesn't know that there's unread data waiting in the buffer, so it doesn't call process_request() again.</p>
<p>So the question is, how can I detect if there is unread data in filehandle in Perl, so that I can call process_request() again as long as data remains in the buffer?</p>
http://stackoverflow.com/questions/84912/what-is-the-easiest-or-fastest-way-to-make-css-render-the-same-in-all-browsers/86443#864430Answer by flimzy for What is the easiest or fastest way to make CSS render the same in all browsersflimzy2008-09-17T19:01:44Z2008-09-17T19:01:44Z<p><img src="page.jpg"></p>
http://stackoverflow.com/questions/1970/what-language-do-you-use-for-postgresql-triggers-and-stored-procedures/77666#776661Answer by flimzy for What language do you use for Postgresql triggers and stored procedures?flimzy2008-09-16T22:00:49Z2008-09-16T22:00:49Z<p>For anything really small/simple or that doesn't require a lot of string manipulation or logic, I use plpgsql, because it's fast. For more complex things, I use plperl, because I like it.</p>
http://stackoverflow.com/questions/75696/postgresql-8-3-privileges-not-updated-wrong-usage/77452#774522Answer by flimzy for PostgreSQL 8.3 privileges not updated - wrong usage?flimzy2008-09-16T21:41:57Z2008-09-16T21:41:57Z<p>\z Shows you table, view, and sequence permissions, for the objects contained within the Database. It does not show permissions on the database itself. If you create a table or some other object within 'testdb', it will then show up in \z's output.</p>
<p>You can see which Databases exist on your system with \l (or \l+ for a bit more info).</p>
<p>See <a href="http://www.postgresql.org/docs/8.3/interactive/functions-info.html" rel="nofollow">section 9.22. of the PostgreSQL 8.3 manual</a> for information about how to programatically determine which permissions exist for a user on a given database.</p>
http://stackoverflow.com/questions/76983/how-to-setup-a-low-cost-cluster/77118#771182Answer by flimzy for How to Setup a Low cost clusterflimzy2008-09-16T21:08:33Z2008-09-16T21:08:33Z<p>Your question is too vague. What cluster application do you want to use?</p>
<p>By far the easiest way to set up a "cluster" is to install Folding@Home on each of your machines. But I doubt that's really what you're asking for.</p>
<p>I have set up clusters for music/video transcoding using simple bash scripts and ssh shared keys before.</p>
<p>I manage mail server clusters at work.</p>
http://stackoverflow.com/questions/1758104/how-can-i-tell-if-there-is-data-in-an-input-filehandles-buffer-in-perl/1758332#1758332Comment by on How can I tell if there is data in an input filehandle's buffer in Perl?2009-11-18T19:40:54Z2009-11-18T19:40:54ZThat would change the API contract... but perhaps by doing that along with Tie::Handle I can accomplish what I need.http://stackoverflow.com/questions/1758104/how-can-i-tell-if-there-is-data-in-an-input-filehandles-buffer-in-perl/1758237#1758237Comment by on How can I tell if there is data in an input filehandle's buffer in Perl?2009-11-18T19:05:04Z2009-11-18T19:05:04ZThat would only work if we turned off blocking for $fh, and if every call to process_request() were able to handle all of the data before returning. It's not uncommon process_request() needs to act on a single line, then return, and act on other lines of input later.http://stackoverflow.com/questions/1758104/how-can-i-tell-if-there-is-data-in-an-input-filehandles-buffer-in-perl/1758235#1758235Comment by on How can I tell if there is data in an input filehandle's buffer in Perl?2009-11-18T19:00:37Z2009-11-18T19:00:37ZIs EOF ever set on a socket while it remains open?http://stackoverflow.com/questions/1758104/how-can-i-tell-if-there-is-data-in-an-input-filehandles-buffer-in-perl/1758118#1758118Comment by on How can I tell if there is data in an input filehandle's buffer in Perl?2009-11-18T18:57:02Z2009-11-18T18:57:02ZThat would work if I had the freedom to modify process_request() as necessary. Unfortunately, that would violate our API contract.http://stackoverflow.com/questions/1758104/how-can-i-tell-if-there-is-data-in-an-input-filehandles-buffer-in-perl/1758118#1758118Comment by on How can I tell if there is data in an input filehandle's buffer in Perl?2009-11-18T18:52:30Z2009-11-18T18:52:30ZNo, this discards every other line of input.http://stackoverflow.com/questions/1758104/how-can-i-tell-if-there-is-data-in-an-input-filehandles-buffer-in-perl/1758190#1758190Comment by on How can I tell if there is data in an input filehandle's buffer in Perl?2009-11-18T18:49:59Z2009-11-18T18:49:59ZSelect doesn't work with buffered IO, does it? From the POD:
WARNING: One should not attempt to mix buffered I/O (like "read" or <FH>) with "select", except as permitted by POSIX, and even then only on POSIX systems. You have to use "sysread" instead.