User a paid nerd - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T13:53:39Z http://stackoverflow.com/feeds/user/102704 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1795438/load-and-execution-sequence-of-a-web-page/1795553#1795553 0 Answer by a paid nerd for Load and execution sequence of a web page? a paid nerd 2009-11-25T09:00:07Z 2009-11-25T09:00:07Z <p>If you're asking this because you want to speed up your web site, check out Yahoo's page on <a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">Best Practices for Speeding Up Your Web Site</a>. It has a lot of best practices for speeding up your web site.</p> http://stackoverflow.com/questions/1795362/close-browser-totally/1795541#1795541 0 Answer by a paid nerd for close browser totally a paid nerd 2009-11-25T08:56:52Z 2009-11-25T08:56:52Z <p>If each SSO site is given its own cookie, you may need to log the user out of each SSO site individually. Hopefully each site has its own "log me out" URL and you can open a page with multiple <code>iframe</code>s to each SSO site.</p> http://stackoverflow.com/questions/1793305/how-do-i-fix-the-perl-syntax-error-missing-right-curly-or-square-bracket-using/1795503#1795503 4 Answer by a paid nerd for How do I fix the perl syntax error "missing right curly or square bracket" using VIM? a paid nerd 2009-11-25T08:48:40Z 2009-11-25T08:48:40Z <p>I constantly use <a href="http://perltidy.sourceforge.net/" rel="nofollow">perltidy</a> to reformat my code. When I reformat code that's missing a terminator, further code indents strangely and I can quickly trace upward to locate the problem.</p> <p><em>Bonus</em>: I use this mapping to instantly reformat the file and not lose the cursor position:</p> <pre><code>nmap \g mt:%!perltidy&lt;CR&gt;'t </code></pre> http://stackoverflow.com/questions/1655844/what-are-some-good-plugins-for-developing-java-in-vim/1795469#1795469 4 Answer by a paid nerd for What are some good plugins for developing Java in VIM? a paid nerd 2009-11-25T08:37:45Z 2009-11-25T08:37:45Z <p>Don't write Java in Vim — put Vim inside a Java IDE:</p> <ul> <li><a href="http://ideavim.sourceforge.net/" rel="nofollow">IdeaVIM</a> for IntelliJ</li> <li><a href="http://www.viplugin.com/" rel="nofollow">viPlugin</a> or <a href="http://eclim.org/" rel="nofollow">Eclim</a> for Eclipse</li> <li><a href="http://jvi.sourceforge.net/" rel="nofollow">jVi</a> or <a href="http://viex.sourceforge.net/" rel="nofollow">ViEx</a> for NetBeans</li> </ul> <p>I love Vim, but using an IDE for Java is the only way to stay sane. A decent Java IDE will:</p> <ul> <li>Show invalid syntax or type errors</li> <li>Show missing JavaDoc</li> <li>Manage <code>import</code> statements for you</li> <li>Highlight unused methods and variables</li> <li>Safely perform powerful refactorings such as moving methods or renaming classes -- (no, search and replace doesn't cut it, I promise)</li> <li>Reformat your code automatically or on-demand</li> </ul> <p>Vim can't do the above, but you can use all the Vim keybindings in a program which does.</p> http://stackoverflow.com/questions/747665/how-to-resolve-normalize-urls-in-gwt-javascript/1795394#1795394 0 Answer by a paid nerd for how to resolve/normalize URLs in GWT/Javascript? a paid nerd 2009-11-25T08:12:32Z 2009-11-25T08:12:32Z <p>I've used Closure's <a href="http://closure-library.googlecode.com/svn/trunk/closure/goog/docs/class%5Fgoog%5FUri.html" rel="nofollow">Uri class</a> to do this, which has a <code>resolve()</code> method. If you linked that in you could use GWT's <a href="http://googlewebtoolkit.blogspot.com/2008/07/getting-to-really-know-gwt-part-1-jsni.html" rel="nofollow">JavaScript Native Interface</a> (JSNI) to write a native JavaScript method -- probably something like:</p> <pre><code>native String resolve(String base, String relative) /*-{ var baseUri = goog.Uri.parse(base); var relativeUri = goog.Uri.parse(relative); return baseUri.resolve(relativeUri).toString(); }-*/; </code></pre> http://stackoverflow.com/questions/1746548/python-in-vim-buffer/1746632#1746632 7 Answer by a paid nerd for Python in Vim buffer? a paid nerd 2009-11-17T04:42:31Z 2009-11-17T04:42:31Z <p>No, you can't run a shell in Vim by default. That's by design.</p> <p>However, there are a handful of ways to accomplish this:</p> <ul> <li><a href="http://www.gnu.org/software/screen/" rel="nofollow">GNU Screen</a> and using windows</li> <li>The <a href="http://www.wana.at/vimshell/" rel="nofollow">Vim-Shell</a> patch</li> <li>Vim scripts like <a href="http://www.vim.org/scripts/script.php?script%5Fid=2771" rel="nofollow">Conque</a></li> </ul> http://stackoverflow.com/questions/1738788/python-split-unicode-string-on-word-boundaries/1745367#1745367 0 Answer by a paid nerd for Python: Split unicode string on word boundaries a paid nerd 2009-11-16T22:49:44Z 2009-11-16T22:49:44Z <p>Save two characters and use an elipsis (<code>…</code>, <a href="http://www.fileformat.info/info/unicode/char/2026/index.htm" rel="nofollow">0x2026</a>) instead of three dots!</p> http://stackoverflow.com/questions/1744464/how-to-check-which-images-css-javascript-are-used-in-web-app/1745352#1745352 0 Answer by a paid nerd for How to check which images/css/javascript are used in web app? a paid nerd 2009-11-16T22:47:01Z 2009-11-16T22:47:01Z <p>If your goal is to speed up your page-loading time, WARI seems like it would certainly help you reduce the data required to load your page.</p> <p>However, I suggest that you go a step further -- take <a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">Yahoo!'s advice</a> and <a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">minimize the number of HTTP requests</a>:</p> <blockquote> <ul> <li><strong>Combined files</strong> are a way to reduce the number of HTTP requests by combining all scripts into a single script, and similarly combining all CSS into a single stylesheet. Combining files is more challenging when the scripts and stylesheets vary from page to page, but making this part of your release process improves response times.</li> <li><strong>CSS Sprites</strong> are the preferred method for reducing the number of image requests. Combine your background images into a single image and use the CSS background-image and background-position properties to display the desired image segment.</li> <li><strong>Inline images</strong> use the <code>data:</code> URL scheme to embed the image data in the actual page. This can increase the size of your HTML document. Combining inline images into your (cached) stylesheets is a way to reduce HTTP requests and avoid increasing the size of your pages. Inline images are not yet supported across all major browsers.</li> </ul> </blockquote> http://stackoverflow.com/questions/1732452/django-ease-of-building-a-restful-interface/1732520#1732520 5 Answer by a paid nerd for Django ease of building a RESTful interface a paid nerd 2009-11-13T23:20:36Z 2009-11-13T23:20:36Z <p>This is probably pretty easy to do.</p> <p>URL mappings are easy to construct, for example:</p> <pre><code>urlpatterns = patterns('books.views', (r'^books/$', 'index'), (r'^books/(\d+)/$', 'get')) </code></pre> <p>Django supports <a href="http://docs.djangoproject.com/en/dev/topics/serialization/" rel="nofollow">model serialization</a>, so it's easy to turn models into XML:</p> <pre><code>from django.core import serializers from models import Book data = serializers.serialize("xml", Book.objects.all()) </code></pre> <p>Combine the two with <a href="http://www.ibm.com/developerworks/linux/library/l-cpdecor.html" rel="nofollow">decorators</a> and you can build fast, quick handlers:</p> <pre><code>from django.http import HttpResponse from django.shortcuts import get_object_or_404 def xml_view(func): def wrapper(*args, **kwargs): result = func(*args, **kwargs) return HttpResponse(serializers.serialize("xml", result), mimetype="text/xml") return wrapper @xml_view def index(request): return Books.objects.all() @xml_view def get(request, id): return get_object_or_404(Book, pk=id) </code></pre> http://stackoverflow.com/questions/1732234/the-correct-caseformat-of-variable-and-methods-and-for-python/1732352#1732352 -1 Answer by a paid nerd for The correct case&format of variable and methods and for Python a paid nerd 2009-11-13T22:39:12Z 2009-11-13T22:39:12Z <p>Seven words: <a href="http://code.google.com/p/soc/wiki/PythonStyleGuide" rel="nofollow">Google Summer of Code Python Style Guide</a></p> <blockquote> <p><em>Note that some naming conventions differ from PEP8 and instead follow the original Google Python Style guide from which this style guide originated.</em></p> <ul> <li>"Internal" means internal to a module or protected or private within a class. Prepending a single underscore (_) has some support for protecting module variables and functions (not included with import * from).</li> <li>Prepending a double underscore (__) to an instance variable or method effectively serves to make the variable or method private to its class (using name mangling).</li> <li>Place related classes and top-level functions together in a module. Unlike Java, there is no need to limit yourself to one class per module. However, make sure the classes and top-level functions in the same module have high cohesion.</li> <li>Use CapWords for class names, but lower_with_under.py for module names.</li> </ul> <p><strong>Naming examples</strong></p> <ul> <li>Packages: <code>lower_with_under</code></li> <li>Modules: <code>lower_with_under</code>, <code>_lower_with_under</code></li> <li>Classes: <code>CapWords,</code> <code>_CapWords</code></li> <li>Exceptions: <code>CapWords</code> </li> <li>Functions: <code>firstLowerCapWords()</code>, <code>_firstLowerCapWords()</code></li> <li>Global/Class Constants: <code>CAPS_WITH_UNDER</code>, <code>_CAPS_WITH_UNDER</code></li> <li>Global/Class Variables: <code>lower_with_under</code>, <code>_lower_with_under</code></li> <li>Instance Variables: <code>lower_with_under</code>, <code>_lower_with_under</code> (protected) or <code>__lower_with_under</code> (private)</li> <li>Method Names: <code>firstLowerCapWords()</code>, <code>_firstLowerCapWords()</code> (protected) or <code>__firstLowerCapWords()</code> (private)</li> <li>Function/Method Parameters: <code>lower_with_under</code> </li> <li>Local Variables: <code>lower_with_under </code></li> </ul> </blockquote> http://stackoverflow.com/questions/1731089/how-do-i-get-started-writing-a-module-for-cpan/1732114#1732114 4 Answer by a paid nerd for How do I get started writing a module for CPAN? a paid nerd 2009-11-13T21:44:24Z 2009-11-13T21:44:24Z <ul> <li><p><a href="http://rjbs.manxome.org/" rel="nofollow">Ricardo Signes</a> is a pretty prolific module author, and he often writes tools to make module creating as easy as possible. His modules are usually pretty up to date and he seems to stick with the most <em>modern</em> approaches to creating a CPAN distribution, so his distributions are probably good examples. He seems to use <a href="http://search.cpan.org/perldoc?Dist%3A%3AZilla" rel="nofollow"><code>Dist::Zilla</code></a> for managing and uploading his distributions.</p></li> <li><p>Check out <a href="http://search.cpan.org/perldoc?Module%3A%3AStarter" rel="nofollow"><code>Module::Starter</code></a> module which generates useful boilerplate to help with the creation of a modern Perl module.</p></li> <li><p><strong>Write tests!</strong> Check out the <a href="http://qa.perl.org/" rel="nofollow">Perl Quality Assurance Projects page</a>. It's a bit outdated, but it has some great links to quality reading material.</p></li> <li><p>Check out <a href="http://cpants.perl.org/" rel="nofollow">CPANTS, the CPAN Testing Service</a></p></li> <li><p>After you've read up on the best tools to create modules, get an account on <a href="http://pause.perl.org/" rel="nofollow">PAUSE</a>, which allows you to manage your distributions on the CPAN.</p></li> <li><p>Join the <code>#perl</code> IRC chat channel on <code>irc.perl.org</code>. Only about half of the discussion is actually about Perl, but a lot of module authors hang out there and you can learn a lot.</p></li> </ul> http://stackoverflow.com/questions/1725812/limiting-intellij-idea-import-suggestions-on-completion 1 Limiting IntelliJ IDEA import suggestions on completion a paid nerd 2009-11-12T22:19:48Z 2009-11-12T22:51:47Z <p>When I type the name of a class which will need to be imported, IntelliJ lovingly pops up with a list of suggestions. However, most of the time those suggestions are things I'd never want to import, especially by accident -- like <code>java.awt.*</code>.</p> <p>Is there a way to prevent the packages I'll never import from appearing in the completion list?</p> <p>I've scoured the options but I haven't found anything.</p> http://stackoverflow.com/questions/1725097/how-can-i-disable-terminal-polling-for-cpan-used-from-crontab/1725518#1725518 0 Answer by a paid nerd for How can I disable terminal-polling for cpan used from crontab? a paid nerd 2009-11-12T21:24:36Z 2009-11-12T21:24:36Z <blockquote> <p>The COLUMNS and LINES environment variables didn't work.</p> </blockquote> <p>Try setting the <code>COLUMNS</code> and <code>LINES</code> environment variables.</p> <pre><code>COLUMNS=80 LINES=24 @daily cpan -i $(cpanp -o | perl -lane 'print $F[3]') </code></pre> http://stackoverflow.com/questions/1710520/which-multilingual-web-design-solution-is-fastest-for-the-user-if-this-is-indeed/1724839#1724839 1 Answer by a paid nerd for Which multilingual web design solution is fastest for the user, if this is indeed an issue? a paid nerd 2009-11-12T19:41:20Z 2009-11-12T19:41:20Z <ul> <li><p>Offer the initial page in a language depending on the <code>Accept-Language</code> HTTP header.</p></li> <li><p>Let the user set the language in the current session and, if they're authenticated, in their user profile.</p></li> <li><p>In your code and templates, mark strings as "translatable." You should have tools that gather all the strings from your codebase and let your translaters translate them.</p></li> <li><p>Have a layer which loads the translations from the database either individually or as a bundle, and apply them to the page which is loading. Cache these parts to make them fast -- every page load shouldn't make a hundred calls to the database for every translatable string.</p></li> </ul> <p>Checkout <a href="http://docs.djangoproject.com/en/dev/topics/i18n/" rel="nofollow">how Django does it</a> -- it should be enlightening.</p> http://stackoverflow.com/questions/1724234/prefered-javascript-editor-for-mac/1724705#1724705 1 Answer by a paid nerd for Prefered Javascript editor for Mac? a paid nerd 2009-11-12T19:23:38Z 2009-11-12T19:23:38Z <p><a href="http://www.vim.org" rel="nofollow">Vim</a> is great but requires a plugin to get indenting correct. See <a href="http://stackoverflow.com/questions/1201509/how-do-i-make-vim-indent-javascript-in-html">http://stackoverflow.com/questions/1201509/how-do-i-make-vim-indent-javascript-in-html</a></p> http://stackoverflow.com/questions/1724634/tracing-mouse-clicks-on-website/1724698#1724698 1 Answer by a paid nerd for tracing mouse clicks on website a paid nerd 2009-11-12T19:22:32Z 2009-11-12T19:22:32Z <ul> <li><p>For tracking outbound clicks, services like <a href="http://www.google.com/analytics/" rel="nofollow">Google Analytics</a> can wrap every link on your site with JavaScript and provide statistics and sexy graphs.</p></li> <li><p>For tracking email attachments, it depends on the attachment. Static files like images can't make callbacks to the Internet, but something like a PDF with embedded JavaScript might be able to.</p></li> <li><p>As for links within the emails, you can make each link in each email unique by associating a token with each email recipient, e.g. <code>&lt;a href="http://mysite/page?referrer=e635f56f7dea051c1838a443e065899a"&gt;Some Link&lt;/a&gt;</code>. Store the token in a database along with the recipient's email address and later you can cross-reference hits on your site with emails you sent out.</p></li> </ul> <p>I know there are a handful services that do the latter, but I can't name any offhand. Search for "email newsletter service."</p> http://stackoverflow.com/questions/1713813/how-to-pass-variables-into-inline-functions-in-action-script-2/1719461#1719461 0 Answer by a paid nerd for How to pass variables into inline functions in Action Script 2 a paid nerd 2009-11-12T02:10:07Z 2009-11-12T02:10:07Z <p>Try declaring <code>myVar</code> with the <code>var</code> keyword:</p> <pre><code>var myVar = "hello computer"; </code></pre> http://stackoverflow.com/questions/1719267/do-small-memory-leaks-matter-anymore/1719403#1719403 3 Answer by a paid nerd for Do Small Memory Leaks Matter Anymore? a paid nerd 2009-11-12T01:57:12Z 2009-11-12T01:57:12Z <blockquote> <p><strong>Are memory leaks ever ok?</strong></p> </blockquote> <p>Sure, if it's a short-lived process.</p> <p>Memory leaks over a long period of time are, as the 85-point answer implies, problematic. Take a simple desktop app, for example -- prior to versions 3.x, did you ever notice how you needed it reboot Firefox after a while to recover it from sluggishness?</p> <p>As for the short term, no, it doesn't matter. Take CGI or PHP scripts for example, or the little Perl three-liner in your <code>~/bin</code> directory. Nobody's going to call the memory police if you write a 30-line non-looping application in C with 5 lines of <code>malloc()</code> and not a single call to <code>free()</code>.</p> http://stackoverflow.com/questions/1717425/im-starting-an-opensource-project-any-advice/1717519#1717519 2 Answer by a paid nerd for I'm starting an opensource project. Any advice? a paid nerd 2009-11-11T19:34:47Z 2009-11-11T19:46:41Z <ul> <li><p>Strive for adoption. The more users you get, the more people will contribute back.</p></li> <li><p>Include lots of code samples on the wiki and let users download a sample application.</p></li> <li><p>Make sure your API is well-documented with <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=asdoc%5F1.html" rel="nofollow">ASDoc</a>.</p></li> <li><p>Provide a roadmap to so that potential users can see your direction and intentions.</p></li> <li><p>Be diligent about prioritizing feature requests and bugs. You and your team don't have time to do everything.</p></li> <li><p>Make integration as seamless as possible. Hopefully users will be able to simply download a <code>.swc</code> (Flash library) and link it into their application.</p></li> <li><p>Release early, release often. I <em>hate</em> having to download and use the HEAD revision from a repository because a team has only officially released one version of their project and it's a year old.</p></li> </ul> http://stackoverflow.com/questions/1716759/software-to-increase-productivity/1717165#1717165 6 Answer by a paid nerd for Software to increase productivity a paid nerd 2009-11-11T18:23:35Z 2009-11-11T18:23:35Z <p>Sometimes the <em>lack of software</em> increases productivity. Close any browser tabs containing Google Reader, Reddit, Digg, Slashdot, and close any IRC sessions. Productivity increases tenfold. ;-)</p> http://stackoverflow.com/questions/1717087/looking-for-inspiration-how-can-jquery-be-truly-useful/1717136#1717136 1 Answer by a paid nerd for Looking for Inspiration: How can jQuery be truly useful? a paid nerd 2009-11-11T18:19:04Z 2009-11-11T18:19:04Z <p>Try rewriting some parts of your existing JavaScript codebase using it. Pick a particular hairy one involving element traversal and/or events.</p> http://stackoverflow.com/questions/1716979/are-sql-injection-attacks-only-a-threat-on-a-page-that-has-a-form/1717007#1717007 1 Answer by a paid nerd for Are sql injection attacks only a threat on a page that has a form? a paid nerd 2009-11-11T18:00:56Z 2009-11-11T18:00:56Z <p>Also consider preventing against <a href="http://www.google.com/search?hl=en&amp;q=cross+site+scripting" rel="nofollow"><strong>cross-site-scripting ("XSS")</strong></a>.</p> http://stackoverflow.com/questions/1716946/strange-decorator-result-on-related-object-comparison/1716986#1716986 1 Answer by a paid nerd for Strange decorator result on related object comparison a paid nerd 2009-11-11T17:58:31Z 2009-11-11T17:58:31Z <p>Replace <code>is not</code> with <code>!=</code>.</p> <p><code>not loja</code> is evaluating to <code>True</code>, and the if statement is testing the equality between <code>objecto.loja</code> and <code>True</code>.</p> http://stackoverflow.com/questions/1716869/untrusted-templates-in-python-what-is-a-safe-library-to-use/1716919#1716919 3 Answer by a paid nerd for Untrusted templates in Python - what is a safe library to use? a paid nerd 2009-11-11T17:49:00Z 2009-11-11T17:49:00Z <p>From the <a href="http://www.djangobook.com/en/2.0/chapter04/" rel="nofollow">Django book</a>:</p> <blockquote> <p>For that reason, it’s impossible to call Python code directly within Django templates. All “programming” is fundamentally limited to the scope of what template tags can do. It is possible to write custom template tags that do arbitrary things, but the <strong>out-of-the-box Django template tags intentionally do not allow for arbitrary Python code execution.</strong></p> </blockquote> <p>Give <a href="http://docs.djangoproject.com/en/dev/contents/" rel="nofollow">Django templates</a> a try. It's a little tricky to set up outside of a Django app -- something to do with <code>DJANGO_SETTINGS_MODULE</code>, search around -- but may be trusted.</p> http://stackoverflow.com/questions/1711789/including-html-fragments-in-a-page-methods/1711884#1711884 0 Answer by a paid nerd for Including HTML fragments in a page - methods? a paid nerd 2009-11-10T23:05:24Z 2009-11-10T23:05:24Z <p>This sounds similar to what Facebook Platform applications do. One kind simply uses <code>IFRAME</code>s, the other takes output from a backend and transforms it -- <code>&lt;fb:whatever&gt;</code> elements are expanded, JavaScript executed, and things like buttons are skinned. You could look at them for an example.</p> <p>Using <code>IFRAME</code>s would probably make things complicated. By default you cannot modify styles inside them from the outer frames, but you could probably use something like <a href="http://closure-library.googlecode.com/svn/trunk/closure/goog/docs/class%5Fgoog%5Fnet%5FIframeIo.html" rel="nofollow">Google Closure's net.IframeIo</a> to work around that.</p> <p>I would try loading widgets using <a href="http://www.rockstargirl.org/sandbox/bidynodes/" rel="nofollow">cross-domain scripting</a>. Then you can add the widget's content to the page, however you wish, such as inserting it into the DOM. </p> http://stackoverflow.com/questions/1703364/subversion-whitespace-removal-commit-hook 0 Subversion whitespace-removal commit hook a paid nerd 2009-11-09T19:59:20Z 2009-11-09T20:26:04Z <p>Jeff Atwood <a href="http://www.codinghorror.com/blog/archives/001310.html" rel="nofollow">wrote about</a> whitespace and suggested creating commit hook which removes trailing whitespace at the ends of lines and files.</p> <p>I've searched, but I haven't found a clear example of using a <code>pre-commit</code> hook to modify files like this. Do you have a script which you'd like to share?</p> http://stackoverflow.com/questions/842338/how-do-i-tell-zsh-to-write-the-current-shells-history-to-my-history-file 2 How do I tell Zsh to write the current shell's history to my history file? a paid nerd 2009-05-09T00:09:32Z 2009-11-09T18:03:37Z <p>I work in a place that has gazillions of tools which require tons of options, so I rely on my shell's history significantly. I even back it up every now and then just to make sure I don't lose useful, lengthy commands.</p> <p>I just typed one of these commands and I want to make sure it's flushed to the history file, but I have a long-running job in the background and I can't type <code>exec zsh</code>. Is there something else I can do in this situation?</p> <p>(Sure, I could copy and paste it into a file, but it would be more logical for there to exist a <code>flush-history</code> command.)</p> http://stackoverflow.com/questions/842338/how-do-i-tell-zsh-to-write-the-current-shells-history-to-my-history-file/1702694#1702694 0 Answer by a paid nerd for How do I tell Zsh to write the current shell's history to my history file? a paid nerd 2009-11-09T18:03:37Z 2009-11-09T18:03:37Z <p>I also just found:</p> <pre><code>setopt INC_APPEND_HISTORY </code></pre> <p>From <code>man zshoptions</code>:</p> <pre><code>INC_APPEND_HISTORY This options works like APPEND_HISTORY except that new history lines are added to the $HISTFILE incrementally (as soon as they are entered), rather than waiting until the shell exits. The file will still be periodically re-written to trim it when the number of lines grows 20% beyond the value specified by $SAVE- HIST (see also the HIST_SAVE_BY_COPY option). </code></pre> http://stackoverflow.com/questions/1689570/how-do-i-upload-data-to-google-app-engine-periodically 0 How do I upload data to Google App Engine periodically? a paid nerd 2009-11-06T18:56:11Z 2009-11-07T17:02:19Z <p>I'm writing an aggregation application which scrapes data from a couple of web sources and displays that data with a novel interface. The sites from which I'm scraping update every couple of minutes, and I want to make sure the data on my aggregator is up-to-date.</p> <p>What's the best way to periodically submit fresh data to my App Engine application from an automated script?</p> <p>Constraints:</p> <ol> <li><p>The application is written in Python.</p></li> <li><p>The scraping process for each site takes longer than one second, thus I cannot process the data in an App Engine handler.</p></li> <li><p>The host on which the updater script would run is shared, so I'd rather not store my password on disk.</p></li> <li><p>I'd like to check the code for the application into to our codebase. While my associates aren't malicious, they're pranksters, and I'd like to prevent them from inserting fake data into my app.</p></li> <li><p>I'm aware that App Engine supports some <code>remote_api</code> thingey, but I'd have to put that entry point behind authentication (see constraint 3) or hide the URL (see constraint 4).</p></li> </ol> <p>Suggestions?</p> http://stackoverflow.com/questions/1689570/how-do-i-upload-data-to-google-app-engine-periodically/1693701#1693701 0 Answer by a paid nerd for How do I upload data to Google App Engine periodically? a paid nerd 2009-11-07T17:02:19Z 2009-11-07T17:02:19Z <p>I asked around and some friends came up with two solutions:</p> <ul> <li><p>Upload a file with a shared secret token along with the application, but when committing to the codebase, change the token.</p></li> <li><p>Create a small datastore model with one row, a secret token.</p></li> </ul> <p>In both cases the token can be used to authenticate <code>POST</code> requests used to upload new data. </p> http://stackoverflow.com/questions/1764090/what-are-the-biggest-potential-time-wasters-in-development/1764325#1764325 Comment by a paid nerd on What are the biggest potential time wasters in development? a paid nerd 2009-11-25T09:08:21Z 2009-11-25T09:08:21Z My supervisor let me spend two days of my internship configuring fetchmail, mutt and some internal Lotus-to-POP gateway bridge software -- provided I wrote up the instructions when I finished. http://stackoverflow.com/questions/1764090/what-are-the-biggest-potential-time-wasters-in-development/1764681#1764681 Comment by a paid nerd on What are the biggest potential time wasters in development? a paid nerd 2009-11-25T09:06:58Z 2009-11-25T09:06:58Z &quot;• reading long lists&quot; http://stackoverflow.com/questions/1795278/creating-object-to-get-expected-json Comment by a paid nerd on Creating object to get expected Json a paid nerd 2009-11-25T08:22:38Z 2009-11-25T08:22:38Z Your question is very unclear. What are you trying to do? Does your GWT application generate JSON? JSON is a protocol for serializing objects to strings and vice versa. http://stackoverflow.com/questions/476714/is-there-a-good-online-interactive-regex-tutorial/476824#476824 Comment by a paid nerd on Is there a good, online, interactive regex tutorial? a paid nerd 2009-11-22T01:46:19Z 2009-11-22T01:46:19Z This tool is awful. The UI makes me die a little. http://stackoverflow.com/questions/853321/gwt-gotchas/853336#853336 Comment by a paid nerd on GWT: Gotcha's a paid nerd 2009-11-21T00:13:29Z 2009-11-21T00:13:29Z It's been a couple of months since I answered this. Maybe it has improved. I hear people talking about something called <code>UiBinder</code> now anyway. http://stackoverflow.com/questions/1738788/python-split-unicode-string-on-word-boundaries/1745367#1745367 Comment by a paid nerd on Python: Split unicode string on word boundaries a paid nerd 2009-11-16T23:28:23Z 2009-11-16T23:28:23Z I used the word &quot;characters&quot; instead of &quot;bytes&quot; on purpose. :) http://stackoverflow.com/questions/1731089/how-do-i-get-started-writing-a-module-for-cpan/1732114#1732114 Comment by a paid nerd on How do I get started writing a module for CPAN? a paid nerd 2009-11-14T22:21:32Z 2009-11-14T22:21:32Z Thanks! Finally someone gets it. :) http://stackoverflow.com/questions/1732504/how-to-loop-through-different-movie-clips-in-as3/1732696#1732696 Comment by a paid nerd on How to loop through different movie clips in AS3? a paid nerd 2009-11-14T00:18:56Z 2009-11-14T00:18:56Z Because he's not using the timeline? http://stackoverflow.com/questions/1732452/django-ease-of-building-a-restful-interface/1732520#1732520 Comment by a paid nerd on Django ease of building a RESTful interface a paid nerd 2009-11-14T00:11:47Z 2009-11-14T00:11:47Z (Either install <code>simplejson</code> or use the built-in <code>json</code> module in Python 2.6 and later.) http://stackoverflow.com/questions/1732452/django-ease-of-building-a-restful-interface/1732520#1732520 Comment by a paid nerd on Django ease of building a RESTful interface a paid nerd 2009-11-14T00:10:58Z 2009-11-14T00:10:58Z Create a <code>json&#95;view</code> decorator, which is similar: <code>return HttpResponse(json.dumps(result), mimetype=&quot;application/json&quot;)</code> http://stackoverflow.com/questions/1732278/what-are-some-questions-to-ask-when-choosing-between-two-equal-programmers Comment by a paid nerd on What are some questions to ask when choosing between two equal programmers? a paid nerd 2009-11-13T23:33:19Z 2009-11-13T23:33:19Z Yeah, &quot;legally&quot; is a real downer here. I'd tie the two candidates' wrists together with Cat5, jab a knife in the middle of the floor, and sit back and watch as you hum the battle music from Star Trek TOS. http://stackoverflow.com/questions/1725812/limiting-intellij-idea-import-suggestions-on-completion/1725908#1725908 Comment by a paid nerd on Limiting IntelliJ IDEA import suggestions on completion a paid nerd 2009-11-12T23:06:46Z 2009-11-12T23:06:46Z Unfortunately, I'm still stuck on v7. Thanks, though. http://stackoverflow.com/questions/1725812/limiting-intellij-idea-import-suggestions-on-completion/1725902#1725902 Comment by a paid nerd on Limiting IntelliJ IDEA import suggestions on completion a paid nerd 2009-11-12T23:06:15Z 2009-11-12T23:06:15Z Wonderful, thanks! http://stackoverflow.com/questions/1724954/will-any-scripting-languages-other-than-javascript-ever-make-it-to-the-browser/1724972#1724972 Comment by a paid nerd on Will any scripting languages other than JavaScript ever make it to the browser? a paid nerd 2009-11-12T20:02:29Z 2009-11-12T20:02:29Z ActionScript gets compiled ;) http://stackoverflow.com/questions/1724634/tracing-mouse-clicks-on-website/1724698#1724698 Comment by a paid nerd on tracing mouse clicks on website a paid nerd 2009-11-12T19:55:45Z 2009-11-12T19:55:45Z I would have <i>sworn</i> that Google Analytics provided something to do this automatically, but I think I'm wrong. A quick search for &quot;google analytics outbound links&quot; turns up snippets of code to do this.