User Blixt - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T21:21:12Z http://stackoverflow.com/feeds/user/119081 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1839271/public-wcf-service-requires-authentication-despite-no-security-being-specified 0 Public WCF service requires authentication, despite no security being specified Blixt 2009-12-03T11:10:23Z 2009-12-06T23:25:33Z <p>I have published a WCF service (<code>MyService.svc</code>) on an ASP.NET site, in a sub-folder called <code>WebServices</code>.</p> <p>When running on the local ASP.NET web server it works fine. When published to an IIS-run site and I try to access, for example, <code>/WebServices/MyService.svc/jsdebug</code>, I get <code>401 Unauthorized</code>. The rest of the site works fine.</p> <p>Does anyone have any idea why?</p> <p><hr></p> <p>Here are the contents of <code>MyService.svc</code>:</p> <pre><code>&lt;%@ServiceHost Language="C#" Debug="true" Service="MyApp.Core.MyService, MyApp.Core" Factory="System.ServiceModel.Activation.WebScriptServiceHostFactory" %&gt; </code></pre> <p><code>MyApp.Core.MyService</code> is a class implementing <code>IMyService</code> (which has the attribute <code>ServiceContract</code> and method declarations with the attribute <code>OperationContract</code>).</p> http://stackoverflow.com/questions/1846215/how-do-i-get-linq-to-order-according-to-culture 1 How do I get LINQ to order according to culture? Blixt 2009-12-04T10:52:15Z 2009-12-04T10:58:13Z <p>Say I've got a list of strings with Swedish words: <code>banan</code>, <code>äpple</code>, <code>apelsin</code>, <code>druva</code></p> <p>Now I want to get this list ordered (keep in mind that this is a very simplified version of the real query):</p> <pre><code>var result = from f in fruits // The list mentioned above orderby f select f </code></pre> <p>This will give me: <code>apelsin</code>, <code>äpple</code>, <code>banan</code>, <code>druva</code>. However, according to the Swedish alphabet, I should get: <code>apelsin</code>, <code>banan</code>, <code>druva</code>, <code>äpple</code></p> <p>I tried changing <code>System.Threading.Thread.CurrentThread.CurrentCulture</code> to <code>sv-SE</code> but that didn't really seem to affect it at all. Do I have to write my own lambda function and use <code>.OrderBy(...)</code> or is there something else I can do to keep the LINQ intact?</p> http://stackoverflow.com/questions/1796719/using-a-different-type-for-a-collection-when-serializing-with-wcf 0 Using a different type for a collection when serializing with WCF Blixt 2009-11-25T12:50:14Z 2009-11-25T13:58:18Z <p>Imagine I've got a data object that makes sense in an OO model, but for serialization I want to have its fields referencing other types replaced with simply an ID, or in some cases, a simple object with a text and an ID.</p> <p>Is it possible to have the serializer to handle specific fields differently, or do I have to redefine a second data object class from scratch with the simplified fields and use that?</p> <p>Example:</p> <pre><code>Person Guid Id string Name List&lt;Person&gt; Siblings </code></pre> <p>What I want to be serialized:</p> <pre><code>Person Guid Id string Name List&lt;Guid&gt; Siblings </code></pre> <p>I would like to only have the one class, <code>Person</code>, and define the serialization behavior for my service (preferably not at a data type level, since it could be serialized as both XML or JSON).</p> <p>I know about the support for references in WCF, but in this case I will be referencing other types not included elsewhere in the result set; I only want to include their ids.</p> http://stackoverflow.com/questions/869885/loop-backwards-using-indices-in-python/1750432#1750432 2 Answer by Blixt for Loop backwards using indices in Python? Blixt 2009-11-17T17:26:02Z 2009-11-17T20:46:58Z <p>Generally in Python, you can use negative indices to start from the back:</p> <pre><code>numbers = [10, 20, 30, 40, 50] for i in xrange(len(numbers)): print numbers[-i - 1] </code></pre> <p>Result:</p> <pre><code>50 40 30 20 10 </code></pre> http://stackoverflow.com/questions/1078501/keeping-history-of-hash-anchor-changes-in-javascript 11 Keeping history of hash/anchor changes in JavaScript Blixt 2009-07-03T09:12:15Z 2009-11-17T00:11:14Z <p>I'm currently implementing a JavaScript library that keeps track of the history of changes to the hash part in the address bar. The idea is that you can keep a state in the hash part, and then use the back button to go back to the previous state.</p> <p>In most of the recent browsers, this is automatic and you only have to poll the <code>location.hash</code> property for changes (In IE8 you don't even have to do that; you simply attach a function to the <code>onhashchange</code> event.)</p> <p><strong>What I'm wondering is</strong>, what different methods are there to keep track of the history? I've implemented functionality that has been tested to work in Internet Explorer 6/7/8, Firefox and Chrome, but what about other browsers? Here's the ways I currently keep the history:</p> <p><strong><em>Edit</strong>: See my answer below instead for a walk-through of the various browsers.</em></p> http://stackoverflow.com/questions/1078501/keeping-history-of-hash-anchor-changes-in-javascript/1091829#1091829 11 Answer by Blixt for Keeping history of hash/anchor changes in JavaScript Blixt 2009-07-07T11:32:14Z 2009-11-17T00:11:14Z <p>First of all, thanks to you guys who answered! =)</p> <p>I've now done a lot more research and I believe I'm satisfied with my implementation. Here are the results of my research.</p> <p>First of all, my finished <code>Hash</code> library. It's a stand-alone library with no dependencies. It has two functions: <code>Hash.init(callback, iframe)</code> and <code>Hash.go(newHash)</code>. The callback function is called whenever the hash changes with the new hash as its first argument, and as its second argument a flag indicating whether the callback is called due to initial state (<code>true</code>) or an actual change to the hash (<code>false</code>).</p> <blockquote> <p><a href="http://blixt.org/js/Hash.js" rel="nofollow">Hash.js</a> (MIT license)</p> </blockquote> <p>I also made a jQuery plugin for making it easier to use. Adds a global <code>hashchange</code> event as well. See example in source code for how to use it.</p> <blockquote> <p><a href="http://blixt.org/js/jquery.hash.js" rel="nofollow">jquery.hash.js</a> (MIT license)</p> </blockquote> <p>To see them in use, go to my JavaScript "realm" page:</p> <blockquote> <p><a href="http://blixt.org/js" rel="nofollow">Blixt's JavaScript realm</a></p> </blockquote> <h3>Internet Explorer 8</h3> <p>Smooooth cruisin'! Just smack on one o' them <code>onhashchange</code> events to the <code>window</code> object (using <code>attachEvent</code>) and get the <code>location.hash</code> value in the event handler.</p> <p>It doesn't matter if the user clicks a link with a hash, or if you set the hash programmatically; history is kept perfectly.</p> <h3>Chrome, Firefox, Safari 3+, Opera 8+</h3> <p>Smooth cruisin'! Just poll for changes to the <code>location.hash</code> property using <code>setInterval</code> and a function.</p> <p>History works perfectly. For Opera, I set <code>history.navigationMode</code> to <code>'compatible'</code>. To be honest, I'm not sure what it does, I did it on recommendation from a comment in the YUI code.</p> <p><strong><em>Note</strong>: Opera needs some additional testing, but it has worked fine for me so far.</em></p> <p><strong><em>Surprise quirk bonus! (Can it be?!)</strong> It turns out that Firefox (only confirmed in 3.5+) decodes the <code>location.hash</code> property, so this can trigger a <code>hashchange</code> event twice (first for the encoded version then for the unencoded version.) There is a new version of my Hash.js library that takes this into account by using the <code>location.href</code> property instead (changes provided by Aaron Ogle.)</em></p> <h3>Internet Explorer 6, 7</h3> <p>Now it gets nastier. The navigation history in older Internet Explorer versions ignore hash changes. To work around this, the commonly accepted solution is to create an <code>iframe</code> and set its content to the new hash. This creates a new entry in the navigation history. When the user goes back, this changes the content of the <code>iframe</code> to its previous content. By detecting the change of content, you can get it and set it as the active hash.</p> <p>Checking for changes to the <code>location.hash</code> property is still needed to manual changes to the current address. Beware of the quirks I've mentioned below, though.</p> <p>While this solution seems to be the best one out there, it's still not perfect in Internet Explorer 6, which is a bit quirky about the back/forward buttons. Internet Explorer 7 works fine, though.</p> <p><strong><em>Surprise quirk bonus #1!</strong> In Internet Explorer 6, whenever there's a question mark in the hash, this gets extracted and put in the</em> <code>location.search</code> <em>property! It is removed from the</em> <code>location.hash</code> <em>property. If there is a real query string, however,</em> <code>location.search</code> <em>will contain that one instead, and you'll only be able to get the whole true hash by parsing the</em> <code>location.href</code> <em>property.</em></p> <p><strong><em>Surprise quirk bonus #2!</strong> If the</em> <code>location.search</code> <em>property is set, any subsequent</em> <code>#</code> <em>characters will be removed from the</em> <code>location.href</code> <em>(and</em> <code>location.hash</code><em>) property. In Internet Explorer 6 this means that whenever there's a question mark in the path or the hash, you'll experience this quirk. In Internet Explorer 7, this quirk only occurs when there's a question mark in the path. Don't you just love the consistency in Internet Explorer?</em></p> <p><strong><em>Surprise quirk bonus #3!</strong> If another element on the page has the same id as the value of a hash, that hash will totally mess up the history. So rule of thumb is to avoid hashes with the same id as any elements on the page. If the hashes are generated dynamically and may collide with ids, consider using a prefix/suffix.</em></p> <h3>Other browsers</h3> <p>Unless you've got an out-of-the-ordinary user base, you won't need to support more browsers. The browsers not listed above are in the &lt;1% usage category.</p> http://stackoverflow.com/questions/1742756/multitenant-db-why-put-a-tenantid-column-in-every-table/1742799#1742799 3 Answer by Blixt for Multitenant DB: Why put a TenantID column in every table? Blixt 2009-11-16T15:13:20Z 2009-11-16T15:22:39Z <p>The first thing that springs to mind is that it's slower to look up <code>animals &gt; zoos &gt; tenants</code> than simply <code>animals &gt; tenants</code>. And most likely this is a lookup you will do <strong>often</strong> (for example, "get all animals for a certain tenant, regardless of zoo").</p> <p>For small to mid-sized applications you can get away with a more normalized structure, but for the sake of efficiency, you should go with extraneous data (and generally speaking, multitenancy applications are not small). Just make sure it doesn't go "out of sync", which is a risk that comes with having redundant data.</p> <p>To answer your last paragraph, the reason is performance, pure and simple. Joins are no bad thing; they help you keep a piece of data in one place rather than three. It's definitely not to prevent bugs. Adding a <code>tenant_id</code> field to more tables will increase the risk of bugs (although for an id that never changes, it wouldn't be as much of an issue).</p> http://stackoverflow.com/questions/1714121/block-level-elements-inside-inline-elements/1714173#1714173 1 Answer by Blixt for Block Level Elements inside Inline elements Blixt 2009-11-11T09:57:10Z 2009-11-11T09:57:10Z <p>An element that is inline elements should not contain block elements. Block elements can contain block and/or inline elements while inline elements can only contain other inline (including <code>inline-block</code>, such as <code>&lt;img&gt;</code>) elements.</p> <p>You can of course do it anyways, since the graphical representation will be pretty consistent across browsers. It's still not something I'd recommend though, and can't really think of a reason to do it either.</p> http://stackoverflow.com/questions/1710812/elegant-syntax-for-assigning-value-from-possibly-null-db-value/1710832#1710832 2 Answer by Blixt for Elegant syntax for assigning value from possibly null db value Blixt 2009-11-10T20:07:27Z 2009-11-10T20:18:59Z <p>You get that error because the type <code>decimal</code> (a value type) and <code>null</code> (a reference value) don't play together.</p> <p>Also, since you're assigning to the <code>Value</code> property of the <code>Nullable&lt;decimal&gt;</code> type, you're effectively attempting to assign <code>null</code> to a <code>decimal</code> type which, again, is a no-go.</p> <p>You can explicitly make the <code>GetDecimal</code> result a nullable <code>decimal</code> type by casting it:</p> <pre><code>record.SaleAmount = sql.Reader.IsDBNull(IDX_SALEAMOUNT) ? null : (decimal?)sql.Reader.GetDecimal(IDX_SALEAMOUNT); </code></pre> <p>I would go with your second approach, though.</p> http://stackoverflow.com/questions/1028668/get-first-key-in-a-possibly-associative-array/1028677#1028677 11 Answer by Blixt for Get first key in a [possibly] associative array? Blixt 2009-06-22T18:16:43Z 2009-11-06T07:19:05Z <p>You can use <a href="http://php.net/reset" rel="nofollow"><code>reset</code></a> and <a href="http://php.net/key" rel="nofollow"><code>key</code></a>:</p> <pre><code>reset($array); $first_key = key($array); </code></pre> <p>It's essentially the same as your initial code, but with a little less overhead, and it's more obvious what is happening.</p> <p>Just remember to call <code>reset</code>, or you may get any of the keys in the array. You can also use <a href="http://php.net/end" rel="nofollow"><code>end</code></a> instead of <code>reset</code> to get the last key.</p> http://stackoverflow.com/questions/1674651/easiest-way-to-combine-l-e-t-t-e-r-s-c-net/1674753#1674753 1 Answer by Blixt for Easiest way to combine 'l','e','t','t','e','r','s'? C# / .NET Blixt 2009-11-04T15:57:06Z 2009-11-04T15:57:06Z <p>Unless performance is critical, you're probably best of just using simple replacement. The shortest replacement you can write is something along the lines of:</p> <pre><code>string output = Regex.Replace(input, "\W+", ""); </code></pre> <p>Note that <code>\W</code> will not remove underscores or numbers. For keeping English letters only, you would use:</p> <pre><code>string output = Regex.Replace(input, "[^a-zA-Z]+", ""); </code></pre> http://stackoverflow.com/questions/1667411/language-strings-in-urls/1667468#1667468 1 Answer by Blixt for Language Strings in URLs Blixt 2009-11-03T13:57:15Z 2009-11-03T13:57:15Z <p>It kind of depends on the structure of your site:</p> <ul> <li><p>If every language is considered a completely different site, use sub-domains for the language.</p> <p>This is because different sub-domains is considered different sites by many technologies. Wikipedia does this (<a href="http://de.wikipedia.org/" rel="nofollow">http://de.wikipedia.org/</a>) to separate content for different languages entirely.</p> <p>I wouldn't recommend you to choose this option unless your site is very big.</p></li> <li><p>If every language has its own structure, but is still considered to be versions of the same site, use a top-level "directory" for languages.</p> <p>For the sake of consistency, I would say that you should also have one for the default language (and omitting it would cause a redirect to the appropriate structure.) I would recommend you to use <code>/en/</code>, <code>/de/</code>, etc. since it's short and concise, and also the standard way of indicating languages.</p> <p>This is probably your best bet.</p></li> <li><p>If the structure of the site is identical no matter what language it is, and only content on the pages changes depending on the language, you could also consider putting the language modifier as a parameter: <code>/home?lang=en</code></p> <p>Google does this, for example: <a href="http://www.google.com/search?hl=de&amp;q=foo" rel="nofollow">http://www.google.com/search?hl=de&amp;q=foo</a> (they also separate languages by TLD, though.)</p></li> </ul> http://stackoverflow.com/questions/1667161/what-methods-are-there-for-graphically-scaling-elements-on-a-web-page-in-intern 1 What methods are there for (graphically) scaling elements on a web page in Internet Explorer? Blixt 2009-11-03T12:52:40Z 2009-11-03T12:52:40Z <p>I'm making a graphical JavaScript application that has elements rotating and moving across the screen (using CSS <code>transform</code> for Mozilla/WebKit browsers and <code>DXImageTransform.Microsoft.Matrix</code> for Internet Explorer.)</p> <p>Now I want to scale the container of these elements (including its child elements) so that I can simulate zooming out. This works fine using <code>transform</code> for Mozilla/WebKit, but the problem with Internet Explorer is that the transformation matrix doesn't appear to be applied to child elements that have <code>position: absolute</code>.</p> <p>My only option now appears to be to alter the positions of every child element to adhere to the scaling I want, then apply scaling to their individual transformation matrices...</p> <p>I'm just wondering, is there another way?</p> http://stackoverflow.com/questions/1454980/reverse-lookup-of-spotify-links/1666082#1666082 0 Answer by Blixt for Reverse-Lookup of Spotify Links Blixt 2009-11-03T08:58:32Z 2009-11-03T08:58:32Z <p>Have a look at Spotify's <a href="http://developer.spotify.com/en/metadata-api/lookup/" rel="nofollow">Metadata API lookup</a>.</p> http://stackoverflow.com/questions/1666027/how-do-i-convert-my-case-when-then-statement/1666051#1666051 3 Answer by Blixt for How do I convert my CASE WHEN THEN statement? Blixt 2009-11-03T08:51:18Z 2009-11-03T08:51:18Z <p>I'm not sure what you mean, but if you're trying to set a variable, you would do this:</p> <pre><code>SELECT @CombinedTitle = CASE WHEN Title IS NOT NULL THEN Title WHEN Local_Title IS NOT NULL THEN Local_Title END ... </code></pre> <p>If you still want to create column <code>Combined_Title</code> but with values from the two title columns, you would do:</p> <pre><code>SELECT CASE WHEN Title IS NOT NULL THEN Title WHEN Local_Title IS NOT NULL THEN Local_Title END AS Combined_Title ... </code></pre> <p>Also see <a href="http://doc.ddart.net/mssql/sql70/ca-co%5F8.htm" rel="nofollow">documentation on <code>COALESCE</code></a>, it even mentions that it is equivalent to a <code>CASE</code> statement just like yours (with the addition of <code>ELSE NULL</code>.)</p> http://stackoverflow.com/questions/1659994/javascript-selecting-option-from-a-select-dropdown-using-a-href/1660017#1660017 0 Answer by Blixt for Javascript selecting option from a select dropdown, using a href. Blixt 2009-11-02T08:23:16Z 2009-11-02T11:20:06Z <p>Just about every browser supports the following statement to <strong>get</strong> the selected value (<code>"no"</code> or <code>"yes"</code>):</p> <pre><code>document.getElementById('Zinc_plated_field').value </code></pre> <p>For very old browsers you would have to use:</p> <pre><code>var sel = document.getElementById('Zinc_plated_field'); sel.options[sel.selectedIndex].value; </code></pre> <p><hr /></p> <p>If you want to <strong>set</strong> the selected value, there are several ways to do it:</p> <pre><code>document.getElementById('Zinc_plated_field').value = 'yes'; </code></pre> <p>or</p> <pre><code>document.getElementById('Zinc_plated_field').options[1].selected = true; </code></pre> <p>or</p> <pre><code>document.getElementById('Zinc_plated_field').selectedIndex = 1; </code></pre> <p>The two latter use the index of the option you want to set (one specifies which index is selected by setting the <code>selectedIndex</code> property of the <code>&lt;select&gt;</code> element, while the other sets the <code>selected</code> attribute of the <code>&lt;option&gt;</code> element to <code>true</code>.)</p> <p>I can't say which is most cross-browser compatible off-hand, but if the first one doesn't work, just try the other two.</p> http://stackoverflow.com/questions/1612200/how-to-call-a-function-inside-itself/1612234#1612234 6 Answer by Blixt for How to call a function inside itself? Blixt 2009-10-23T09:05:56Z 2009-10-23T09:12:21Z <p>I would not use recursive functions for retry-scenarios (since you don't reuse the result of the function, it's pointless to use recursion)... It adds a lot of unnecessary overhead. Do something like this:</p> <pre><code>do { $key = ...; // Generate your key here... } while (!$this-&gt;user_model-&gt;valid_key($key)); return $key; </code></pre> <p>If you're near the maximum number of keys, this will result in very long loop times, so you might want to put some kind of max limit.</p> <p>Oh, and if this is occurring on multiple threads simultaneously and you're checking a database, you should implement table write locking so that the same key can't be inserted twice. Preferably the function that checks whether a key is available should <strong>lock</strong>, <strong>check</strong>, and if available <strong>write</strong> in the same transaction to avoid any collisions.</p> http://stackoverflow.com/questions/1587351/re-publish-video-stream-as-streaming-flv 0 Re-publish video stream as streaming FLV Blixt 2009-10-19T07:23:15Z 2009-10-19T08:18:52Z <p>A client of ours has a mobile web cam placed in a forest that is streaming video on a public IP address. Since the web cam has a limited bandwidth (and it is streaming with a format that often requires clients to install a codec), the stream needs to be re-broadcast by a server on a landline, preferably as streaming FLV.</p> <p>What components can be used to write a client/server that can do this? It would be written using C#.</p> <p>(Software solutions would be fine too, but we're on a limited budget so it can't be something very expensive...)</p> http://stackoverflow.com/questions/1553342/custom-event-in-jquery-that-isnt-bound-to-a-dom-element/1553364#1553364 4 Answer by Blixt for Custom event in jQuery that isn't bound to a DOM element? Blixt 2009-10-12T08:21:29Z 2009-10-13T07:01:04Z <p>You can trigger custom global events like this in jQuery:</p> <pre><code>jQuery.event.trigger('mycustomevent', [arg1, arg2, arg3]); </code></pre> <p>These will trigger for any element.</p> <p>Since jQuery is built around DOM objects, you have to bind your events to DOM objects. You can probably find some way to bind events without an element too (you did), but that's not a supported methodology.</p> <p>As you wrote in your own answer, you can bind your event to a global DOM object if you don't want to bind it to an individual page element:</p> <pre><code>$(document).bind('mycustomevent', function (e, arg1, arg2, arg3) { /* ... */ }); </code></pre> http://stackoverflow.com/questions/1536260/string-concatenation-is-extremly-slow-when-input-is-large/1536279#1536279 3 Answer by Blixt for String concatenation is extremly slow when input is large Blixt 2009-10-08T07:59:48Z 2009-10-08T07:59:48Z <p>I can't say I'm experienced with ActionScript, but for ECMAScript in general, I've found that arrays can help speed up string concatenation (JavaScript example follows):</p> <pre><code>var sb = []; for (var i = 0; i &lt; 10000000000; i++) { sb.push('longlonglong'); // In this particular case you can avoid a method call by doing: //sb[i] = 'longlonglong'; } var str = sb.join(''); </code></pre> http://stackoverflow.com/questions/1536075/namespace-problem/1536126#1536126 6 Answer by Blixt for Namespace problem Blixt 2009-10-08T07:22:13Z 2009-10-08T07:22:13Z <p>I can't really see that there should be a problem unless you have a <code>using</code> statement referencing it somewhere. Do take care that code in a namespace will implicitly "see" classes in the same namespace, even if they're defined elsewhere.</p> <p>Anyways, you can solve your problem by changing the class name (for the current code file only):</p> <pre><code>using X2Utils = X.X2.components.util.Utils; </code></pre> <p>The class will be named <code>X2Utils</code> in your code. Alternatively you can make a shortcut for its namespace:</p> <pre><code>using X2util = X.X2.components.util; </code></pre> <p>Now you can refer to the class using <code>X2util.Utils</code>.</p> http://stackoverflow.com/questions/1532456/finding-repetition-by-vims-regex-and-globbing/1532478#1532478 0 Answer by Blixt for Finding repetition by Vim's Regex and globbing Blixt 2009-10-07T15:47:15Z 2009-10-07T15:57:57Z <p>If it helps you on the way, the appropriate way to make sure that the following set of characters aren't the same as what is stored in back-reference #1 would be <code>(?!\1)</code>. Note that the <code>(?!)</code> (negative look-ahead) group is a zero-width assertion (i.e., it will not change the position of the cursor, it just checks whether the regex should fail or not.)</p> <p>Whether that is supported by the regex engine you're using, I don't know.</p> <h3>Update</h3> <p>I just had a quick sketch on paper, and something along these lines might work in PCRE... but I haven't tested it and can't right now, but maybe it'll give you some ideas:</p> <pre><code>(?=(\d{30}))\d(?=\d{29,}?\1) </code></pre> <p>To ensure that I understood you correctly, the purpose of the above regex would be to match any sequence of 30 digits that also exists later in the whole string being searched.</p> <p>My thoughts for the above regex were these:</p> <ol> <li>First I want to match a sequence of 30 digits, but I don't want to consume them since I want to check 1 digit later (not 30) next time. Therefore I use a look-ahead with a capturing group that stores the next 30 digits.</li> <li>Then I consume one digit to ensure I don't match the 30 digits with themselves.</li> <li>Then I match at least 29 digits (which means I'll be starting on the digit just outside the current sequence of digits) with a non-greedy quantifier, so that it will try 30, then 31, etc.</li> <li>Then I match the 30 digits I'm currently testing. If they exist later in the sequence, the regular expression will succeed; otherwise, it will fail.</li> </ol> http://stackoverflow.com/questions/1530161/cannot-shuffle-list-in-python/1530164#1530164 12 Answer by Blixt for Cannot shuffle list in Python. Blixt 2009-10-07T07:55:35Z 2009-10-07T08:02:40Z <p><code>random.shuffle</code> shuffles the list, it does not return a new list. So check <code>biglist</code>, not the result of <code>random.shuffle</code>.</p> <p>Documentation for the <code>random</code> module: <a href="http://docs.python.org/library/random.html" rel="nofollow">http://docs.python.org/library/random.html</a></p> http://stackoverflow.com/questions/1524076/why-i-need-to-use-ref-keyword-in-both-declaration-and-call/1524096#1524096 2 Answer by Blixt for Why I need to use ref keyword in both declaration and Call ? Blixt 2009-10-06T07:35:01Z 2009-10-06T07:35:01Z <p>While <code>ref</code> could most of the time be inferred from the method signature, it's always obligatory due to the fact that it can change the behavior of the code after the method call completely. Consider:</p> <pre><code>string hello = "world"; MyMethod(ref hello); Console.WriteLine(hello); </code></pre> <p>If the <code>ref</code> keyword hadn't been there you would always expect the code to print out "world", while in reality, it can print anything.</p> http://stackoverflow.com/questions/1509785/what-are-some-practical-examples-of-abstract-classes-in-java/1509821#1509821 4 Answer by Blixt for What are some practical examples of abstract classes in java? Blixt 2009-10-02T14:20:56Z 2009-10-02T14:20:56Z <p>Abstract classes are "half-implementations" of a class. They can be partially implemented with some generic functionality, but leave part of the implementation to the inheriting classes. You could have an abstract class called <code>Animal</code> that has implemented some generic behavior/values such as <code>Age</code>, <code>Name</code>, <code>SetAge(...)</code>. You can also have methods that are not implemented (they are <code>abstract</code>), much like an interface.</p> <p>Interfaces are simply contracts that specify behaviors that should be available for a class. You could have an interface such as <code>IWalker</code> that requires public method <code>Walk()</code>, but no specifics on how it is implemented.</p> http://stackoverflow.com/questions/1426178/how-do-you-go-from-idea-to-implementation-when-designing-classes-for-other-develo 4 How do you go from idea to implementation when designing classes for other developers in other locations? Blixt 2009-09-15T09:41:26Z 2009-09-28T13:21:12Z <p>I'm looking for inspiration on how to design classes from scratch in a project with multiple developers <em>in different locations</em> (so no whiteboard sessions.)</p> <p>Let's say you're tasked with implementing a rather big feature that is going to be used by the other developers later in the project. This feature will require several classes and will interact with other classes already in the project. Of course you want the other developers' input before you go on and implement the whole thing. Now, how do you proceed?</p> <p>I would start with the best tool available: <strong>pen and paper</strong>. But then what? I would like to materialize my lines and bubbles and notations on my paper to the screens of the other developers. Is the best method to simply scan and e-mail the paper? Are there good patterns for writing down a design as text? Are there any online tools that can quickly model a class design? Should I simply write the "skeletons" for the classes and ask for feedback?</p> <p>An important point to think about here is that the only communication available is phone and e-mail, due to developers being located far away from each other.</p> http://stackoverflow.com/questions/1420643/optimizing-the-build-performance-of-an-asp-net-web-site-project 7 Optimizing the build performance of an ASP.NET web site project? Blixt 2009-09-14T09:59:04Z 2009-09-28T07:36:17Z <p>I'm currently working with an ASP.NET CMS that keeps close to 500 code files in the App_Code directory, as well as hundreds of web forms with code-behind in various folders of the site. It is a web site project (not a web application project) and I'm reluctant to change it since this is a project with multiple developers involved, plus that's the way the CMS is shipped.</p> <p>I'm looking for hints and tips for optimizing the build process of this web site project, since Visual Studio often wants to rebuild all source files and code-behind files, which can take several minutes.</p> <p>Are there ways to avoid rebuilding all the files? Should I bring up the point of separating our code and the CMS code into separate web application projects (instead of a web site project)? Are there any other ways to improve the build performance?</p> http://stackoverflow.com/questions/531453/sql-server-2008-difference-between-collation-types/1465218#1465218 1 Answer by Blixt for Sql Server 2008 - Difference between collation types Blixt 2009-09-23T10:36:35Z 2009-09-23T10:47:08Z <p>Use the query below to try it out yourself.</p> <p>As you can see, å, ä, etc. do not count as accented characters, and are sorted according to the Swedish alphabet when using the Finnish/Swedish collation.</p> <p>However, the accents are only considered if you use the <code>AS</code> collation. For the <code>AI</code> collation, their order is unchanged, as if there was no accent at all.</p> <pre><code>CREATE TABLE #Test ( Number int identity, Value nvarchar(20) NOT NULL ); GO INSERT INTO #Test VALUES ('àá'); INSERT INTO #Test VALUES ('áa'); INSERT INTO #Test VALUES ('aa'); INSERT INTO #Test VALUES ('aà'); INSERT INTO #Test VALUES ('áb'); INSERT INTO #Test VALUES ('ab'); -- w is considered an accented version of v INSERT INTO #Test VALUES ('wa'); INSERT INTO #Test VALUES ('va'); INSERT INTO #Test VALUES ('zz'); INSERT INTO #Test VALUES ('åä'); GO SELECT Number, Value FROM #Test ORDER BY Value COLLATE Finnish_Swedish_CI_AS; SELECT Number, Value FROM #Test ORDER BY Value COLLATE Finnish_Swedish_CI_AI; GO DROP TABLE #Test; GO </code></pre> http://stackoverflow.com/questions/1464474/regular-expression-for-splitting-by-char-which-might-be-escaped/1464550#1464550 1 Answer by Blixt for Regular expression for splitting by char which might be escaped Blixt 2009-09-23T07:53:43Z 2009-09-23T08:13:49Z <p>I would not use a regular expression for matching items and returning them. Even if you make the perfect regular expression, you'll still need to replace the double dots with single dots afterwards.</p> <p>You could use a regex such as <code>(?&lt;!\.)\.(?!\.)</code> for splitting, but I would probably just stick with your current method as it is more efficient. Alternatively, write your own splitting function that will do the "de-dotting" at the same time.</p> <p>Here's a custom function that might look long, but is probably still more efficient than replacing, splitting then replacing again (and more efficient than a regex too):</p> <p>And yes, it's C#, because I don't know VB.NET, but for the most part the two languages are interchangeable.</p> <pre><code>public static string[] SplitPath(string path) { List&lt;string&gt; pieces = new List&lt;string&gt;(); int index = -1, last = 0; // Keep looping as long as there are dots. while ((index = path.IndexOf('.', index + 1)) &gt;= 0) { // Don't do more checking on last character. if (index == path.Length - 1) break; // If next character is also a dot, skip. if (path[index + 1] == '.') { index++; continue; } // Add current piece. pieces.Add(path.Substring(last, index - last).Replace("..", ".")); // Store start of next piece. last = index + 1; } // Add final piece, unless it is empty. if (last &lt; path.Length - 1) pieces.Add(path.Substring(last).Replace("..", ".")); return pieces.ToArray(); } </code></pre> http://stackoverflow.com/questions/1461094/evaluate-a-ruby-or-javascript-script-string-from-within-an-android-program/1461360#1461360 2 Answer by Blixt for Evaluate a ruby or javascript script string from within an android program Blixt 2009-09-22T17:10:40Z 2009-09-22T17:10:40Z <p>You could have a look at the following project, it seems to do what you're after:</p> <blockquote> <h3>Android Scripting</h3> <p><a href="http://code.google.com/p/android-scripting/" rel="nofollow">http://code.google.com/p/android-scripting/</a></p> </blockquote> http://stackoverflow.com/questions/1903063/what-is-the-difference-between-empty-append-and-html-in-jquery/1903090#1903090 Comment by Blixt on What is the difference between .empty().append() and .html() in jQuery? Blixt 2009-12-14T20:09:58Z 2009-12-14T20:09:58Z <code>.empty().append(...)</code> will be marginally faster since <code>.html(...)</code> is essentially a wrapper for the same thing. Don't use <code>.empty().append(...)</code> for the sake of speed, since you wouldn't notice a difference in even several thousand calls, and it would be confusing to someone reading your code. http://stackoverflow.com/questions/1846215/how-do-i-get-linq-to-order-according-to-culture/1846239#1846239 Comment by Blixt on How do I get LINQ to order according to culture? Blixt 2009-12-04T10:59:03Z 2009-12-04T10:59:03Z Yup, I suspected as much... I'd just hoped there was a convenient way to keep using the simplified LINQ query =) http://stackoverflow.com/questions/1839271/public-wcf-service-requires-authentication-despite-no-security-being-specified/1839300#1839300 Comment by Blixt on Public WCF service requires authentication, despite no security being specified Blixt 2009-12-03T11:27:28Z 2009-12-03T11:27:28Z There is no configuration to use HTTP authentication on the site, anywhere. The Web.config has no configuration specific to the service (the .svc file is using the &quot;auto-config&quot; method of WCF services). http://stackoverflow.com/questions/1796719/using-a-different-type-for-a-collection-when-serializing-with-wcf/1797075#1797075 Comment by Blixt on Using a different type for a collection when serializing with WCF Blixt 2009-11-26T17:58:05Z 2009-11-26T17:58:05Z I'll be going with this solution even if it's not ideal (normally I wouldn't want to make properties return values that require the creation of an object - in this case a <code>List</code> - when retrieved). http://stackoverflow.com/questions/1796719/using-a-different-type-for-a-collection-when-serializing-with-wcf/1796748#1796748 Comment by Blixt on Using a different type for a collection when serializing with WCF Blixt 2009-11-25T14:04:44Z 2009-11-25T14:04:44Z Hmmm... I guess the only way to do what I want is to have a callback that is called by the serializer for every item in a collection. The callback would return an object with only the values I want, which is serialized and put in the serialized collection. So basically, for the <code>Siblings</code> collection, the serializer would call the callback for every <code>Person</code> instance, and the callback would return a <code>Guid</code> value instead. This way I don't need an extra class, and I get the serialized structure I want. Is this possible with WCF? http://stackoverflow.com/questions/1796719/using-a-different-type-for-a-collection-when-serializing-with-wcf/1796748#1796748 Comment by Blixt on Using a different type for a collection when serializing with WCF Blixt 2009-11-25T13:18:55Z 2009-11-25T13:18:55Z I see. I didn't want to force my domain objects to conform to my WCF service though, I want them to be completely untouched by anything related to the service. What I wanted was a way to &quot;inherit&quot; the structure of the domain object, only handling a few specific cases (reference lists) differently, so that I don't get as much overhead. http://stackoverflow.com/questions/1783901/suggestions-needed-alternative-to-overloading-is-and-as-operators-in-net Comment by Blixt on Suggestions needed: alternative to overloading "is" and "as" operators in .NET Blixt 2009-11-25T07:55:01Z 2009-11-25T07:55:01Z Could this be described as per-instance (rather than per-type) inheritance? Also, what happens to the underlying <code>p</code> object when you apply <code>pa</code>-specific values? http://stackoverflow.com/questions/1176122/pdo-insert-help/1176190#1176190 Comment by Blixt on PDO Insert Help Blixt 2009-11-19T07:33:27Z 2009-11-19T07:33:27Z Good question... It's most likely to support/behave like the underlying library for PDO. It's definitely possible, since PHP supports a variable number of arguments. You could make your own sub-class with an <code>execute</code> that calls <code>parent::execute(func&#95;get&#95;args())</code> http://stackoverflow.com/questions/1756576/is-comet-easier-in-asp-net-with-asynchronous-pages Comment by Blixt on Is Comet easier in ASP.NET with Asynchronous Pages? Blixt 2009-11-18T15:02:07Z 2009-11-18T15:02:07Z From what I can see, asynchronous in this case appears to be for how threads are handled on the server... As far as I know, the output is still sent in one chunk when the page is finished processing, which completely eliminates the possibility for Comet to work with the ASP.NET model... I would be happy to be proven wrong though. http://stackoverflow.com/questions/1742871/how-to-get-good-perfomance-of-regex-in-java/1742903#1742903 Comment by Blixt on How to get good perfomance of Regex in java Blixt 2009-11-16T15:31:02Z 2009-11-16T15:31:02Z Yeah that's more like what I'd use. If the part before colons can be more than one character you should probably add a word boundary too. Or a look-behind that checks for beginning of string/comma. http://stackoverflow.com/questions/1742871/how-to-get-good-perfomance-of-regex-in-java/1742889#1742889 Comment by Blixt on How to get good perfomance of Regex in java Blixt 2009-11-16T15:28:23Z 2009-11-16T15:28:23Z Well, considering how it is structured, it can potentially cause a lot of back-tracking, which will make the regular expression much slower than if it had been optimized. But as you said, it only matters if the regular expression is called often or on large strings. http://stackoverflow.com/questions/1742871/how-to-get-good-perfomance-of-regex-in-java Comment by Blixt on How to get good perfomance of Regex in java Blixt 2009-11-16T15:27:03Z 2009-11-16T15:27:03Z It would be better if you described what you want to match. Do you want to match a sequence like your example, where the last item is <code>A:something</code> or <code>C:something</code>? http://stackoverflow.com/questions/1109277/importing-md5salt-passwords-to-md5/1109329#1109329 Comment by Blixt on Importing MD5+Salt Passwords to MD5. Blixt 2009-11-16T09:04:06Z 2009-11-16T09:04:06Z I don't see what you're trying to say with your comment... that security is pointless because it won't be 100% effective? Just as security evolves, so does hacking. You will never reach a point where something is 100% secure. But by shifting the effort/reward ratio towards effort, you make hackers less likely to choose you as a target. That's why you should always strive to make your security solution as efficient as possible. http://stackoverflow.com/questions/1721405/why-does-and-give-different-results/1721598#1721598 Comment by Blixt on Why does ".*" and ".+" give different results? Blixt 2009-11-12T12:16:09Z 2009-11-12T12:16:09Z I would not have expected the second output, but most likely this is an question of how <code>replaceAll</code> or equivalent is implemented. While the Java version matches empty string at position 0 and starts looking for next match at position 1, Perl most likely starts looking at position 0 again (but this time disallowing an empty match to avoid an infinite loop). http://stackoverflow.com/questions/1721405/why-does-and-give-different-results/1721507#1721507 Comment by Blixt on Why does ".*" and ".+" give different results? Blixt 2009-11-12T12:11:53Z 2009-11-12T12:11:53Z I disagree. The exhibited behavior is very intentional, and well documented. It's perhaps clearer to understand what happens if stepped through a regular expression debugger. It will start at position 0 in the string. It will attempt to match <code>.</code> (any character) which matches <code>f</code>. Thanks to <code>&#42;</code> it will continue matching. This makes it match <code>foo</code> and now it's at position 3 (after <code>o</code>). Since <code>replaceAll</code> keeps replacing after the previous match until there is no match, it will now try again. <code>.</code> fails to match, but since it's ok to match 0 times (<code>&#42;</code>), it will still succeed. Thus two matches.