User - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T13:44:13Z http://stackoverflow.com/feeds/user/13860 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1758104/how-can-i-tell-if-there-is-data-in-an-input-filehandles-buffer-in-perl 2 How can I tell if there is data in an input filehandle's buffer in Perl? flimzy 2009-11-18T18:33:57Z 2009-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 = &lt;$fh&gt; ) { # 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#86443 0 Answer by flimzy for What is the easiest or fastest way to make CSS render the same in all browsers flimzy 2008-09-17T19:01:44Z 2008-09-17T19:01:44Z <p>&lt;img src="page.jpg"&gt;</p> http://stackoverflow.com/questions/1970/what-language-do-you-use-for-postgresql-triggers-and-stored-procedures/77666#77666 1 Answer by flimzy for What language do you use for Postgresql triggers and stored procedures? flimzy 2008-09-16T22:00:49Z 2008-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#77452 2 Answer by flimzy for PostgreSQL 8.3 privileges not updated - wrong usage? flimzy 2008-09-16T21:41:57Z 2008-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#77118 2 Answer by flimzy for How to Setup a Low cost cluster flimzy 2008-09-16T21:08:33Z 2008-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#1758332 Comment by on How can I tell if there is data in an input filehandle's buffer in Perl? 2009-11-18T19:40:54Z 2009-11-18T19:40:54Z That 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#1758237 Comment by on How can I tell if there is data in an input filehandle's buffer in Perl? 2009-11-18T19:05:04Z 2009-11-18T19:05:04Z That 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#1758235 Comment by on How can I tell if there is data in an input filehandle's buffer in Perl? 2009-11-18T19:00:37Z 2009-11-18T19:00:37Z Is 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#1758118 Comment by on How can I tell if there is data in an input filehandle's buffer in Perl? 2009-11-18T18:57:02Z 2009-11-18T18:57:02Z That 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#1758118 Comment by on How can I tell if there is data in an input filehandle's buffer in Perl? 2009-11-18T18:52:30Z 2009-11-18T18:52:30Z No, 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#1758190 Comment by on How can I tell if there is data in an input filehandle's buffer in Perl? 2009-11-18T18:49:59Z 2009-11-18T18:49:59Z Select doesn't work with buffered IO, does it? From the POD: WARNING: One should not attempt to mix buffered I/O (like &quot;read&quot; or &lt;FH&gt;) with &quot;select&quot;, except as permitted by POSIX, and even then only on POSIX systems. You have to use &quot;sysread&quot; instead.