User Andrey Fedorov - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T03:45:49Zhttp://stackoverflow.com/feeds/user/10728http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1860931/what-optimizations-does-a-browser-perform-when-a-dom-element-is-being-rendered-of4What optimizations does a browser perform when a DOM element is being rendered off screen?Andrey Fedorov2009-12-07T16:03:07Z2009-12-15T18:37:38Z
<p>I control an iframe being rendered on another domain. Is there a clear way of telling whether this iframe is being rendered above or below the fold on the parent page? Obviously, I can't access the parent DOM because of the <a href="http://en.wikipedia.org/wiki/Same%5Forigin%5Fpolicy" rel="nofollow">same origin policy</a> restriction.</p>
<p>For example, I tried measuring the speed of rendering on a <code>canvas</code> or <code>VML</code> tag, hoping it would be faster when the tag isn't on screen. This didn't work - there was no discernable speed difference. Ditto for DOM manipulation - there doesn't seem to be a way to differentiate between reflow/repaint operations below or above the fold.</p>
<p>What about flash? I don't have much experience, but could one check how quickly a browser renders flash operations? Or does flash have any 'onvisible' events outside of the DOM standard?</p>
http://stackoverflow.com/questions/1860931/what-optimizations-does-a-browser-perform-when-a-dom-element-is-being-rendered-of/1909436#19094360Answer by Andrey Fedorov for What optimizations does a browser perform when a DOM element is being rendered off screen?Andrey Fedorov2009-12-15T18:32:28Z2009-12-15T18:37:38Z<p>This really varies by-browser, as different browsers interact with the Flash plugin differently. The most precise explanation I could find is on an old <a href="http://web.archive.org/web/20080502114526/http%3A//www.connectedpixel.com/blog/flash/gotcha/belowfold" rel="nofollow">connectedpixel post</a>. </p>
<p>At the point of writing, Firefox didn't init a flash object until it was scrolled on page. IE, on the other hand, resized the Stage element when it scrolled into view. No versions of browser, Flash, or OS are given, so this may have changed since that test.</p>
<p>In short, I need to make a flash object and play with it, watching for various events.</p>
http://stackoverflow.com/questions/1821495/how-do-i-include-parameters-in-a-bash-alias2How do I include parameters in a bash alias?Andrey Fedorov2009-11-30T18:25:31Z2009-11-30T18:29:36Z
<p>Trying to create:</p>
<pre><code>alias mcd="mkdir $1; cd $1"
</code></pre>
<p>Getting:</p>
<pre><code>$ mcd foo
usage: mkdir [-pv] [-m mode] directory ...
-bash: foo: command not found
</code></pre>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/699707/what-happens-to-a-branch-of-an-os-project-covered-by-software-patents0What happens to a branch of an OS project covered by software patents?Andrey Fedorov2009-03-31T01:30:19Z2009-11-26T02:55:16Z
<p>I was looking through <a href="http://www.google.com/patents?id=MtAYAAAAEBAJ&dq=Lars%2BBak" rel="nofollow">patents authored by Lars Bak</a>, when I realized a lot of them cover components of the the Sun JVM, HotSpot, etc. Now that parts Sun's stack is being released under FLOSS licenses, how does this affect people who are forking or using forks of this open source software? Are they not in violation of Sun's patents?</p>
http://stackoverflow.com/questions/1699057/why-are-two-different-concepts-both-called-heap12Why are two different concepts both called "heap"?Andrey Fedorov2009-11-09T04:12:57Z2009-11-10T01:16:20Z
<p>Why are the runtime heap used for dynamic memory allocation in C-style languages and <a href="http://en.wikipedia.org/wiki/Heap%5F%28data%5Fstructure%29" rel="nofollow">the data structure</a> both called "the heap"? Is there some relation?</p>
http://stackoverflow.com/questions/1641221/how-do-i-use-macports-to-downgrade-a-dynamic-library0How do I use MacPorts to downgrade a dynamic library?Andrey Fedorov2009-10-29T01:55:11Z2009-10-29T03:17:29Z
<p>My py-mysql is farking because I've upgraded MySQL which replaced <code>libmysqlclient_r.15.dylib</code> with <code>libmysqlclient_r.16.dylib</code>. How do I find and get back the older version?</p>
<p>EDIT: I found that to intall an older version of MySQL, I need to do @, but I'm still looking for the way to find the older versions.</p>
http://stackoverflow.com/questions/1641221/how-do-i-use-macports-to-downgrade-a-dynamic-library/1641246#16412461Answer by Andrey Fedorov for How do I use MacPorts to downgrade a dynamic library?Andrey Fedorov2009-10-29T02:04:21Z2009-10-29T02:04:21Z<p>Didn't figure out how to find older versions (please answer still, I'll accept). But the way I fixed it was to activate the older version:</p>
<pre><code>dreBook:~ fedorov$ port installed mysql5
The following ports are currently installed:
mysql5 @5.0.81_0
mysql5 @5.1.40_0 (active)
dreBook:~ fedorov$ sudo port activate mysql5 @5.0.81_0
---> Deactivating mysql5 @5.1.40_0
---> Activating mysql5 @5.0.81_0
dreBook:~ fedorov$ sudo apachectl restart
</code></pre>
<p>Yay!</p>
http://stackoverflow.com/questions/1640248/how-do-i-move-data-from-postgres-to-mysql-running-on-amazons-rds1How do I move data from Postgres to MySQL running on Amazon's RDS?Andrey Fedorov2009-10-28T21:31:46Z2009-10-28T23:41:49Z
<p>I need to move a database with a Django schema from Postgres to MySQL, running on Amazon's <a href="http://aws.amazon.com/rds/" rel="nofollow">RDF</a>. I can re-generate the tables using manage.py, but I'm still looking for a way to migrate over all of the row data. Does anyone know a clean way of moving it over? Are there any gotchas to watch out for with Amazon's RDF?</p>
http://stackoverflow.com/questions/1006135/how-do-i-create-a-django-model-with-foreignkeys-which-does-not-cascade-deletes-to7How do I create a Django model with ForeignKeys which does not cascade deletes to its children?Andrey Fedorov2009-06-17T10:07:42Z2009-09-24T15:11:56Z
<p>One of my models which has <code>ForeignKey</code>'s is actually a MySQL view on other tables. The problem I'm running into is that when I delete data from these tables, Django, as described in the <a href="http://docs.djangoproject.com/en/dev/topics/db/queries/#deleting-objects" rel="nofollow">"deleting objects" documentation</a>...</p>
<blockquote>
<p>When Django deletes an object, it
emulates the behavior of the SQL
constraint ON DELETE CASCADE -- in
other words, any objects which had
foreign keys pointing at the object to
be deleted will be deleted along with
it.</p>
</blockquote>
<p>...tries to remove rows from my view, which of course it can't, and so throws the error:</p>
<pre><code>mysql_exceptions.OperationalError '>=(1395, "Can not delete from join view 'my_db.my_mysql_view'"'
</code></pre>
<p>Is there any way to specify a <code>ForeignKey</code> constraint on a model which will provide me with all the Django wizardry, but will not cascade deletes onto it? Or, is there a way to ask MySQL to ignore the commands to delete a row from my view instead of raising an error?</p>
http://stackoverflow.com/questions/1353526/fixing-modwsgi-after-upgrading-to-snow-leopard1Fixing mod_wsgi after upgrading to Snow Leopard.Andrey Fedorov2009-08-30T09:54:02Z2009-08-31T02:19:14Z
<p>After upgarding my MBP to 10.6, I get the following in my apache's error.log:</p>
<p><code>[error] [client ::1] Premature end of script headers: django.wsgi</code></p>
<p><a href="http://code.google.com/p/modwsgi/wiki/FrequentlyAskedQuestions" rel="nofollow">WSGI FAQ</a> suggests:</p>
<blockquote>
<p>If using daemon mode, this is a symptom of the mod_wsgi daemon process crashing when handling a request. You would probably also see the message 'segmentation fault'. See answer for question about 'segmentation fault' above.</p>
</blockquote>
<p>The referred section above says:</p>
<blockquote>
<p>This is nearly always caused due to mod_python also being loaded by Apache at the same time as mod_wsgi and the Python installation not providing a shared library, or mod_python having originally being built against a static Python library. This is especially a problem with older Linux distributions before they started shipping with Python as a shared library. </p>
</blockquote>
<p>Apache seems to be configured correctly (hasn't changed since before install), and mod_python isn't being loaded.</p>
<p>I tried rebuilding mod_wsgi using <a href="http://god.morgon.nu/2009/05/11/mod%5Fwsgi-25-with-macports-python-26/" rel="nofollow">the same instructions</a> I did last time, but I get an error when I <code>make</code> <a href="http://gist.github.com/177914" rel="nofollow">spanning 9k lines</a>, the short version being:</p>
<blockquote>
<p>[...] </p>
<p><code>lipo: can't figure out the architecture type of: <some temp file>.out</code></p>
</blockquote>
<p>I did a bunch of other poking around - making sure I'm running the installation of Apache I think I'm running, the config files loaded are the ones I'm looking at, etc, but I'm running out of troubleshooting steps. Solutions and advice for next step both welcome :)</p>
http://stackoverflow.com/questions/821222/what-is-the-precedence-of-multiple-join-statements-in-sqlite3What is the precedence of multiple JOIN statements in sqlite?Andrey Fedorov2009-05-04T18:06:07Z2009-08-30T10:01:18Z
<p>The following two queries are returning different results, to my surprise:</p>
<pre><code>SELECT *
FROM foo
JOIN bar
ON bar.id=foo.bar_id
JOIN baz
ON baz.id=foo.baz_id
LEFT JOIN zig
ON zig.foo_id=foo.id;
</code></pre>
<p>and:</p>
<pre><code>SELECT *
FROM foo
LEFT JOIN zig
ON zig.foo_id=foo.id
JOIN bar
ON bar.id=foo.bar_id
JOIN baz
ON baz.id=foo.baz_id;
</code></pre>
<p>I'm imagining that it shouldn't matter when you <code>LEFT JOIN</code> on <code>zig</code>, since I'm not using <code>zig</code>'s columns when joining the <code>bar</code> and <code>baz</code>. However, it appears that in the latter, the <code>JOIN</code>-ing of <code>bar</code> and <code>baz</code> swallows up the rows where <code>zig</code> had <code>null</code> values... why is that?</p>
http://stackoverflow.com/questions/821222/what-is-the-precedence-of-multiple-join-statements-in-sqlite/1353534#13535340Answer by Andrey Fedorov for What is the precedence of multiple JOIN statements in sqlite?Andrey Fedorov2009-08-30T10:01:18Z2009-08-30T10:01:18Z<p>This works fine. I was wrong.</p>
http://stackoverflow.com/questions/1282860/using-python-to-read-the-screen-and-controlling-keyboard-mouse-on-osx0Using Python to read the screen and controlling keyboard/mouse on OSX.Andrey Fedorov2009-08-15T21:13:45Z2009-08-17T07:03:42Z
<p>I'm looking for or trying to write a testing suite in Python which will control the mouse/keyboard and watch the screen for changes.</p>
<p>The obvious parts I need are (1) screen watcher, (2) keyboard/mouse control.</p>
<p>The latter is explained <a href="http://stackoverflow.com/questions/281133/controlling-the-mouse-from-python-in-os-x">here</a>, but what is the best way to go about doing the former on OSX?</p>
http://stackoverflow.com/questions/909092/why-is-the-compiler-package-discontinued-in-python-35Why is the compiler package discontinued in Python 3?Andrey Fedorov2009-05-26T05:54:30Z2009-08-02T06:04:35Z
<p>I was just pleasantly surprised to came across the documentation of <a href="http://docs.python.org/library/compiler" rel="nofollow">Python's compiler package</a>, but noticed that it's gone in Python 3.0, without any clear replacement or explanation.</p>
<p>I can't seem to find any discussion on python-dev about how this decision was made - does anyone have any insight inot this decision?</p>
http://stackoverflow.com/questions/1180048/is-it-possible-to-send-custom-headers-with-an-xhr-ajax-request1Is it possible to send custom headers with an XHR ("Ajax" request)?Andrey Fedorov2009-07-24T20:38:44Z2009-07-24T20:41:24Z
<p>I'm working with an API which needs extra security information sent along with an HTTP request as meta-information in headers. Is it possible to set those in an XMLHttpRequest?</p>
http://stackoverflow.com/questions/1101613/django-relatedmanagers-create-usage1Django RelatedManager's .create() usage?Andrey Fedorov2009-07-09T02:51:56Z2009-07-20T12:55:25Z
<p>I have two models: <code>Play</code> and <code>PlayParticipant</code>, defined (in part) as:</p>
<pre><code>class PlayParticipant(models.Model):
player = models.ForeignKey('Player')
play = models.ForeignKey('Play')
note = models.CharField(max_length=100, blank=True)
</code></pre>
<p>A piece of my code has a play <code>p</code> which has id 8581, and I'd like to add participants to it. I'm trying to use RelatedManager's <code>.create()</code> to do that, like:</p>
<pre><code>p.playparticipant_set.create(player_id=2383)
</code></pre>
<p>From which, Django constructs:</p>
<pre><code>INSERT INTO `api_playparticipant` (`player_id`, `play_id`, `note`) VALUES (2383, 2383, '')
</code></pre>
<p>Is this a bug in Django, or am I misusing <code>.create()</code>?</p>
<p>Copy-pasting shell for sanity check:</p>
<pre><code>In [17]: p = Play.objects.get(id=8581)
In [18]: p.id
Out[18]: 8581L
In [19]: p.playparticipant_set.create(player_id=2383)
...
IntegrityError: (1452, 'Cannot add or update a child row: a foreign key constraint fails (`gc/api_playparticipant`, CONSTRAINT `play_id_refs_id_60804ffd462e0029` FOREIGN KEY (`play_id`) REFERENCES `api_play` (`id`))')
</code></pre>
<p>From query.log:</p>
<pre><code>5572 Query INSERT INTO `api_playparticipant` (`player_id`, `play_id`, `note`) VALUES (2383, 2383, '')
</code></pre>
http://stackoverflow.com/questions/1088431/adding-attributes-into-django-models-meta-class4Adding attributes into Django Model's Meta classAndrey Fedorov2009-07-06T18:08:21Z2009-07-07T18:02:26Z
<p>I'm writing a mixin which will allow my Models to be easily translated into a deep dict of values (kind of like .values(), but traversing relationships). The cleanest place to do the definitions of these seems to be in the models themselves, a la:</p>
<pre><code>class Person(models.Model, DeepValues):
name = models.CharField(blank=True, max_length=100)
tribe = models.ForeignKey('Tribes')
class Meta:
schema = {
'name' : str,
'tribe' : {
'name' : str
}
}
Person.objects.all().deep_values() => {
'name' : 'Andrey Fedorov',
'tribe' : {
'name' : 'Mohicans'
}
}
</code></pre>
<p>However, Django complains about my including this in <code>class Meta</code> with:</p>
<pre><code>TypeError: 'class Meta' got invalid attribute(s): schema
</code></pre>
<p>(entire stack trace <a href="http://gist.github.com/76cef1f8aea0ce92cb24" rel="nofollow">here</a>)</p>
<p>Now, I suppose I could elaborately override this in my mixin, but is there a more elegant way of storing this information?</p>
http://stackoverflow.com/questions/660437/what-makes-hot-deployment-a-hard-problem5What makes hot deployment a "hard problem"?Andrey Fedorov2009-03-18T23:02:29Z2009-06-10T09:39:01Z
<p>At work, we've been having a problem with "<a href="http://www.jroller.com/agileanswers/entry/preventing%5Fjava%5Fs%5Fjava%5Flang" rel="nofollow">PermGen out of memory</a>" exceptions, with the team lead deciding it was a bug in the JVM - something related to hot-deployment of code. Without explaining many details, he pointed out that hot deployment is a "hard problem", so hard that even .NET doesn't do it yet.</p>
<p>I found a lot of articles explaining hot deployment from the bird's-eye-view, but always lacking technical details. Could anyone point me to a technical explanation, and explain why hot deployment is "a hard problem"?</p>
http://stackoverflow.com/questions/969285/how-do-i-translate-a-iso-8601-datetime-string-into-a-python-datetime-object1How do I translate a ISO 8601 datetime string into a Python datetime object?Andrey Fedorov2009-06-09T10:36:34Z2009-06-09T10:45:59Z
<p>I'm getting a datetime string in a format like "2009-05-28T16:15:00" (this is ISO 8601, I believe) one hack-ish option seems to be to parse the string using <code>time.strptime</code> and passing the first 6 elements of the touple into the datetime constructor, like:</p>
<pre><code>datetime.datetime(*time.strptime("2007-03-04T21:08:12", "%Y-%m-%dT%H:%M:%S")[:6])
</code></pre>
<p>I haven't been able to find a "cleaner" way of doing this, is there one?</p>
http://stackoverflow.com/questions/939912/django-cant-http-request-its-own-pages0Django can't http request its own pages?Andrey Fedorov2009-06-02T14:34:44Z2009-06-02T21:07:10Z
<p>At one point, my Django app needs to load one of its own pages to render another page. I'm trying to use urllib2 (working with Python 2.6) to load the page, but it appears that the newer request is blocked until the former completes.</p>
<p>Is this a problem with Django using only one thread in debug mode? (I'm running it simply with the default <code>python manage.py runserver</code>). Is there a simple way of asking it to multithread?</p>
http://stackoverflow.com/questions/933484/is-there-a-way-to-invoke-a-python-function-with-the-wrong-number-of-arguments-wit1Is there a way to invoke a Python function with the wrong number of arguments without invoking a TypeError?Andrey Fedorov2009-06-01T03:43:49Z2009-06-01T19:27:06Z
<p>When you invoke a function with the wrong number of arguments, or with a keyword argument that isn't in its definition, you get a TypeError. I'd like a piece of code to take a callback and invoke it with variable arguments, based on what the callback supports. One way of doing it would be to, for a callback <code>cb</code>, use <code>cb.__code__.cb_argcount</code> and <code>cb.__code__.co_varnames</code>, but I would rather abstract that into something like <code>apply</code>, but that only applies the arguments which "fit".</p>
<p>For example:</p>
<pre><code> def foo(x,y,z):
pass
cleanvoke(foo, 1) # should call foo(1, None, None)
cleanvoke(foo, y=2) # should call foo(None, 2, None)
cleanvoke(foo, 1,2,3,4,5) # should call foo(1, 2, 3)
# etc.
</code></pre>
<p>Is there anything like this already in Python, or is it something I should write from scratch?</p>
http://stackoverflow.com/questions/919855/what-program-can-help-a-repl-shell-remember-and-search-history4What program can help a REPL shell remember and search history?Andrey Fedorov2009-05-28T08:51:51Z2009-05-28T09:14:57Z
<p>I'm playing with Paul Graham's <a href="http://arclanguage.org/" rel="nofollow">arc</a>, and it's getting really annoying that the up arrow inserts ^[[A instead of the previous command, and ^R doesn't work as in shell. I vaguely remember there being a simple way to run Arc's REPL in a program which will remember the input history - does anyone know what it is?</p>
http://stackoverflow.com/questions/909628/how-do-i-create-a-new-git-branch-from-the-changes-i-have-in-the-working-tree3How do I create a new git branch from the changes I have in the working tree?Andrey Fedorov2009-05-26T08:38:26Z2009-05-26T11:54:29Z
<p>I have edits to my working tree which I would like to continue working on in a branch. Will <code>git checkout -b new_branch</code> wipe out my current changes to the working tree? If so, how do I create a new branch and switch to it without reverting my working tree?</p>
http://stackoverflow.com/questions/879061/advantages-of-prototype-based-oo-over-class-based/889577#8895777Answer by Andrey Fedorov for Advantages of prototype based OO over class basedAndrey Fedorov2009-05-20T18:49:50Z2009-05-20T18:49:50Z<p>If you're looking for someone to point out the advantages/disadvantages of each as an explanation for their popularity, I think you're falling for a fallacy which is for some reason very common in technology - that popularity has something to do with some absolute measure of quality.</p>
<p>The truth is a lot more bland - class based OO is popular because Java uses classic OO, and Sun spent millions of dollars and a very long time building the popularity of Java - making sure people know it's used successfully in corporations, taught widely in universities, and on high school AP tests.</p>
<p>Prototypal/classical OO are just different ways of organizing your ideas. You can implement either one in languages that don't support it natively (<a href="http://mail.python.org/pipermail/python-list/2000-September/053605.html" rel="nofollow">Python</a> and <a href="http://steve-yegge.blogspot.com/2008/10/universal-design-pattern.html" rel="nofollow">Java</a> come to mind, and <a href="http://justin.harmonize.fm/index.php/2009/01/cobra-a-little-javascript-class-library/" rel="nofollow">JavaScript</a> on the other side).</p>
<p>In classical OO, you define an abstract hierarchy of classes for your objects, and then actually work with instances of those classes. In prototypal inheritance, you create a hierarchy of object instances. Although I imagine it might be a bit heretical in both camps, I don't see a reason you couldn't mix the two...</p>
http://stackoverflow.com/questions/523320/concise-haskell-book8Concise Haskell bookAndrey Fedorov2009-02-07T06:47:07Z2009-05-18T19:05:06Z
<p>In a blog post regarding his JavaScript book, Doug Crockford says</p>
<blockquote>
<p>I relied on two models when I wrote JavaScript: The Good Parts. The first was Kernighan and Richie's The C Programming Language. It is a brilliant little book. I thought there should be a K&R for JavaScript. When it seems that most tech books are sold by the pound, it is nice to read a little book that cleanly lays out what you need to know.</p>
</blockquote>
<p>What Haskell book comes closest to this philosophy?</p>
http://stackoverflow.com/questions/799840/what-does-the-collate-keyword-do-when-creating-a-sqlite-index0What does the COLLATE keyword do when creating a sqlite index?Andrey Fedorov2009-04-28T21:11:31Z2009-04-28T21:20:52Z
<p>According to the <a href="http://www.sqlite.org/lang%5Fcreateindex.html" rel="nofollow">sqlite3 documentation</a>,</p>
<blockquote>
<p>The COLLATE clause following each
column name defines a collating
sequence used for text entries in that
column. The default collating sequence
is the collating sequence defined for
that column in the CREATE TABLE
statement. Or if no collating sequence
is otherwise defined, the built-in
BINARY collating sequence is used.</p>
</blockquote>
<p>What does a collating sequence do, and what is a BINARY collating sequence?</p>
http://stackoverflow.com/questions/761585/what-does-cms-mean-in-relation-to-javas-garbage-collector2What does CMS mean in relation to Java's Garbage Collector?Andrey Fedorov2009-04-17T18:14:41Z2009-04-28T20:43:23Z
<p>A lot of <a href="http://java.sun.com/javase/technologies/hotspot/gc/gc%5Ftuning%5F6.html#icms.available%5Foptions" rel="nofollow">JVM's command line arguments dealing with the garbage collector</a> have "CMS" prepended to them. What does this stand for?</p>
http://stackoverflow.com/questions/773371/what-is-a-good-tool-for-creating-railroad-diagrams4What is a good tool for creating railroad diagrams?Andrey Fedorov2009-04-21T16:03:17Z2009-04-28T14:46:16Z
<p>I was very impressed by <a href="http://sqlite.org/syntaxdiagrams.html" rel="nofollow">sqlite's syntax diagrams</a> and was wondering if anyone could recommend software which would let me create similar graphs.</p>
http://stackoverflow.com/questions/778307/can-i-have-an-inner-select-inside-of-an-sql-update1Can I have an inner SELECT inside of an SQL UPDATE?Andrey Fedorov2009-04-22T17:21:08Z2009-04-22T17:29:04Z
<p>I have a database like where:</p>
<p>Table <code>foo</code> has columns <code>id</code> and <code>name</code>
Table <code>bar</code> has columns <code>id</code> and <code>foo_id</code></p>
<p>I have an incoming HTTP query with a <code>foo.name</code>, I'd like to insert a row into <code>bar</code> with <code>bar.foo_id</code> set appropriately. So, for example:</p>
<pre><code>> SELECT * FROM foo;
id name
------ -------
1 "Andrey"
(1 row)
> SELECT * FROM bar;
(0 rows)
</code></pre>
<p>Given <code>"Andrey"</code>, is there a single query I can execute to get:</p>
<pre><code>> SELECT * FROM bar;
id foo_id
------ -------
1 1
(1 row)
</code></pre>
<p>I was thinking along the lines of:</p>
<pre><code>> UPDATE bar SET foo_id=(SELECT id FROM foo WHERE foo.name=?)
</code></pre>
<p>But this seems to be wrong, as SELECT's return sets, not values...</p>
http://stackoverflow.com/questions/774475/what-joins-does-sqlite-support1What joins does SQLite support?Andrey Fedorov2009-04-21T20:35:31Z2009-04-22T14:59:45Z
<p>According to <a href="http://sqlite.org/syntaxdiagrams.html#join-op" rel="nofollow">the join-op syntax</a>, SQLite has 13 distinct join statements:</p>
<pre><code>,
JOIN
LEFT JOIN
OUTER JOIN
LEFT OUTER JOIN
INNER JOIN
CROSS JOIN
NATURAL JOIN
NATURAL LEFT JOIN
NATURAL OUTER JOIN
NATURAL LEFT OUTER JOIN
NATURAL INNER JOIN
NATURAL CROSS JOIN
</code></pre>
<p>Are they all unique? Which are equivalent?</p>
http://stackoverflow.com/questions/1860931/what-optimizations-does-a-browser-perform-when-a-dom-element-is-being-rendered-of/1905085#1905085Comment by Andrey Fedorov on What optimizations does a browser perform when a DOM element is being rendered off screen?Andrey Fedorov2009-12-15T17:48:10Z2009-12-15T17:48:10ZCould you source his comment?http://stackoverflow.com/questions/1860931/what-optimizations-does-a-browser-perform-when-a-dom-element-is-being-rendered-ofComment by Andrey Fedorov on What optimizations does a browser perform when a DOM element is being rendered off screen?Andrey Fedorov2009-12-14T20:10:52Z2009-12-14T20:10:52Z@philfreo: sorry abou tthe community wiki, always default to that so people can fix typos, etc.http://stackoverflow.com/questions/1860931/what-optimizations-does-a-browser-perform-when-a-dom-element-is-being-rendered-ofComment by Andrey Fedorov on What optimizations does a browser perform when a DOM element is being rendered off screen?Andrey Fedorov2009-12-14T20:10:18Z2009-12-14T20:10:18Z@philfreo: correcthttp://stackoverflow.com/questions/1860931/what-optimizations-does-a-browser-perform-when-a-dom-element-is-being-rendered-ofComment by Andrey Fedorov on What optimizations does a browser perform when a DOM element is being rendered off screen?Andrey Fedorov2009-12-09T18:36:52Z2009-12-09T18:36:52ZSure. This is part of is an ad-serving system, and I'd like to run a test to see the % of the time an ad is visible to users, to obtain a more accurate sense of their value. This will run in production very shortly, and for a limited number of ads served, so performance isn't very important. Of course, it shouldn't break the page (or iframe) or detract from the user experience in any way.http://stackoverflow.com/questions/61088/hidden-features-of-javascript/116790#116790Comment by Andrey Fedorov on Hidden Features of JavaScript?Andrey Fedorov2009-09-23T16:22:49Z2009-09-23T16:22:49Z@harto: the trick is to use the ternary op to do if-else on expressions. It's really neat that the same language feature that does the equivalent of if can also do if-else without modification.http://stackoverflow.com/questions/1353526/fixing-modwsgi-after-upgrading-to-snow-leopardComment by Andrey Fedorov on Fixing mod_wsgi after upgrading to Snow Leopard.Andrey Fedorov2009-08-30T21:18:49Z2009-08-30T21:18:49ZCompiled mod_wsgi using instructions linked abovehttp://stackoverflow.com/questions/1353526/fixing-modwsgi-after-upgrading-to-snow-leopardComment by Andrey Fedorov on Fixing mod_wsgi after upgrading to Snow Leopard.Andrey Fedorov2009-08-30T21:16:27Z2009-08-30T21:16:27ZApache 2.2.1 from MacPortshttp://stackoverflow.com/questions/1303754/overriding-c-conditional-statements-problemComment by Andrey Fedorov on Overriding C# Conditional statements problemAndrey Fedorov2009-08-20T17:16:21Z2009-08-20T17:16:21Z~more cleanly expressed, that ishttp://stackoverflow.com/questions/1303754/overriding-c-conditional-statements-problemComment by Andrey Fedorov on Overriding C# Conditional statements problemAndrey Fedorov2009-08-20T13:35:10Z2009-08-20T13:35:10Z"a == b ? false : true" is cleaner expressed as "!(a == b)"http://stackoverflow.com/questions/1101613/django-relatedmanagers-create-usage/1133007#1133007Comment by Andrey Fedorov on Django RelatedManager's .create() usage?Andrey Fedorov2009-07-21T02:27:24Z2009-07-21T02:27:24ZThanks for all the help, oggy :)http://stackoverflow.com/questions/1101613/django-relatedmanagers-create-usage/1133007#1133007Comment by Andrey Fedorov on Django RelatedManager's .create() usage?Andrey Fedorov2009-07-21T02:26:28Z2009-07-21T02:26:28ZI was running Django 1.0.2 at the time with MySQL 5.0.81... will reproduce by itself when I get the chance, and file bug report if it's still reproducible. http://stackoverflow.com/questions/1101613/django-relatedmanagers-create-usage/1133007#1133007Comment by Andrey Fedorov on Django RelatedManager's .create() usage?Andrey Fedorov2009-07-20T03:13:05Z2009-07-20T03:13:05Z@oggy: this was a typo, corrected. sorry :-/ what version of Django did you use?http://stackoverflow.com/questions/1101613/django-relatedmanagers-create-usage/1101629#1101629Comment by Andrey Fedorov on Django RelatedManager's .create() usage?Andrey Fedorov2009-07-09T03:43:21Z2009-07-09T03:43:21ZAlso, I'd like to figure out what the bug <i>is</i> rather than work around it (which I did with PlayParticipant.objects.create(...))http://stackoverflow.com/questions/1101613/django-relatedmanagers-create-usage/1101629#1101629Comment by Andrey Fedorov on Django RelatedManager's .create() usage?Andrey Fedorov2009-07-09T03:20:32Z2009-07-09T03:20:32ZMeh, can't as there's an extra field - a note, in the relationship (updated question to include it). Example is identical to: <a href="http://www.djangoproject.com/documentation/models/m2m_intermediary/" rel="nofollow">djangoproject.com/documentation/models/…</a>http://stackoverflow.com/questions/1088431/adding-attributes-into-django-models-meta-class/1088649#1088649Comment by Andrey Fedorov on Adding attributes into Django Model's Meta classAndrey Fedorov2009-07-07T03:17:31Z2009-07-07T03:17:31ZMost likely! :)