User ibz - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T02:06:51Zhttp://stackoverflow.com/feeds/user/5475http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1037406/python-urllib2-with-keep-alive3Python urllib2 with keep aliveibz2009-06-24T09:50:43Z2009-12-16T11:01:09Z
<p>How can I make a "keep alive" HTTP request using Python's urllib2?</p>
http://stackoverflow.com/questions/599280/how-to-pass-information-using-an-http-redirect-in-django/1912778#19127780Answer by ibz for How to pass information using an http redirect (in Django)ibz2009-12-16T06:49:38Z2009-12-16T06:49:38Z<p>Take a look at Django's messages framework. <a href="http://docs.djangoproject.com/en/dev/ref/contrib/messages/#ref-contrib-messages" rel="nofollow">http://docs.djangoproject.com/en/dev/ref/contrib/messages/#ref-contrib-messages</a></p>
http://stackoverflow.com/questions/1912557/a-question-on-python-gil/1912602#19126021Answer by ibz for A question on python GILibz2009-12-16T05:57:54Z2009-12-16T05:57:54Z<p>It really depends on the library you're using. The GIL is meant to prevent Python objects and its internal data structures to be changed at the same time. If you're doing an upload, the library you use to do the actual upload might release the GIL while it's waiting for the actual HTTP request to complete (I would assume that is the case with the HTTP modules in the standard library, but I didn't check).</p>
<p>As a side note, if you really want to have things running in parallel, just <strong>use multiple processes</strong>. It will save you a lot of trouble and you'll end up with better code (more robust, more scalable, and most probably better structured).</p>
http://stackoverflow.com/questions/1899039/how-do-i-connect-to-a-remote-mysql-server-in-net/1899047#18990471Answer by ibz for How do i connect to a remote mysql server in .NET?ibz2009-12-14T05:17:53Z2009-12-14T05:17:53Z<p>Sounds like a MySQL problem rather than a .NET problem. By default MySQL only listens for connections from localhost (for security reasons). You need to explicitly tell it not to do so. See this: <a href="http://www.howtogeek.com/howto/mysql/switch-mysql-to-listen-on-tcp/">http://www.howtogeek.com/howto/mysql/switch-mysql-to-listen-on-tcp/</a> .</p>
http://stackoverflow.com/questions/1895538/for-loop-os-listdir-not-working-correctly/1895583#18955830Answer by ibz for For Loop, os.listdir() not working correctlyibz2009-12-13T04:49:26Z2009-12-13T04:54:39Z<p>After you do a chdir, the current directory changes to the subdirectory, so you can't move to another subdirectory (a sibling of the first one) later using just its name. Using an absolute path will fix your problem.</p>
<p>Try</p>
<pre><code>os.chdir(os.path.join(driveLetter, clientName, year))
</code></pre>
<p>Moving back to the parent directory <code>os.chdir("..")</code> before moving to a sibling also works.</p>
<p>As a side note, better use <code>os.path.join(driveLetter, clientName, year, "Folder One")</code> instead of <code>driveLetter + clientName + '\\' + year + '\Folder One'</code>. It will make your code work on other operating systems too. And a bit more readable I would argue.</p>
http://stackoverflow.com/questions/814216/ginfowindow-maxcontent-dependent-on-the-currently-selected-tab2GInfoWindow maxContent dependent on the currently selected tabibz2009-05-02T05:34:32Z2009-12-13T04:46:23Z
<p>I'm using Google Maps API to display a map and some markers on it. When the user clicks a marker, I use the openInfoWindowTabsHtml of my GMap2 object to display the little balloon, with tabs. I also pass in a maxContent to openInfoWindowTabsHtml, so the baloon becomes maximizable.</p>
<p>Now my problem is, I would like the maximized content to depend on the currently selected tab (basically my maximized content is an extended version of the "short content" I display in the balloon).</p>
<p>I don't really see a way to do that though. I was thinking to catch the maximizeclick event on the info window, and modify the maxContent, just before it gets maximized. But how to modify the maxContent?</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/965053/extract-filename-and-extension-in-bash0Extract filename and extension in bashibz2009-06-08T14:00:29Z2009-12-12T12:21:25Z
<p>I want to get the filename (without extension) and the extension separately.</p>
<p>The best solution I found so far is:</p>
<pre><code>NAME=`echo "$FILE" | cut -d'.' -f1`
EXTENSION=`echo "$FILE" | cut -d'.' -f2`
</code></pre>
<p>This is bad because it doesn't work if the filename contains multiple "." characters. If let's say I have <strong>a.b.js</strong> it will consider <strong>a</strong> and <strong>b.js</strong>, instead of <strong>a.b</strong> and <strong>js</strong>.</p>
<p>It can be easily done in Python with</p>
<pre><code>file, ext = os.path.splitext(path)
</code></pre>
<p>but I'd prefer not to fire a Python interpreter just for this, if possible.</p>
<p>Any better ideas?</p>
http://stackoverflow.com/questions/1887102/iboutlet-with-pyobjc-and-interface-builder0IBoutlet with PyObjC and Interface Builderibz2009-12-11T10:16:27Z2009-12-11T16:42:35Z
<p>I'm writing a simple OSX app using Python and PyObjC. I designed the settings dialog using Interface Builder and I use ibtool to compile it, then load it from Python. The problem is how to access the controls I have in this window from the Python code? I played around with iPhone development a bit before and I remember I need to have an IBOutlet in the controller class which will be connected to the UI control in the interface builder. It should look something like this in Python:</p>
<pre><code>class MyClass(NSObject):
my_outlet = objc.IBOutlet('my_outlet')
</code></pre>
<p>But since I'm not working in XCode (all I have is a .py file and a .xib file), Interface Builder doesn't know about my outlets. How can I do the binding in this case? Or how else can I access the UI elements from the code?</p>
http://stackoverflow.com/questions/393637/django-fastcgi-randomly-raising-operationalerror4Django + FastCGI - randomly raising OperationalErroribz2008-12-26T09:04:03Z2009-11-16T18:46:07Z
<p>I'm running a Django application. Had it under Apache + mod_python before, and it was all OK. Switched to Lighttpd + FastCGI. Now I randomly get the following exception (neither the place nor the time where it appears seem to be predictable). Since it's random, and it appears only after switching to FastCGI, I assume it has something to do with some settings.</p>
<p>Found a few results when googleing, but they seem to be related to setting maxrequests=1. However, I use the default, which is 0.</p>
<p>Any ideas where to look for?</p>
<p>PS. I'm using PostgreSQL. Might be related to that as well, since the exception appears when making a database query.</p>
<p>Thanks.</p>
<pre><code> File "/usr/lib/python2.6/site-packages/django/core/handlers/base.py", line 86, in get_response
response = callback(request, *callback_args, **callback_kwargs)
File "/usr/lib/python2.6/site-packages/django/contrib/admin/sites.py", line 140, in root
if not self.has_permission(request):
File "/usr/lib/python2.6/site-packages/django/contrib/admin/sites.py", line 99, in has_permission
return request.user.is_authenticated() and request.user.is_staff
File "/usr/lib/python2.6/site-packages/django/contrib/auth/middleware.py", line 5, in __get__
request._cached_user = get_user(request)
File "/usr/lib/python2.6/site-packages/django/contrib/auth/__init__.py", line 83, in get_user
user_id = request.session[SESSION_KEY]
File "/usr/lib/python2.6/site-packages/django/contrib/sessions/backends/base.py", line 46, in __getitem__
return self._session[key]
File "/usr/lib/python2.6/site-packages/django/contrib/sessions/backends/base.py", line 172, in _get_session
self._session_cache = self.load()
File "/usr/lib/python2.6/site-packages/django/contrib/sessions/backends/db.py", line 16, in load
expire_date__gt=datetime.datetime.now()
File "/usr/lib/python2.6/site-packages/django/db/models/manager.py", line 93, in get
return self.get_query_set().get(*args, **kwargs)
File "/usr/lib/python2.6/site-packages/django/db/models/query.py", line 304, in get
num = len(clone)
File "/usr/lib/python2.6/site-packages/django/db/models/query.py", line 160, in __len__
self._result_cache = list(self.iterator())
File "/usr/lib/python2.6/site-packages/django/db/models/query.py", line 275, in iterator
for row in self.query.results_iter():
File "/usr/lib/python2.6/site-packages/django/db/models/sql/query.py", line 206, in results_iter
for rows in self.execute_sql(MULTI):
File "/usr/lib/python2.6/site-packages/django/db/models/sql/query.py", line 1734, in execute_sql
cursor.execute(sql, params)
OperationalError: server closed the connection unexpectedly
This probably means the server terminated abnormally
before or while processing the request.
</code></pre>
http://stackoverflow.com/questions/283294/django-debugging-with-emacs9Django debugging with Emacsibz2008-11-12T08:15:26Z2009-11-03T08:21:13Z
<p>I found a lot of info about how to debug simple Python programs with Emacs. But what if I want to debug a Django application?
I run the development server and I would like to somehow attach to the process from Emacs and then set breakpoints, etc. Similar to Visual Studio's "attach to process". How to do that?</p>
http://stackoverflow.com/questions/744374/recommended-coding-style-for-setting-property-values-in-objective-c0Recommended coding style for setting property values in Objective-Cibz2009-04-13T16:07:09Z2009-08-13T10:59:06Z
<p>Let's say I have this interface:</p>
<pre><code>// .h
@interface DataObject : NSObject {
NSString* value;
}
@property (retain) NSString* value;
@end
// .m
@implementation DataObject
@synthetize value
@end
</code></pre>
<p>As far as I understand, the following two snippets are identical:</p>
<pre><code>DataObject *o = [[[DataObject alloc] init] autorelease];
[o setValue: @"Hello"];
DataObject *o = [[[DataObject alloc] init] autorelease];
o.value = @"Hello";
</code></pre>
<p>Am I correct? If yes, should I prefer one over another one? Or is it just a style preference?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1135266/see-currently-executing-queries-in-postgresql2See currently executing queries in PostgreSQLibz2009-07-16T03:33:20Z2009-07-19T20:52:37Z
<p>Right now I'm using <code>SELECT current_query FROM pg_stat_activity;</code>, but I noticed that the query is truncated. Can't seem to find any better way. Is there any?</p>
http://stackoverflow.com/questions/1147210/html-table-is-bigger-than-the-browsers-window0HTML table is bigger than the browser's windowibz2009-07-18T10:32:17Z2009-07-19T14:27:57Z
<p>I have something like this:</p>
<pre><code><table>
<tr>
<td><nobr>hello</nobr></td>
<td>this column can contain a lot of text, for some rows</td>
<td><nobr>world</nobr></td>
<td><nobr>hello world</nobr></td>
</tr>
... more rows to come
</table>
</code></pre>
<p>Basically 3 of the columns have very short text, and I want them to be <code><nobr></code>. The other one can have very long text, and I want it to take all the remaining space. But what happens is that the table gets bigger than the whole browser window to accommodate the big column. If the text is <em>really</em> big it will eventually break, but it still gets quite a bit outside the window.</p>
<p>I tried setting width, max-width, but no luck. What am I doing wrong?</p>
http://stackoverflow.com/questions/1090620/special-magic-methods-in-python5Special (magic) methods in Pythonibz2009-07-07T06:06:11Z2009-07-10T03:21:16Z
<p>What are all the special (magic) methods in Python? The <code>__xxx__</code> methods, that is.</p>
<p>I'm often looking for a way to override something which I know is possible to do through one of these methods, but I'm having a hard time to find how since as far as I can tell there is no definitive list of these methods, PLUS their names are not really Google friendly. So I think having a list of those here on SO would be a good idea.</p>
http://stackoverflow.com/questions/1078166/restarting-a-django-application-running-on-apache-modpython6Restarting a Django application running on Apache + mod_pythonibz2009-07-03T07:23:55Z2009-07-03T10:07:07Z
<p>I'm running a Django app on Apache + mod_python. When I make some changes to the code, sometimes they have effect immediately, other times they don't, until I restart Apache. However I don't really want to do that since it's a production server running other stuff too. Is there some other way to force that?</p>
<p>Just to make it clear, since I see some people get it wrong, I'm talking about a <em>production</em> environment. For development I'm using Django's development server, of course.</p>
http://stackoverflow.com/questions/1067061/does-a-varchar-fields-declared-size-have-any-impact-in-postgresql3Does a varchar field's declared size have any impact in PostgreSQL?ibz2009-07-01T02:50:50Z2009-07-02T05:17:10Z
<p>Is VARCHAR(100) any better than VARCHAR(500) from a performance point of view? What about disk usage?</p>
<p>Talking about PostgreSQL today, not some database some time in history.</p>
http://stackoverflow.com/questions/1056593/python-2-4-plistlib-on-linux0Python 2.4 plistlib on Linuxibz2009-06-29T04:47:15Z2009-06-29T05:05:20Z
<p>According to <a href="http://docs.python.org/dev/library/plistlib.html" rel="nofollow">http://docs.python.org/dev/library/plistlib.html</a>, plistlib is available to non-Mac platforms only since 2.6, but I'm wondering if there's a way to get it work on 2.4 on Linux.</p>
http://stackoverflow.com/questions/1011088/access-django-testserver-from-django-test0Access Django testserver from Django testibz2009-06-18T06:25:18Z2009-06-18T08:10:10Z
<p>Hi!</p>
<p>I want to write a unit test that performs HTTP requests directly (instead of using django.test.client.Client).</p>
<p>If you're curious why - it's because I want to test a Thrift-over-HTTP API that I expose from my Django application - and I want to use the Thrift client in the unit test.</p>
<p>The problem is that during tests, the server is not actually being run. When using django.test.client.Client, it will simply call the view functions instead of actually making a HTTP request. (Please correct me if I'm wrong.)</p>
<p>So what would be the best way to force the test framework to start the HTTP server?</p>
<p>I tried writing a bash script that does something like this:</p>
<pre><code>./manage.py testserver --addrport 7000 &
PID=$!
sleep 5
./manage.py test --no-input
kill $PID
</code></pre>
<p>But that is messy (and doesn't really work) because 1) I need the sleep (otherwise the test will start before the DB is initialized by the test server) and 2) the test will try to initialize the database again (after the testserver already initialized it).</p>
<p>Any other solutions to this?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/814216/ginfowindow-maxcontent-dependent-on-the-currently-selected-tab/934812#9348120Answer by ibz for GInfoWindow maxContent dependent on the currently selected tabibz2009-06-01T13:27:07Z2009-06-01T13:27:07Z<p>What I did in the end was to use tabbedmaxcontent.js from the open source library gmaps-utility-library - <a href="http://code.google.com/p/gmaps-utility-library" rel="nofollow">http://code.google.com/p/gmaps-utility-library</a> - so the maximized balloon has tabs as well.</p>
http://stackoverflow.com/questions/881335/comparing-strings-in-cocoa/881360#8813601Answer by ibz for Comparing Strings in Cocoaibz2009-05-19T07:11:10Z2009-05-19T07:11:10Z<pre><code>[returnedString isEqualToString: @"thisString"]
</code></pre>
http://stackoverflow.com/questions/209428/non-standard-attributes-on-html-tags-good-thing-bad-thing-your-thoughts/881334#8813343Answer by ibz for Non-Standard Attributes on HTML Tags. Good Thing? Bad Thing? Your Thoughts?ibz2009-05-19T07:01:21Z2009-05-19T07:01:21Z<p>Another option would be to define something like this in Javascript:</p>
<pre><code><script type="text/javascript">
var link_titles = {link1: "Title 1", link2: "Title 2"};
</script>
</code></pre>
<p>Then you can use this later in your Javascript code, assuming your link has an ID that corresponds to the ID in this hashtable.</p>
<p>It doesn't have the disadvantages of the other two methods: no non-standard attributes nor the ugly hidden span.</p>
<p>The disadvantage is that it might a bit of an overkill for things as simple as your example. But for more complex scenarios, where you have more data to pass, it's a good choice. Especially considering that the data is being passed as JSON, so you can pass complex objects with ease.</p>
<p>Also, you keep data separate from the formatting, which is a good thing for maintainability.</p>
<p>You can even have something like this (which you can't really do with the other methods):</p>
<pre><code>var poi_types = {1: "City", 2: "Restaurant"};
var poi = {1: {lat: X, lng: Y, name: "Beijing", type: 1}, 2: {lat: A, lng: B, name: "Hatsune", type: 2}};
</code></pre>
<p>...</p>
<pre><code><a id="poi-2" href="/poi/2/">Hatsune</a>
</code></pre>
<p>And since you most probably use some server-side programming language, this hash table should be trivial to generate dynamically (just serialize it to JSON and spit it in the header section of the page).</p>
http://stackoverflow.com/questions/814288/how-to-translate-icontains-in-django-to-sql-statement/814302#8143022Answer by ibz for How to translate icontains in django to SQL statement ?ibz2009-05-02T06:53:19Z2009-05-02T07:09:35Z<p>__icontains in Django can be written in SQL using ILIKE.</p>
<p>Example:</p>
<pre><code>SELECT ... WHERE some_column ILIKE '%some_string%'
</code></pre>
<p>So you can rewrite your query like:</p>
<pre><code>cursor.execute("SELECT product_style_id ,sum(price) As total_p ,sum(cast( amount as int )) AS total_a FROM jewelry_productorder WHERE due_date ILIKE %s group by product_style_id ORDER BY total_p DESC LIMIT 5", ["%%%s%%" % d])
</code></pre>
<p>If your DB doesn't support ILIKE (as pointed out in a comment to my answer), do something like this:</p>
<pre><code>SELECT ... WHERE LOWER(some_column) LIKE LOWER('%some_string%')
</code></pre>
<p>Note that using LOWER, might prevent your DB from using the index (if you have an index on that column).</p>
<p>Also, note that Django 1.1 added aggregation support, so you should be able to make GROUP BY queries without resorting to raw SQL. Check this: <a href="http://docs.djangoproject.com/en/dev/topics/db/aggregation/" rel="nofollow">http://docs.djangoproject.com/en/dev/topics/db/aggregation/</a></p>
http://stackoverflow.com/questions/814213/finding-the-last-rightmost-match-for-an-arbitrary-regular-expression-in-ruby/814240#8142405Answer by ibz for Finding the last (rightmost) match for an arbitrary regular expression in rubyibz2009-05-02T05:51:58Z2009-05-02T06:00:06Z<p>Use the rindex method on your string. Like this:</p>
<pre><code>>> 'ssBssBss'.rindex(/B/)
=> 5
</code></pre>
http://stackoverflow.com/questions/744386/reusing-asmx-webservices-in-multiple-projects/744501#7445010Answer by ibz for Reusing asmx webservices in multiple projectsibz2009-04-13T16:37:35Z2009-04-13T16:37:35Z<p>When doing development, just point the web reference to your local machine and run the web service locally. I don't really see any problem with that.</p>
http://stackoverflow.com/questions/744409/which-non-mainstream-programming-language-to-use-for-a-hobby-project/744459#7444593Answer by ibz for Which non mainstream programming language to use for a hobby project?ibz2009-04-13T16:28:10Z2009-04-13T16:28:10Z<p>Smalltalk, namely the Squeak implementation has all the features you request. It's also quite mature and has a nice community.</p>
<p>As a bonus, you get to work with a pure objective language, which will make your head spin in the beginning, but will teach you <em>a lot</em> about OO in general once you get used to it!</p>
http://stackoverflow.com/questions/744424/django-models-how-to-filter-out-duplicate-values-by-pk-after-the-fact/744439#7444390Answer by ibz for Django models - how to filter out duplicate values by PK after the fact?ibz2009-04-13T16:24:46Z2009-04-13T16:24:46Z<p>If the order doesn't matter, use a dict.</p>
http://stackoverflow.com/questions/743932/sort-a-mysql-table-using-php-ajax-and-jquery/744028#7440281Answer by ibz for Sort a mysql table using php,ajax and jqueryibz2009-04-13T14:21:14Z2009-04-13T14:21:14Z<p>Use ORDER BY when you do the SELECT. Check this: <a href="http://dev.mysql.com/doc/refman/5.0/en/sorting-rows.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/sorting-rows.html</a></p>
http://stackoverflow.com/questions/743994/how-do-i-select-an-element-in-jquery-by-using-a-variable-for-the-id/744001#7440015Answer by ibz for How do I select an element in jQuery by using a variable for the ID?ibz2009-04-13T14:15:31Z2009-04-13T14:15:31Z<pre><code>row = $("body").find("#" + row_id);
</code></pre>
http://stackoverflow.com/questions/743885/how-can-i-determine-whether-console-out-has-been-redirected-to-a-file/743942#7439421Answer by ibz for How can I determine whether Console.Out has been redirected to a file?ibz2009-04-13T13:56:52Z2009-04-13T13:56:52Z<p>Don't do that! Just pass an additional command line parameter that specifies the formatting you want to be applied. It's simpler, cleaner, and easier to understand both by people that will use your app and by people who will work on your code.</p>
http://stackoverflow.com/questions/743808/c-coding-standards-for-private-member-variables/743842#7438421Answer by ibz for c# coding standards for private member variablesibz2009-04-13T13:02:50Z2009-04-13T13:02:50Z<p>Best is to use whatever is already used in the project. If you start a new project, use whatever is most often used in the company.</p>
http://stackoverflow.com/questions/599280/how-to-pass-information-using-an-http-redirect-in-django/599704#599704Comment by ibz on How to pass information using an http redirect (in Django)ibz2009-12-16T06:47:56Z2009-12-16T06:47:56ZDoesn't work for anonymous users. Plus, it's been deprecated.http://stackoverflow.com/questions/1912434/easiest-way-to-parse-xml-in-python/1912445#1912445Comment by ibz on easiest way to parse xml in pythonibz2009-12-16T06:10:44Z2009-12-16T06:10:44ZI wouldn't rely too much on BeautifulSoup now that its future is uncertain. <a href="http://www.crummy.com/software/BeautifulSoup/3.1-problems.html" rel="nofollow">crummy.com/software/BeautifulSoup/…</a>http://stackoverflow.com/questions/1912557/a-question-on-python-gil/1912607#1912607Comment by ibz on A question on python GILibz2009-12-16T06:03:43Z2009-12-16T06:03:43ZSure, the GIL is only a problem in CPython. Though I can't really imagine somebody moving to Jython or IronPython just because of that when there are better ways to get around it.http://stackoverflow.com/questions/1562064/md5-hashing-in-pythonComment by ibz on md5 hashing in pythonibz2009-12-15T02:44:28Z2009-12-15T02:44:28ZWhy downvote this question? Sure, he didn't understand what MD5 is in the first place, but the question is still valid.http://stackoverflow.com/questions/1899039/how-do-i-connect-to-a-remote-mysql-server-in-net/1899047#1899047Comment by ibz on How do i connect to a remote mysql server in .NET?ibz2009-12-15T01:04:57Z2009-12-15T01:04:57ZDid you try connecting from a MySQL client instead of from .NET?http://stackoverflow.com/questions/1887102/iboutlet-with-pyobjc-and-interface-builder/1889278#1889278Comment by ibz on IBoutlet with PyObjC and Interface Builderibz2009-12-12T03:38:28Z2009-12-12T03:38:28ZHmm... Saw some tutorials on XCode + PyObjC, but the templates being removed in the last XCode I thought it's not being supported anymore or something, so I just went on with Emacs + Interface Builder. :) Yes, I <i>do</i> want an .app, so I'm going to switch to XCode. Thanks a lot for the insightful answer.http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/238424#238424Comment by ibz on Worst UI You've Ever Usedibz2009-09-23T07:30:01Z2009-09-23T07:30:01ZEnterprise Manager only 11 votes? Come on, people!http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/238245#238245Comment by ibz on Worst UI You've Ever Usedibz2009-09-23T07:26:12Z2009-09-23T07:26:12ZIs it only me who finds Photoshop more confusing than GIMP? The windows floating all over are very annoying, but that's the same in PS! The menus on the other hand are better in Gimp.http://stackoverflow.com/questions/275174/how-do-i-perform-html-decoding-encoding-using-python-django/275246#275246Comment by ibz on How do I perform HTML decoding/encoding using Python/Django?ibz2009-09-23T06:57:40Z2009-09-23T06:57:40ZShould be '&#39;' instead of '&#39;/'.http://stackoverflow.com/questions/56121/ipc-mechanisms-in-c-usage-and-best-practices/56137#56137Comment by ibz on IPC Mechanisms in C# - Usage and Best Practices..ibz2009-08-24T06:02:52Z2009-08-24T06:02:52ZNo idea. It's just my guess.http://stackoverflow.com/questions/1147210/html-table-is-bigger-than-the-browsers-window/1147295#1147295Comment by ibz on HTML table is bigger than the browser's windowibz2009-07-18T12:48:04Z2009-07-18T12:48:04ZYou're right. One of my rows had a huge "word" (no spaces). I hadn't seen that, since it was far down in my table. Thanks!http://stackoverflow.com/questions/1147210/html-table-is-bigger-than-the-browsers-windowComment by ibz on HTML table is bigger than the browser's windowibz2009-07-18T10:51:28Z2009-07-18T10:51:28Z@Random Echo Firefox.
@meep That's exactly my example.http://stackoverflow.com/questions/1135266/see-currently-executing-queries-in-postgresql/1135276#1135276Comment by ibz on See currently executing queries in PostgreSQLibz2009-07-16T03:45:08Z2009-07-16T03:45:08ZHeh, I found a similar one from 2004. Was hoping it changed over all these years though. :(http://stackoverflow.com/questions/1090620/special-magic-methods-in-pythonComment by ibz on Special (magic) methods in Pythonibz2009-07-07T06:29:07Z2009-07-07T06:29:07Z@balpha Fixed, thanks.http://stackoverflow.com/questions/1067061/does-a-varchar-fields-declared-size-have-any-impact-in-postgresql/1067095#1067095Comment by ibz on Does a varchar field's declared size have any impact in PostgreSQL?ibz2009-07-03T10:17:29Z2009-07-03T10:17:29ZOK, seems two other people agree with this, so I guess it <i>is</i> right after all. Sorry, but the documentation is indeed not very clear, that's why I didn't want to count the documentation as an answer in the beginning.