User Paul Tarjan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T02:57:27Z http://stackoverflow.com/feeds/user/90025 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1850435/django-several-tables-for-one-model/1850460#1850460 1 Answer by Paul Tarjan for Django: several tables for one model. Paul Tarjan 2009-12-05T00:01:12Z 2009-12-05T00:01:12Z <p>As long as you have an index on your <code>type</code> column and filter on that, it will be about the same speed. When your table gets really big, just shard on the <code>type</code> column and it will be the same performance as doing multiple tables but your app will just see one big table.</p> http://stackoverflow.com/questions/1850443/what-are-the-pros-cons-of-the-various-twitter-api-libraries/1850455#1850455 0 Answer by Paul Tarjan for What are the pros/cons of the various Twitter API libraries? Paul Tarjan 2009-12-04T23:59:37Z 2009-12-04T23:59:37Z <p>I just use <code>urllib2</code> with <code>simplejson</code>. For something like a REST call, a library will usually just get in your way.</p> http://stackoverflow.com/questions/1835755/jquery-see-if-any-boxes-checked/1835776#1835776 0 Answer by Paul Tarjan for jquery see if any boxes checked Paul Tarjan 2009-12-02T21:00:59Z 2009-12-02T21:00:59Z <pre><code>var checked = $("input[type=checkbox]:checked"); </code></pre> http://stackoverflow.com/questions/1831129/pythonic-list-comprehension 1 Pythonic List Comprehension Paul Tarjan 2009-12-02T07:04:47Z 2009-12-02T07:25:12Z <p>This seems like a common task, alter some elements of an array, but my solution didn't feel very pythonic. Is there a better way to build <code>urls</code> with list comprehension?</p> <pre><code>links = re.findall(r"(?:https?://|www\.|https?://www\.)[\S]+", text) if len(links) == 0: return text urls = [] for link in links: if link[0:4] == "www.": link = "http://" + link urls.append(link) </code></pre> <p>Maybe something like</p> <pre><code>links = re.findall(r"(?:https?://|www\.|https?://www\.)[\S]+", text) if len(links) == 0: return text urls = map(lambda x : something(x), links) </code></pre> http://stackoverflow.com/questions/1476514/how-can-i-make-images-so-that-appengine-doesnt-make-transparent-into-black-on-re 1 How can I make images so that appengine doesn't make transparent into black on resize? Paul Tarjan 2009-09-25T10:18:21Z 2009-12-01T08:00:07Z <p>I'm on the google appengine, and trying to resize images. I do :</p> <pre><code>from google.appengine.api import images image = images.resize(contents, w, h) </code></pre> <p>And for some images I get a nice transparent resize, and others I get a black background.</p> <p>How can I keep the transparency for all images?</p> <ul> <li>Original : <a href="http://www.stdicon.com/g-flat/application/pgp-encrypted" rel="nofollow">http://www.stdicon.com/g-flat/application/pgp-encrypted</a></li> <li>Black : <a href="http://www.stdicon.com/g-flat/application/pgp-encrypted?size=64" rel="nofollow">http://www.stdicon.com/g-flat/application/pgp-encrypted?size=64</a></li> <li>Original : <a href="http://www.stdicon.com/gartoon/application/rtf" rel="nofollow">http://www.stdicon.com/gartoon/application/rtf</a> </li> <li>Black : <a href="http://www.stdicon.com/gartoon/application/rtf?size=64" rel="nofollow">http://www.stdicon.com/gartoon/application/rtf?size=64</a></li> <li>Original : <a href="http://www.stdicon.com/nuvola/application/x-debian-package" rel="nofollow">http://www.stdicon.com/nuvola/application/x-debian-package</a></li> <li>Transparent : <a href="http://www.stdicon.com/nuvola/application/x-debian-package?size=64" rel="nofollow">http://www.stdicon.com/nuvola/application/x-debian-package?size=64</a></li> </ul> http://stackoverflow.com/questions/1169327/tools-for-finding-domain-names 2 Tools for finding domain names Paul Tarjan 2009-07-23T02:47:02Z 2009-11-26T04:31:19Z <p>I've built out a pet project of mine, and am now looking for a good domain name for it. Arbitrarily doing whois lookups on ideas that pop into my head seems inefficient.</p> <p>What tools do you use when searching for a good domain name?</p> <p>Some ideas to get the wheels greased :</p> <ul> <li>given a few letters does prefix/suffix/infix searches for available domains</li> <li>suggests other words from a thesaurus</li> <li>shows you short available domains</li> </ul> <p>And of course, another requirement is that the tool isn't shady and quickly registers the domain name while it searches for you.</p> http://stackoverflow.com/questions/1355150/django-when-saving-how-can-you-check-if-a-field-has-changed 2 Django: When saving, how can you check if a field has changed? Paul Tarjan 2009-08-30T22:56:27Z 2009-11-24T23:21:56Z <p>In my model I have :</p> <pre><code>class Alias(MyBaseModel): remote_image = models.URLField(max_length=500, null=True, help_text="A URL that is downloaded and cached for the image. Only used when the alias is made") image = models.ImageField(upload_to='alias', default='alias-default.png', help_text="An image representing the alias") def save(self, *args, **kw): if (not self.image or self.image.name == 'alias-default.png') and self.remote_image : try : data = utils.fetch(self.remote_image) image = StringIO.StringIO(data) image = Image.open(image) buf = StringIO.StringIO() image.save(buf, format='PNG') self.image.save(hashlib.md5(self.string_id).hexdigest() + ".png", ContentFile(buf.getvalue())) except IOError : pass </code></pre> <p>Which works great for the first time the <code>remote_image</code> changes. </p> <p>How can I fetch a new image when someone has modified the <code>remote_image</code> on the alias? And secondly, is there a better way to cache a remote image?</p> http://stackoverflow.com/questions/1777921/website-session-analysis 0 Website Session Analysis Paul Tarjan 2009-11-22T05:37:01Z 2009-11-22T13:11:32Z <p>I'd like to know the best way to deep dive into the flow of my users. For example, I have 4 pages in my flow, how can I analyze which users abandon on which step? I can definitely do it by hand with logging, etc, but I'd rather use an off the shelf solution.</p> <p>I have apache request logs, as well as google analytics. Can these analyze users as sessions?</p> http://stackoverflow.com/questions/1774940/how-to-fetch-querystring-values-without-using-get/1774951#1774951 2 Answer by Paul Tarjan for How to fetch QueryString values without using GET? Paul Tarjan 2009-11-21T08:38:49Z 2009-11-21T08:38:49Z <p>Ummm. <code>$_GET['DivName']</code> should be one piece of your data. Just to note</p> <ul> <li>Don't build the query string yourself. Build a JS array and use a javascript library (I recommend JQuery) to do the QS creation</li> <li>The <code> = </code> shouldn't have spaces</li> <li>Passing an SQLQuery in your params is <em>A BAD IDEA</em>. I will quickly hack your app, the second I see that. Look up little bobby tables.</li> </ul> http://stackoverflow.com/questions/1774899/php-language-barrier-design-problem/1774945#1774945 0 Answer by Paul Tarjan for PHP language barrier design problem Paul Tarjan 2009-11-21T08:36:20Z 2009-11-21T08:36:20Z <p>Documentation problem, not code problem.</p> <p>Leave the FileSystem's methods as public but document that they should only be used by internal File and Directory objects.</p> <p>This is very common in languages. Python has magic methods, or the _function notation, etc.</p> <p>If I'm a user, I don't just look at every available method and start using it if it sounds fun, I read the docs and do what they say.</p> http://stackoverflow.com/questions/1698487/python-appengine-urllib2-headers-from-a-302 0 Python: appengine urllib2 headers from a 302 Paul Tarjan 2009-11-09T00:32:22Z 2009-11-18T15:38:13Z <p>A normal <code>urllib2</code> works fine:</p> <pre><code>&gt;&gt;&gt; import urllib2 &gt;&gt;&gt; r = urllib2.urlopen(u"http://bit.ly/4ovTZw") &gt;&gt;&gt; r.geturl() 'http://www.writing.com/main/handler/action/show_document/item_id/933413.mp3' &gt;&gt;&gt; r.headers.get("Content-Type") 'audio/mpeg' </code></pre> <p>But in appengine, the same code shows <code>text/html</code>.</p> <pre><code>def get(self): r = urllib2.urlopen(u"http://bit.ly/4ovTZw") self.response.out.write( r.geturl() ) self.response.out.write( r.headers.get("Content-Type") ) return </code></pre> <p>Can I get around this? Why is this happening?</p> http://stackoverflow.com/questions/1738788/python-split-unicode-string-on-word-boundaries 4 Python: Split unicode string on word boundaries Paul Tarjan 2009-11-15T20:53:40Z 2009-11-16T23:40:00Z <p>I need to take a string, and shorten it to 140 characters.</p> <p>Currently I am doing:</p> <pre><code>if len(tweet) &gt; 140: tweet = re.sub(r"\s+", " ", tweet) #normalize space footer = "… " + utils.shorten_urls(post['url']) avail = 140 - len(footer) words = tweet.split() result = "" for word in words: word += " " if len(word) &gt; avail: break result += word avail -= len(word) tweet = (result + footer).strip() assert len(tweet) &lt;= 140 </code></pre> <p>So this works great for English, and English like strings, but fails for a Chinese string because <code>tweet.split()</code> just returns one array:</p> <pre><code>&gt;&gt;&gt; s = u"简讯:新華社報道,美國總統奧巴馬乘坐的「空軍一號」專機晚上10時42分進入上海空域,預計約30分鐘後抵達浦東國際機場,開展他上任後首次訪華之旅。" &gt;&gt;&gt; s u'\u7b80\u8baf\uff1a\u65b0\u83ef\u793e\u5831\u9053\uff0c\u7f8e\u570b\u7e3d\u7d71\u5967\u5df4\u99ac\u4e58\u5750\u7684\u300c\u7a7a\u8ecd\u4e00\u865f\u300d\u5c08\u6a5f\u665a\u4e0a10\u664242\u5206\u9032\u5165\u4e0a\u6d77\u7a7a\u57df\uff0c\u9810\u8a08\u7d0430\u5206\u9418\u5f8c\u62b5\u9054\u6d66\u6771\u570b\u969b\u6a5f\u5834\uff0c\u958b\u5c55\u4ed6\u4e0a\u4efb\u5f8c\u9996\u6b21\u8a2a\u83ef\u4e4b\u65c5\u3002' &gt;&gt;&gt; s.split() [u'\u7b80\u8baf\uff1a\u65b0\u83ef\u793e\u5831\u9053\uff0c\u7f8e\u570b\u7e3d\u7d71\u5967\u5df4\u99ac\u4e58\u5750\u7684\u300c\u7a7a\u8ecd\u4e00\u865f\u300d\u5c08\u6a5f\u665a\u4e0a10\u664242\u5206\u9032\u5165\u4e0a\u6d77\u7a7a\u57df\uff0c\u9810\u8a08\u7d0430\u5206\u9418\u5f8c\u62b5\u9054\u6d66\u6771\u570b\u969b\u6a5f\u5834\uff0c\u958b\u5c55\u4ed6\u4e0a\u4efb\u5f8c\u9996\u6b21\u8a2a\u83ef\u4e4b\u65c5\u3002'] </code></pre> <p>How should I do this so it handles I18N? Does this make sense in all languages?</p> <p>I'm on python 2.5.4 if that matters.</p> http://stackoverflow.com/questions/1738788/python-split-unicode-string-on-word-boundaries/1745300#1745300 0 Answer by Paul Tarjan for Python: Split unicode string on word boundaries Paul Tarjan 2009-11-16T22:33:44Z 2009-11-16T23:40:00Z <p>After speaking with some native Cantonese, Mandarin, and Japanese speakers it seems that the correct thing to do is hard, but my current algorithm still makes sense to them in the context of internet posts. </p> <p>Meaning, they are used to the "split on space and add … at the end" treatment.</p> <p>So I'm going to be lazy and stick with it, until I get complaints from people that don't understand it.</p> <p>The only change to my original implementation would be to not force a space on the last word since it is unneeded in any language (and use the unicode character … <code>&amp;#x2026</code> instead of ... <code>three dots</code> to save 2 characters)</p> http://stackoverflow.com/questions/1739185/python-architecture-for-url-polling-and-posting 0 Python: Architecture for url polling and posting Paul Tarjan 2009-11-15T22:58:56Z 2009-11-15T23:08:06Z <p>I have a simple problem. I have to fetch a url (about once a minute), check if there is any new content, and if there is, post it to another url.</p> <p>I have a working system with a cronjob every minute that basically:</p> <pre><code>for link in models.Link.objects.filter(enabled=True).select_related(): # do it in two phases in case there is cross pollination # get posts twitter_posts, meme_posts = [], [] if link.direction == "t2m" or link.direction == "both": twitter_posts = utils.get_twitter_posts(link) if link.direction == "m2t" or link.direction == "both": meme_posts = utils.get_meme_posts(link) # process them if len(twitter_posts) &gt; 0: post_count += views.twitter_link(link, twitter_posts) if len(meme_posts) &gt; 0: post_count += views.meme_link(link, meme_posts) count += 1 msg = "%s links crawled and %s posts updated" % (count, post_count) </code></pre> <p>This works great for the 150 users I have now, but the synchronousness of it scares me. I have url timeouts built-in, but at some point my cronjob will take > 1 minute, and I'll be left with a million of them running overwriting eachother.</p> <p>So, how should I rewrite it?</p> <p>Some issues:</p> <ul> <li>I don't want to hit the APIs too hard incase they block me. So I'd like to have at most 5 open connections to any API at any time.</li> <li>Users keep registering in the system as this runs, so I need some way to add them</li> <li>I'd like this to scale as well as possible</li> <li>I'd like to reuse as much existing code as I can</li> </ul> <p>So, some thoughts I've had:</p> <ul> <li>Spawn a thread for each <code>link</code></li> <li>Use <a href="http://twistedmatrix.com/trac/" rel="nofollow">python-twisted</a> - Keep one running process, that the cronjob just makes sure is running. </li> <li>Use <a href="http://www.stackless.com/" rel="nofollow">stackless</a> - Don't really know much about it.</li> <li>Ask StackOverflow :)</li> </ul> <p>How would you do this?</p> http://stackoverflow.com/questions/1737017/django-autonow-and-autonowadd 0 Django auto_now and auto_now_add Paul Tarjan 2009-11-15T08:47:56Z 2009-11-15T17:19:56Z <p>For Django 1.1. </p> <p>I have this in my models.py:</p> <pre><code>class User(models.Model): created = models.DateTimeField(auto_now_add=True) modified = models.DateTimeField(auto_now=True) </code></pre> <p>When updating a row I get :</p> <pre><code>[Sun Nov 15 02:18:12 2009] [error] /home/ptarjan/projects/twitter-meme/django/db/backends/mysql/base.py:84: Warning: Column 'created' cannot be null [Sun Nov 15 02:18:12 2009] [error] return self.cursor.execute(query, args) </code></pre> <p>the relevant part of my db is:</p> <pre><code> `created` datetime NOT NULL, `modified` datetime NOT NULL, </code></pre> <p>Is this cause for concern?</p> <p>Side question: in my admin tool, those 2 fields aren't showing up. Is that expected?</p> http://stackoverflow.com/questions/1737424/django-debugging-entries-just-disapearing 1 Django: debugging entries just disapearing Paul Tarjan 2009-11-15T12:29:22Z 2009-11-15T16:32:48Z <p>So, I'm pulling my hair out here, and maybe someone has an insight.</p> <p>I have a cronjob that loops over all my <code>Link</code> objects, does some stuff, might change properties on the object and does a <code>save()</code>. That's it.</p> <p>Every so often (around once an hour), one of my rows just disappears. Poof. Nothing in the logs. </p> <p>So, I'm trying to add debugging statements everywhere, but are there any glaring reasons for an entry to disapear? Is the only way to remove an entry by calling <code>delete()</code>?</p> <p>Just any general directions to go would be wonderful, thank you.</p> <p>Some ideas I've had:</p> <ul> <li>git push while the cronjob is running</li> <li>some cascading delete is wiping them out</li> <li>some django method is calling delete on an exception</li> </ul> http://stackoverflow.com/questions/1733006/css-force-image-width-and-height-without-stretching 1 CSS: force image width and height without stretching Paul Tarjan 2009-11-14T02:17:50Z 2009-11-14T02:27:59Z <p>If I have:</p> <pre><code>#logo { width: 400px; height: 200px; } </code></pre> <p>then </p> <pre><code>&lt;img id="logo" src="logo.jpg"/&gt; </code></pre> <p>will stretch to fill that space. I want the image to stay the same size, but for it to take up that much space in the DOM. Do I have to add an encapsulating <code>&lt;div&gt;</code> or <code>&lt;span&gt;</code>? I hate adding markup for styling.</p> http://stackoverflow.com/questions/1713077/python-3-function-list/1713087#1713087 6 Answer by Paul Tarjan for Python 3 Function List Paul Tarjan 2009-11-11T04:50:45Z 2009-11-11T05:23:46Z <p><a href="http://docs.python.org/3.1/" rel="nofollow">http://docs.python.org/3.1/</a></p> <p>If you want search, I usually just use a search engine with</p> <pre><code>python &lt;term&gt; </code></pre> http://stackoverflow.com/questions/1710363/what-do-you-wish-youd-known-about-when-you-started-learning-python/1710383#1710383 19 Answer by Paul Tarjan for What do you wish you'd known about when you started learning Python? Paul Tarjan 2009-11-10T19:03:51Z 2009-11-10T19:13:39Z <p>List comprehension (makes a list cleanly):</p> <pre><code>[x for x in y if x &gt; z] </code></pre> <p>Generator expansion (same as list comprehension but doesn't evaluate until it is used):</p> <pre><code>(x for x in y if x &gt; z) </code></pre> http://stackoverflow.com/questions/1700155/make-a-dom-element-visible-but-dont-take-up-space-on-the-page 2 Make a Dom element visible but don't take up space on the page? Paul Tarjan 2009-11-09T10:18:09Z 2009-11-09T10:22:28Z <p>What CSS will produce an element but the browser won't take it into account for laying out anything else? Is such a thing possible?</p> <p>I want the bird and dog on this page to not affect the centering of the text. <a href="http://twitter-meme.appspot.com/" rel="nofollow">http://twitter-meme.appspot.com/</a></p> <p>Some solutions that I don't like:</p> <ul> <li>Make a single image and set it as background-image. (Then I end up with a big image as a background).</li> <li>Absolutely position the text (Yuck)</li> </ul> http://stackoverflow.com/questions/1257385/javascript-know-when-an-img-is-fully-loaded 3 Javascript: Know when an img is fully loaded Paul Tarjan 2009-08-10T21:44:50Z 2009-11-09T06:07:06Z <p>If I have a beacon :</p> <pre><code>&lt;img src="http://example.com/beacon" /&gt; </code></pre> <p>I want a method to be called once the beacon request finishes. Something like :</p> <pre><code>&lt;script&gt; $("img.beacon").load(function() { // do stuff knowing the beacon is done }); &lt;/script&gt; </code></pre> <p>Is it possible? Is it in JQuery?</p> http://stackoverflow.com/questions/1697501/python-staticmethod-with-property 0 Python: @staticmethod with @property Paul Tarjan 2009-11-08T18:52:31Z 2009-11-08T19:40:34Z <p>I want</p> <pre><code>Stats.singleton.twitter_count += 1 </code></pre> <p>and I thought I could do</p> <pre><code>class Stats: singleton_object = None @property @staticmethod def singleton(): if Stats.singleton_object: return Stats.singleton_object Stats.singleton_object = Stats() return Stats.singleton() </code></pre> <p>But it throws an exception:</p> <pre><code>&gt;&gt;&gt; Stats.singleton.a = "b" Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; TypeError: 'property' object has only read-only attributes (assign to .a) </code></pre> http://stackoverflow.com/questions/1695183/how-to-percent-encode-url-parameters-in-python 2 How to percent-encode url parameters in python? Paul Tarjan 2009-11-08T02:43:45Z 2009-11-08T03:08:02Z <p>If I do </p> <pre><code>url = "http://example.com?p=" + urllib.quote(query) </code></pre> <ol> <li>It doens't encode "/" to "%2F" (breaks OAuth normalization)</li> <li>It doens't handle unicode (it throw an exception)</li> </ol> <p>is there a better library?</p> http://stackoverflow.com/questions/1526965/how-to-deal-with-query-parameters-encoding 1 How to deal with query parameter's encoding? Paul Tarjan 2009-10-06T17:27:51Z 2009-11-04T12:04:37Z <p>I assumed that any data being sent to my parameter strings would be utf-8, since that is what my whole site uses throughout. Lo-and-behold I was wrong.</p> <p>For <a href="http://metaward.com/alias/add?alias=eu.wowarmory.com%2Fcharacter-sheet.xml%3Fr%3DDer%20Rat%20von%20Dalaran%26cn%3DB%C3%A4ule" rel="nofollow">this example</a> has the character <code>ä</code> in utf-8 in the document (from the query string) but proceeds to send a <code>B\xe4ule</code> (which is either ISO-8859-1 or windows 1252) when you click submit. It also fires off a <a href="http://metaward.com/alias/parse?alias=eu.wowarmory.com%2Fcharacter-sheet.xml%3Fr%3DDer+Rat+von+Dalaran%26cn%3DB%C3%A4ule" rel="nofollow">ajax request</a> which also fails from trying to decode the non-utf8 character.</p> <p>An in django, my request.POST is really screwed up :</p> <pre><code>&gt;&gt;&gt; print request.POST &lt;QueryDict: {u'alias': [u'eu.wowarmory.com/character-sheet.xml?r=Der Rat von Dalaran&amp;cn=B\ufffde']}&gt; </code></pre> <p>How can I just make all these headaches go away and work in utf8?</p> http://stackoverflow.com/questions/1666706/how-to-address-an-issue-while-sourcing-an-env-file-in-bash/1666726#1666726 1 Answer by Paul Tarjan for How to address an issue while sourcing an env file in bash ? Paul Tarjan 2009-11-03T11:23:28Z 2009-11-03T11:23:28Z <p>Do you mean to set <code>MAG_ROOT</code> or <code>MY_ROOT</code>?</p> http://stackoverflow.com/questions/1666415/python-oauth-library 0 Python: OAuth Library Paul Tarjan 2009-11-03T10:14:01Z 2009-11-03T10:28:23Z <p>Is there a full flegged python library for oauth? I haven't found any that handle reissuing of oauth tokens once they expire (Step 5 on the <a href="http://developer.yahoo.com/oauth/guide/oauth-auth-flow.html" rel="nofollow">Yahoo OAuth flow</a>).</p> <p>So what is the most complete? I tried the one from <a href="http://oauth.googlecode.com/svn/code/python/oauth/" rel="nofollow">oauth.net</a>, and it doesn't handle <code>oauth_session_handle</code> which the oauth spec says is required if the endpoint returns it (like yahoo does).</p> <p>So, what library should I be using? Are they all incomplete and I have to do it on my own?</p> http://stackoverflow.com/questions/1512926/how-to-access-yql-in-python-django/1665320#1665320 0 Answer by Paul Tarjan for How to access YQL in Python (Django)? Paul Tarjan 2009-11-03T04:53:10Z 2009-11-03T04:53:10Z <p>If you only are accessing public data you can just make a direct rest call from python.</p> <pre><code>&gt;&gt;&gt; import urllib2 &gt;&gt;&gt; result = urllib2.urlopen("http://query.yahooapis.com/v1/public/yql?q=select%20title%2Cabstract%20from%20search.web%20where%20query%3D%22paul%20tarjan%22&amp;format=json").read() &gt;&gt;&gt; print result[:100] {"query":{"count":"10","created":"2009-11-03T04:47:01Z","lang":"en-US","updated":"2009-11-03T04:47:0 </code></pre> <p>And then you can parse the result with simplejson.</p> <pre><code>&gt;&gt;&gt; import simplejson &gt;&gt;&gt; data = simplejson.loads(result) &gt;&gt;&gt; data['query']['results']['result'][0]['title'] u'&lt;b&gt;Paul&lt;/b&gt; &lt;b&gt;Tarjan&lt;/b&gt; - Silicon Valley, CA | Facebook' </code></pre> http://stackoverflow.com/questions/1656048/python-lazy-string-decoding 1 Python: Lazy String Decoding Paul Tarjan 2009-11-01T00:49:49Z 2009-11-02T00:12:39Z <p>I'm writing a parser, and there is LOTS of text to decode but most of my users will only care about a few fields from all the data. So I only want to do the decoding when a user actually uses some of the data. Is this a good way to do it?</p> <pre><code>class LazyString(str): def __init__(self, v) : self.value = v def __str__(self) : r = "" s = self.value for i in xrange(0, len(s), 2) : r += chr(int(s[i:i+2], 16)) return r def p_buffer(p): """buffer : HASH chars""" p[0] = LazyString(p[2]) </code></pre> <p>Is that the only method I need to override?</p> http://stackoverflow.com/questions/1640723/standard-way-to-include-javascript-library-from-javascript 1 Standard way to include javascript library from javascript. Paul Tarjan 2009-10-28T23:11:22Z 2009-11-01T00:52:04Z <p>I'd like to pull in the jquery library from my javscript include.</p> <p>Does this work 100% of the time? Is there a better way?</p> <pre><code>(function() { var loadJquery = function (cb) { var addLibs = function () { if (typeof(document.body) == "undefined" || document.body === null) { setTimeout(addLibs, 100); return; } var node = document.createElement("script"); node.src = "http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js"; document.body.appendChild(node); checkLib(); }; var checkLib = function () { if (typeof($) == "undefined" || $("*") === null) { setTimeout(checkLib, 100); return; } cb($.noConflict()); } addLibs(); } loadJquery(function($){ // Do stuff with $ $(document.body).css("background", "black"); }); })(); </code></pre> <p>Change the <code>node.src</code> and <code>$.noConflict</code> to <code>YUI</code> if you want YUI3, or <code>YAHOO</code> if you're YUI2, etc.</p> http://stackoverflow.com/questions/1640723/standard-way-to-include-javascript-library-from-javascript/1656053#1656053 0 Answer by Paul Tarjan for Standard way to include javascript library from javascript. Paul Tarjan 2009-11-01T00:52:04Z 2009-11-01T00:52:04Z <p>From posting on our internal mailing lists at work, I was pointed to this:</p> <p>There are many cross-browser edge cases involved in dynamically injecting scripts. If rolling the YUI 3 seed file into your script isn't an option and if you can't depend on the property to already have the YUI 3 seed loaded, I'd recommend using LazyLoad (shameless plug) to bootstrap your script: <a href="http://github.com/rgrove/lazyload/" rel="nofollow">http://github.com/rgrove/lazyload/</a></p> <p>You can merge lazyload.js into your script, then use something like this to load the YUI 3 seed if it's not already on the page:</p> <pre><code>(function () { function init() { YUI().use('node', function (Y) { // ... do my stuff ... }); } if (YUI) { init(); } else { LazyLoad.js('http://yui.yahooapis.com/3.0.0/build/yui/yui-min.js', init); } })(); </code></pre> http://stackoverflow.com/questions/1850443/what-are-the-pros-cons-of-the-various-twitter-api-libraries/1850455#1850455 Comment by Paul Tarjan on What are the pros/cons of the various Twitter API libraries? Paul Tarjan 2009-12-05T01:42:27Z 2009-12-05T01:42:27Z simplicity and the ability to handle errors your own way. you don't have to go learn a library, you can just do web calls like you normally do. http://stackoverflow.com/questions/1831129/pythonic-list-comprehension/1831146#1831146 Comment by Paul Tarjan on Pythonic List Comprehension Paul Tarjan 2009-12-02T08:34:23Z 2009-12-02T08:34:23Z My regex will not grab stackoverflow.com but will grab <a href="http://stackoverflow.com" rel="nofollow">stackoverflow.com</a> perfectly fine (and won't do the prefix). http://stackoverflow.com/questions/1831129/pythonic-list-comprehension Comment by Paul Tarjan on Pythonic List Comprehension Paul Tarjan 2009-12-02T08:32:51Z 2009-12-02T08:32:51Z then I have no way of figuring out it is a URL. I guess I could check for all the TLDs but even then I'm a little scared of that. http://stackoverflow.com/questions/1831129/pythonic-list-comprehension/1831145#1831145 Comment by Paul Tarjan on Pythonic List Comprehension Paul Tarjan 2009-12-02T07:11:17Z 2009-12-02T07:11:17Z you won't include links that already start with <code>http:&#47;&#47;</code> http://stackoverflow.com/questions/1777921/website-session-analysis/1778656#1778656 Comment by Paul Tarjan on Website Session Analysis Paul Tarjan 2009-11-23T02:51:28Z 2009-11-23T02:51:28Z If you want to see the flow, it is at <a href="http://twitter-meme.com" rel="nofollow">twitter-meme.com</a> http://stackoverflow.com/questions/1777921/website-session-analysis/1778656#1778656 Comment by Paul Tarjan on Website Session Analysis Paul Tarjan 2009-11-23T02:50:54Z 2009-11-23T02:50:54Z My flow is: (/, 200) (/twitter, 302) <a href="http://twitter.com" rel="nofollow">twitter.com</a> (/twitter/callback, 302) (/meme, 302) <a href="http://meme.yahoo.com" rel="nofollow">meme.yahoo.com</a> (/meme/callback, 302) (/done, 302) (/panel, 200). So there are really only 2 pages that are 200s. I want to know when /twitter/callback fails, or how often people don't come back from <a href="http://twitter.com" rel="nofollow">twitter.com</a> . Can I serve something even when I'm 302ing users? http://stackoverflow.com/questions/1777921/website-session-analysis/1778656#1778656 Comment by Paul Tarjan on Website Session Analysis Paul Tarjan 2009-11-22T16:10:45Z 2009-11-22T16:10:45Z Thank you. One problem is that my flow is doing two OAuths, which just 302 my users to external pages and don't load the analytics. Can I make a call on the server to google analytics to still record these? http://stackoverflow.com/questions/1774151/what-jquery-plugin-will-do-this-wordpress-like-effect Comment by Paul Tarjan on What jQuery plugin will do this Wordpress-like effect? Paul Tarjan 2009-11-21T01:18:35Z 2009-11-21T01:18:35Z link to example? http://stackoverflow.com/questions/1738788/python-split-unicode-string-on-word-boundaries/1738833#1738833 Comment by Paul Tarjan on Python: Split unicode string on word boundaries Paul Tarjan 2009-11-16T23:40:59Z 2009-11-16T23:40:59Z I really don't want to train an NLP solution for word break discovery. I'm sure someone did this already, and just want a pre-boxed wordbreak splitter. http://stackoverflow.com/questions/1738788/python-split-unicode-string-on-word-boundaries/1745334#1745334 Comment by Paul Tarjan on Python: Split unicode string on word boundaries Paul Tarjan 2009-11-16T22:51:55Z 2009-11-16T22:51:55Z Right, but &quot;whitespace&quot; in english means word seperators, where as there is no word separators in chinese, only whitespace as sentence seperators. http://stackoverflow.com/questions/1739185/python-architecture-for-url-polling-and-posting/1739214#1739214 Comment by Paul Tarjan on Python: Architecture for url polling and posting Paul Tarjan 2009-11-16T01:39:22Z 2009-11-16T01:39:22Z You've sure covered the gambit of technologies for me. Thanks! Here's a nice green checkmark. http://stackoverflow.com/questions/1739185/python-architecture-for-url-polling-and-posting/1739214#1739214 Comment by Paul Tarjan on Python: Architecture for url polling and posting Paul Tarjan 2009-11-16T01:17:03Z 2009-11-16T01:17:03Z is <code>queue</code> better than <code>collections.deque</code> for this? And if my threads write state to the database (getting a new oauth token, etc) is that bad? Should I queue that operation (major refactor)? http://stackoverflow.com/questions/1739185/python-architecture-for-url-polling-and-posting/1739214#1739214 Comment by Paul Tarjan on Python: Architecture for url polling and posting Paul Tarjan 2009-11-16T00:58:40Z 2009-11-16T00:58:40Z Good point. It is only 2 different sources sadly, so I fear I'll get blocked by them if I add too many threads. Looks like I'm nearing my performance limitations... http://stackoverflow.com/questions/1739185/python-architecture-for-url-polling-and-posting/1739214#1739214 Comment by Paul Tarjan on Python: Architecture for url polling and posting Paul Tarjan 2009-11-16T00:31:12Z 2009-11-16T00:31:12Z Ok thank you. Doing it, it still looks like my biggest blocker in IO connections (95% of my time is in the <code>read()</code> of a socket, and 4% is <code>connect()</code>). Would some sort of persistent connection help? If so, any implementation recommendation? http://stackoverflow.com/questions/1738788/python-split-unicode-string-on-word-boundaries/1738898#1738898 Comment by Paul Tarjan on Python: Split unicode string on word boundaries Paul Tarjan 2009-11-15T21:38:18Z 2009-11-15T21:38:18Z thanks. I added a check if there are no word boundaries. For english strings this is working great, but for my chinese example (double it to make it long) I end up with a string that is 137 chars long, not 140. <code>len(shorten(s&#42;2, &quot;... end&quot;))</code>