User orip - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T01:34:38Z http://stackoverflow.com/feeds/user/37020 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1886686/c-byte-to-url-friendly-string/1886879#1886879 4 Answer by orip for C# Byte[] to Url Friendly String orip 2009-12-11T09:33:20Z 2009-12-11T09:33:20Z <p>You're looking for <code>HttpServerUtility.UrlTokenEncode</code> and <code>HttpServerUtility.UrlTokenDecode</code>, in <code>System.Web</code>.</p> <p>They encode in base64, replacing the potentially dangerous '+' and '/' chars with '-' and '_' instead.</p> http://stackoverflow.com/questions/1882174/insert-double-quotes-multiple-times-into-string/1882439#1882439 0 Answer by orip for Insert double quotes multiple times into string orip 2009-12-10T17:06:11Z 2009-12-10T17:06:11Z <pre><code>sed -i 's/"\([^" &gt;]\+\)\( \|&gt;\)/"\1"\2/g' file.html </code></pre> <p>Explanation:</p> <ul> <li><code>"</code> - leading double quote</li> <li><code>\([^" &gt;]\+\)</code> - non-quote-or-space-or-'<code>&gt;</code>' chars, grouped (into group 1)</li> <li><code>\( \|&gt;\)</code> - terminating space or '<code>&gt;</code>', grouped (into group 2)</li> </ul> <p>We replace it with '<code>"&lt;group1&gt;"&lt;group2&gt;</code>'.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/1875844#1875844 0 Answer by orip for What is the strangest/weirdest program you've ever made? orip 2009-12-09T18:28:55Z 2009-12-09T18:28:55Z <p>I got a class assignment to write a shell script - any shell script. So I wrote markov-chain text generator in bash. It was slow, but it worked.</p> http://stackoverflow.com/questions/1823633/high-performance-encryption-in-adobe-air-flash/1873152#1873152 1 Answer by orip for high performance encryption in adobe air / flash orip 2009-12-09T11:04:52Z 2009-12-09T11:04:52Z <p>Regarding performance, if you can stream the video &amp; music, i.e. process them one block at a time, then you only need to decrypt one block ahead instead of decrypting the entire file. This will probably be good enough for performance no matter the algorithm.</p> <h2>Security</h2> <p>For the best security try AES-256, preferably in CTR mode (see <a href="http://www.daemonology.net/blog/2009-06-11-cryptographic-right-answers.html" rel="nofollow"> Colin Percival's article</a> for rationale). Note that CTR mode converts the AES block cipher to the equivalent of a stream cipher without reducing its security - this has some useful properties, like random-access decryption (vs. CBC which forces you to decrypt everything up to the data you want).</p> <p>If the CPU load is too high, RC4 is weaker but good enough for most uses. Be sure to use a 256-bit key.</p> <p>Finally, the way you generate the encryption keys is <em>very important</em>:</p> <h3>Nonce / IV</h3> <p>If you use the same base key to encrypt all the files, always use a nonce (a.k.a IV or "Initialization Vector") when encrypting:</p> <ul> <li>A nonce / IV is a group of random bytes that are kept <strong>in the clear</strong> next to your ciphertext (often prepended to the ciphertext)</li> <li>Create and use a different nonce / IV for each encrypted file</li> <li>CTR mode APIs include a way to set the IV / nonce, the library you use supports it</li> <li>If you use RC4: <ul> <li>save the nonce / IV yourself</li> <li>generate the final encryption key using HMAC-SHA256 with the base key and the nonce, like mentioned <a href="http://en.wikipedia.org/wiki/RC4#Security" rel="nofollow">here</a></li> </ul></li> </ul> <h3>Generating a key from a password</h3> <p>If the user enters a password, generate the base encryption key using PBKDF2 (again, see <a href="http://www.daemonology.net/blog/2009-06-11-cryptographic-right-answers.html" rel="nofollow"> Colin Percival's article</a> for rationale).</p> <p>Since you have an hmac-sha256 implementation in the library it's easy to implement PBKDF2-HMAC-SHA256 yourself, search the net or SO for sample implementations.</p> http://stackoverflow.com/questions/1868133/additional-try-statement-in-catch-statement-code-smell/1868558#1868558 0 Answer by orip for Additional try statement in catch statement - code smell? orip 2009-12-08T17:32:02Z 2009-12-08T17:32:02Z <p>Another way is to flatten the <code>try</code>/<code>catch</code> blocks, useful if you're using some exception-happy API:</p> <pre><code>public void Foo() { try { HelperMethod("value 1"); return; // finished } catch (Exception e) { // possibly log exception } try { HelperMethod("value 2"); return; // finished } catch (Exception e) { // possibly log exception } // ... more here if needed } </code></pre> http://stackoverflow.com/questions/1077668/can-i-change-my-open-source-license-from-licensea-to-licenseb/1862688#1862688 0 Answer by orip for Can I change my Open Source License from licenseA to licenseB orip 2009-12-07T20:29:54Z 2009-12-07T20:29:54Z <p>Another point - if you include contributions from other people, they're usually done in the original license. Unless they transfer copyright to you first you can't relicense their contributions unless the original license allows it.</p> <p>e.g. if they contributed to you under the MIT license, you can probably relicense to the GPL, but you can't relicense a GPL'd contribution to the MIT license.</p> http://stackoverflow.com/questions/1855998/jquery-how-to-hide-divs-they-are-showing-for-a-split-second-on-page-load/1856038#1856038 8 Answer by orip for jQuery How to Hide DIVs, they are Showing for a Split Second on page Load orip 2009-12-06T17:50:56Z 2009-12-06T17:50:56Z <p>Disabling in CSS is fine, but then users without JS will never see them.</p> <p>To disable for users with JS only, mark the body and appropriate CSS:</p> <pre><code>&lt;body&gt; &lt;script type="text/javascript"&gt; document.body.className += " js"; &lt;/script&gt; </code></pre> <p>CSS:</p> <pre><code>.js #gall2, .js #gall3, .js #gall4 { display: none; } </code></pre> http://stackoverflow.com/questions/1853419/syntax-highlighter-for-java/1853457#1853457 1 Answer by orip for Syntax Highlighter for Java orip 2009-12-05T21:02:32Z 2009-12-05T21:02:32Z <p>You could use <a href="http://pygments.org/" rel="nofollow">Pygments</a> through Jython. Won't be as fast as a Java solution, but much faster than interacting with a remote server.</p> <p>Barring that, you could run Geshi locally and pipe source code through it, that would also beat an HTTP round trip.</p> http://stackoverflow.com/questions/1843219/how-to-transition-from-c-to-python/1847072#1847072 0 Answer by orip for how to transition from c# to python? orip 2009-12-04T13:51:20Z 2009-12-04T13:51:20Z <p>I suggest going cold turkey - languages like Python shine with great text editors. Choose one you want to become amazing at (vim, emacs, etc.) and never look back.</p> http://stackoverflow.com/questions/1841121/caching-data-by-using-hidden-divs/1841465#1841465 -2 Answer by orip for Caching data by using hidden divs orip 2009-12-03T17:18:17Z 2009-12-03T17:18:17Z <p>Another way of doing this is to <a href="http://developer.yahoo.com/performance/rules.html#expires" rel="nofollow">set the "Expires" or "Cache-Control" HTTP headers</a> for the form.</p> <p>If you set an "Expires" header 1 hour in the future for url <code>http://example.com/form.html</code>, then the next time within an hour that the user navigates to that form the HTML will be loaded without touching the server.</p> <p>If you properly version your images/CSS/JS and give them far-future "Expires" headers as well, then there will be no server roundtrip, plus you'll help the performance the rest of your pages.</p> http://stackoverflow.com/questions/1829470/ranking-elements-of-multiple-lists-by-their-count-in-python/1829721#1829721 1 Answer by orip for Ranking Elements of multiple Lists by their count in Python orip 2009-12-01T23:37:55Z 2009-12-01T23:37:55Z <p>You can count the number of appearances of each element (a histogram), then sort by it:</p> <pre><code>def histogram(enumerable): result = {} for x in enumerable: result.setdefault(x, 0) result[x] += 1 return result lists = [ [1,2,3,4], [4,5,6,7], ... ] from itertools import chain h = histogram(chain(*lists)) ranked = sorted(set(chain(*lists)), key = lambda x : h[x], reverse = True) </code></pre> http://stackoverflow.com/questions/1825127/ajax-will-not-post-but-will-get-with-no-problem/1825246#1825246 0 Answer by orip for .ajax will not POST, but will GET with no problem orip 2009-12-01T10:14:01Z 2009-12-01T10:14:01Z <p>If you want to post forms with AJAX, I suggest the <a href="http://jquery.malsup.com/form/" rel="nofollow">jQuery Form Plugin</a>, which does so nicely and unobtrusively.</p> http://stackoverflow.com/questions/1823368/get-details-of-object-from-database-keep-id-secure/1823422#1823422 1 Answer by orip for Get details of object from database - keep ID secure orip 2009-12-01T01:06:37Z 2009-12-01T05:27:04Z <p><a href="http://stackoverflow.com/questions/396164/exposing-database-ids-security-risk">Is exposing the IDs a risk?</a> (SO question)</p> http://stackoverflow.com/questions/1823300/whats-the-best-way-to-divide-large-files-in-python-for-multiprocessing/1823437#1823437 0 Answer by orip for What's the best way to divide large files in Python for multiprocessing? orip 2009-12-01T01:11:36Z 2009-12-01T01:11:36Z <p>If the run time is long, instead of having each process read its next line through a <code>Queue</code>, have the processes read batches of lines. This way the overhead is amortized over several lines (e.g. thousands or more).</p> http://stackoverflow.com/questions/1802689/svn-partial-branch/1823188#1823188 0 Answer by orip for SVN partial branch orip 2009-11-30T23:42:17Z 2009-11-30T23:42:17Z <p>The way you structure your project, along with the docs dir restrictions, doesn't fit with SVN's model out of the box.</p> <p>Some ideas:</p> <ul> <li>Move the docs dir outside trunk, and add it as an <code>svn:external</code></li> <li>Move the docs dir outside trunk, and have a build script combine trunk and the docs dir</li> <li>Merge using a script (instead of a direct <code>svn merge</code>), and have the script enforce the rules</li> </ul> http://stackoverflow.com/questions/1178244/is-doing-a-bit-of-freelancing-while-working-full-time-a-good-idea/1823109#1823109 2 Answer by orip for Is doing a bit of freelancing while working full time a good idea? orip 2009-11-30T23:24:54Z 2009-11-30T23:24:54Z <p>Due to the divided focus, you may not perform as well as you could in your day job or in your freelance projects. In the long term, the effect in reputation between being good and being great may compound.</p> http://stackoverflow.com/questions/1782438/measure-page-rendering-time-on-ie-6-or-ff-3-x/1823080#1823080 0 Answer by orip for measure page rendering time on IE 6 or FF 3.x orip 2009-11-30T23:17:57Z 2009-11-30T23:17:57Z <p>For render times in Firefox try <a href="http://code.google.com/speed/page-speed/" rel="nofollow">Google Page Speed</a>.</p> http://stackoverflow.com/questions/1728160/patterns-for-functional-dynamic-and-aspect-oriented-programming/1822994#1822994 0 Answer by orip for Patterns for functional, dynamic and aspect-oriented programming orip 2009-11-30T22:53:34Z 2009-11-30T22:53:34Z <p>Personally my most important pattern for dynamic languages - write tests. It's even more important than in statically-typed languages.</p> http://stackoverflow.com/questions/1822651/are-there-any-good-reasons-not-to-use-jquery-instead-of-plain-old-javascript/1822726#1822726 0 Answer by orip for Are there any good reasons NOT to use jQuery instead of plain old JavaScript? orip 2009-11-30T22:06:03Z 2009-11-30T22:06:03Z <p>I think choosing a JS &amp; DOM &amp; AJAX library you like is important, and it will almost always be appropriate to use said library, but don't let that stop you for learning important JavaScript features, idioms &amp; techniques, as well as some browser and DOM API. </p> <p>Being afraid to leave your library's boundaries is very limiting.</p> http://stackoverflow.com/questions/1807046/whats-the-best-way-to-strip-out-script-tags-from-a-url-string/1807460#1807460 0 Answer by orip for What's the best way to strip out script tags from a URL string? orip 2009-11-27T08:40:46Z 2009-11-27T08:40:46Z <p>Instead of tying to filter attack attempts, just make sure you always properly escape user input in your HTML. A query parameter is user input.</p> <p>You do need to see how the inputs propagate, and escape right before display.</p> <p>One thing to remember is that the escaping is different depending on the context it's displayed in. Some tips I finds useful:</p> <ul> <li>Appears inside HTML elements: use HTML escaping</li> <li>Appears in an HTML element attribute: use HTML attribute escaping (can use HTML escaping as well, but attribute-only escaping is faster)</li> <li>Appears in a JavaScript literal: encode with JSON to properly escape</li> </ul> http://stackoverflow.com/questions/1804215/what-are-solid-nmaven-or-build-server-for-net-alternatives/1804868#1804868 1 Answer by orip for What are solid NMaven or build server for .NET alternatives? orip 2009-11-26T17:22:10Z 2009-11-26T17:22:10Z <p>For continuous integration and creating builds <a href="http://www.jetbrains.com/teamcity/" rel="nofollow">TeamCity</a> is nice and free for smaller operations (up to 3 build agents). It's powerful, supports NAnt and friends (e.g. MSBuild) out of the box, and it's best feature is ease of use and configuration. Even upgrades are painless.</p> <p>The rub is that it isn't completely free, and if you need more features (e.g. more than 3 build agents) it costs.</p> <p>Also, you ask about a Maven replacement - it won't handle dependencies like Maven does.</p> http://stackoverflow.com/questions/1803237/centering-all-html-form-elements-using-css/1803286#1803286 0 Answer by orip for Centering all HTML form elements using CSS orip 2009-11-26T12:01:05Z 2009-11-26T12:01:05Z <p>The usual "centering" used for form labels and inputs is actually 2 columns, labels right-aligned and input-fields left-aligned.</p> <p>One way to do this without tables is to give the label elements the same width and right-align them, for example:</p> <pre><code>&lt;style type="text/css"&gt; .foolabel{width:10em;text-align:right;display:inline-block;margin-right:1em;} .formlist{list-style:none} &lt;/style&gt; &lt;ul class="formlist"&gt; &lt;li&gt;&lt;label class="foolabel"&gt;Name:&lt;/label&gt;&lt;input type="text" /&gt;&lt;/li&gt; &lt;li&gt;&lt;label class="foolabel"&gt;Quest:&lt;/label&gt;&lt;input type="text" /&gt;&lt;/li&gt; &lt;li&gt;&lt;label class="foolabel"&gt;Favorite Color:&lt;/label&gt;&lt;input type="text" /&gt;&lt;/li&gt; &lt;/ul&gt; </code></pre> http://stackoverflow.com/questions/1795151/disable-click-event-for-all-links-except-the-links-inside-a-div/1795254#1795254 0 Answer by orip for disable click event for all links except the links inside a div orip 2009-11-25T07:35:19Z 2009-11-25T07:35:19Z <p>Inspired by K Prime's answer:</p> <pre><code>$('a') .filter(function(){return $(this).parents('#navigation').length == 0}) .live('click', function(e) { return false; }); </code></pre> http://stackoverflow.com/questions/1795183/jquery-ajax-on-different-port/1795209#1795209 0 Answer by orip for jQuery Ajax on Different Port orip 2009-11-25T07:24:04Z 2009-11-25T07:24:04Z <p>For JSONP on PHP, see the example <a href="http://www.carolinamantis.com/wordpress/?p=29" rel="nofollow">here</a>. You add a "callback" parameter to the URL specifying a function name to run, and in your PHP code make sure to emit JavaScript that call's the callback with the data. jQuery injects a script element with your content - when it runs it calls the callback.</p> http://stackoverflow.com/questions/1790550/running-average-in-python/1790600#1790600 10 Answer by orip for Running average in Python orip 2009-11-24T14:55:39Z 2009-11-24T15:47:39Z <p>You could write a generator:</p> <pre><code>def running_average(): sum = 0 count = 0 while True: sum += cauchy(3,1) count += 1 yield sum/count </code></pre> <p>Or, given a generator for Cauchy numbers and a utility function for a running sum generator, you can have a neat generator expression:</p> <pre><code># Cauchy numbers generator def cauchy_numbers(): while True: yield cauchy(3,1) # running sum utility function def running_sum(iterable): sum = 0 for x in iterable: sum += x yield sum # Running averages generator expression (** the neat part **) running_avgs = (sum/(i+1) for (i,sum) in enumerate(running_sum(cauchy_numbers()))) # goes on forever for avg in running_avgs: print avg # alternatively, take just the first 10 import itertools for avg in itertools.islice(running_avgs, 10): print avg </code></pre> http://stackoverflow.com/questions/1790235/adding-version-control-numbering-to-python-project/1790418#1790418 0 Answer by orip for Adding Version Control / Numbering (?) to Python Project orip 2009-11-24T14:28:01Z 2009-11-24T14:28:01Z <p>Duplicate of <a href="http://stackoverflow.com/questions/458550/standard-way-to-embed-version-into-python-package">this question</a>.</p> <p>Short answer, use <code>__version__</code>.</p> http://stackoverflow.com/questions/1764079/why-do-you-prefer-char-instead-of-string-in-c/1764257#1764257 1 Answer by orip for Why do you prefer char* instead of string, in C++? orip 2009-11-19T15:48:59Z 2009-11-19T15:48:59Z <p>Use <code>std::string</code> for its incredible convenience - automatic memory handling and methods / operators. With some string manipulations, most implementations will have optimizations in place (such as delayed evaluation of several subsequent manipulations - saves memory copying).</p> <p>If you need to rely on the specific char layout in memory for other optimizations, try <code>std::vector&lt;char&gt;</code> instead. If you have a non-empty vector <code>vec</code>, you can get a <code>char*</code> pointer using <code>&amp;vec[0]</code> (the vector has to be nonempty).</p> http://stackoverflow.com/questions/1750343/fastest-way-to-search-1gb-a-string-of-data-for-the-first-occurence-of-a-pattern/1750708#1750708 0 Answer by orip for Fastest way to search 1GB+ a string of data for the first occurence of a pattern in Python. orip 2009-11-17T18:07:16Z 2009-11-17T18:07:16Z <p>If the patterns are fairly random, you can precompute the location of n-prefixes of strings.</p> <p>Instead of going over all options for n-prefixes, just use the actual ones in the 1GB string - there will be less than 1Gig of those. Use as big a prefix as fits in your memory, I don't have 16GB RAM to check but a prefix of 4 could work (at least in a memory-efficient data structures), if not try 3 or even 2.</p> <p>For a random 1GB string and random 1KB patterns, you should get a few 10s of locations per prefix if you use 3-byte prefixes, but 4-byte prefixes should get you an average of 0 or 1 , so lookup should be fast.</p> <p><strong>Precompute Locations</strong></p> <pre><code>def find_all(pattern, string): cur_loc = 0 while True: next_loc = string.find(pattern, cur_loc) if next_loc &lt; 0: return yield next_loc cur_loc = next_loc+1 big_string = ... CHUNK_SIZE = 1024 PREFIX_SIZE = 4 precomputed_indices = {} for i in xrange(len(big_string)-CHUNK_SIZE): prefix = big_string[i:i+PREFIX_SIZE] if prefix not in precomputed_indices: precomputed_indices[prefix] = tuple(find_all(prefix, big_string)) </code></pre> <p><strong>Look up a pattern</strong></p> <pre><code>def find_pattern(pattern): prefix = pattern[:PREFIX_SIZE] # optimization - big prefixes will result in many misses if prefix not in precomputed_indices: return -1 for loc in precomputed_indices[prefix]: if big_string[loc:loc+CHUNK_SIZE] == pattern: return loc return -1 </code></pre> http://stackoverflow.com/questions/1600426/add-controller-add-view-in-a-hybrid-mvc-webforms-asp-net-application 1 "Add Controller" / "Add View" in a hybrid MVC/WebForms ASP.NET application orip 2009-10-21T12:13:12Z 2009-11-15T14:05:05Z <p>I have an existing WebForms project to which I'm adding MVC pages. I created an MVC project and copied the project type guids.</p> <p>It works fine, but I can't get Visual Studio to display the "Add Controller" or "Add View" wizards on my controllers and views directories (they're not <code>/Controllers</code> and <code>/Views</code>, they're in <code>/Foo/Controllers</code> and <code>/Foo/Views</code>).</p> <p>Is it possible to enable the wizards?</p> http://stackoverflow.com/questions/1600426/add-controller-add-view-in-a-hybrid-mvc-webforms-asp-net-application/1737597#1737597 0 Answer by orip for "Add Controller" / "Add View" in a hybrid MVC/WebForms ASP.NET application orip 2009-11-15T14:05:05Z 2009-11-15T14:05:05Z <p>I've given up on this. Instead, I have some basic Resharper snippets. Too bad this isn't configurable.</p> http://stackoverflow.com/questions/795157/how-to-get-raw-markup-of-child-controls-at-runtime/795272#795272 Comment by orip on How to get raw markup of child controls at runtime orip 2009-12-11T14:15:16Z 2009-12-11T14:15:16Z Would the controls be rendered in the template field instead of staying literal? http://stackoverflow.com/questions/1886686/c-byte-to-url-friendly-string/1886879#1886879 Comment by orip on C# Byte[] to Url Friendly String orip 2009-12-11T11:06:38Z 2009-12-11T11:06:38Z @LorenVS - sure. I didn't know it was there either, until we stumbled on it at work and replaced our own implementation with it. http://stackoverflow.com/questions/1230303/bitconverter-tostring-in-reverse Comment by orip on BitConverter.ToString() in reverse? orip 2009-12-11T11:04:18Z 2009-12-11T11:04:18Z just use base64 http://stackoverflow.com/questions/1886686/c-byte-to-url-friendly-string/1886756#1886756 Comment by orip on C# Byte[] to Url Friendly String orip 2009-12-11T10:51:04Z 2009-12-11T10:51:04Z @ssg - actually it grows to twice its size, not 4 times its size (2 chars per byte) http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/1067447#1067447 Comment by orip on What is the strangest/weirdest program you've ever made? orip 2009-12-09T18:23:37Z 2009-12-09T18:23:37Z +1 for proper use of ASCII 7 :) http://stackoverflow.com/questions/1874712/data-extraction-and-manipulation-in-jython/1875183#1875183 Comment by orip on Data extraction and manipulation in jython orip 2009-12-09T17:42:34Z 2009-12-09T17:42:34Z +1. I would suggest using a generator expression instead of the list comprehension (just drop the square braces). http://stackoverflow.com/questions/723322/what-is-the-best-version-control-for-visual-studio-2008-sp1/723348#723348 Comment by orip on What is the best Version Control for Visual Studio 2008 SP1? orip 2009-12-08T17:37:25Z 2009-12-08T17:37:25Z @ChrisF - why not? http://stackoverflow.com/questions/1868133/additional-try-statement-in-catch-statement-code-smell Comment by orip on Additional try statement in catch statement - code smell? orip 2009-12-08T17:36:09Z 2009-12-08T17:36:09Z I'm sure this is just example code, but you should probably be catching something more specific than <code>Exception</code> http://stackoverflow.com/questions/1868449/static-linking-of-libraries-created-on-c-net/1868468#1868468 Comment by orip on Static Linking of libraries created on C# .NET orip 2009-12-08T17:24:58Z 2009-12-08T17:24:58Z I believe that in *nix land, an executable without dependencies on dynamically-loaded shared objects is called &quot;statically linked&quot; http://stackoverflow.com/questions/1862378/how-to-compare-two-xml-files-and-add-missing-elements-using-c/1862725#1862725 Comment by orip on How to compare two XML files and add missing elements using c# orip 2009-12-07T21:10:12Z 2009-12-07T21:10:12Z Actually this solves your problem perfectly - just make sure the master XML contains blank elements. http://stackoverflow.com/questions/1859865/what-is-jython-and-is-it-useful-at-all/1859872#1859872 Comment by orip on What is Jython and is it useful at all? orip 2009-12-07T13:24:42Z 2009-12-07T13:24:42Z Jython doesn't compile to bytecode the same way Java does. The bytecode does all the wonderful dynamic runtime things that CPython does, so is considerably slower than Java. http://stackoverflow.com/questions/1858628/how-to-open-new-ie-window-on-click-of-hyperlink Comment by orip on how to open new IE window on click of hyperlink orip 2009-12-07T09:25:54Z 2009-12-07T09:25:54Z BTW - you seriously don't need a server control for this scenario. What's wrong with <code>&lt;a target=&quot;&#95;blank&quot; href=&quot;&lt;%#Eval('name')%&gt;&quot;&gt;&lt;%#Eval(&quot;name&quot;)%&gt;&lt;/a&gt;</code>? http://stackoverflow.com/questions/1855998/jquery-how-to-hide-divs-they-are-showing-for-a-split-second-on-page-load/1856038#1856038 Comment by orip on jQuery How to Hide DIVs, they are Showing for a Split Second on page Load orip 2009-12-06T21:15:56Z 2009-12-06T21:15:56Z @dcneiner - that's cool, I didn't think of that. Like you mentioned, this way you could put it in <code>&lt;head&gt;</code> if you like. http://stackoverflow.com/questions/1855998/jquery-how-to-hide-divs-they-are-showing-for-a-split-second-on-page-load/1856043#1856043 Comment by orip on jQuery How to Hide DIVs, they are Showing for a Split Second on page Load orip 2009-12-06T21:13:31Z 2009-12-06T21:13:31Z like @bobince said, the point of adding the class immediately after opening <code>&lt;body&gt;</code> is that nothing has been rendered yet. http://stackoverflow.com/questions/1855998/jquery-how-to-hide-divs-they-are-showing-for-a-split-second-on-page-load/1856038#1856038 Comment by orip on jQuery How to Hide DIVs, they are Showing for a Split Second on page Load orip 2009-12-06T21:10:15Z 2009-12-06T21:10:15Z @Gregory - it's not my idea, I've seen this technique used by others. I also thought it was very clever :)