User Karl Seguin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T02:03:51Z http://stackoverflow.com/feeds/user/34 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/904/in-html-how-to-word-break-on-a-dash 13 In HTML, how to word-break on a dash? Karl Seguin 2008-08-04T00:17:34Z 2009-12-16T22:24:25Z <p>give a relatively simple css:</p> <pre><code>&lt;div style="width:150px;"&gt; 12333-2333-233-23339392-332332323 &lt;/div&gt; </code></pre> <p>How do I make it so that the string stays constrained to the width of 150, and simply wraps to a newline on the hyphen?</p> http://stackoverflow.com/questions/104/anatomy-of-a-memory-leak/112#112 38 Answer by Karl Seguin for Anatomy of a "Memory Leak" Karl Seguin 2008-08-01T15:28:12Z 2009-12-11T13:49:21Z <p>The best explanation I've seen is in Chapter 7 of the free Foundations of Programming ebook ;) (<a href="http://codebetter.com/files/folders/codebetter%5Fdownloads/entry179694.aspx" rel="nofollow">http://codebetter.com/files/folders/codebetter_downloads/entry179694.aspx</a>)</p> <p>Basically, in .NET a memory leak occurs when referenced objects are rooted and thus cannot be garbage collected. This occurs accidentally when you hold on to references beyond the intended scope.</p> <p>You'll know that you have leaks when you start getting outofmemoryexceptions or your memory usage goes up beyond what you'd expect (perfmon has nice memory counters). </p> <p>Understanding .NET's memory model is your best way of avoiding it. Specifically, understanding how the garbage collector works and how references work (again, I refer you to chapter 7 of the ebook). Also, be mindful of common pitfalls, probably the most common being events. If object A registered to an event on object B, then object A will stick around until object B disappears because B holds a reference to A. The solution is to unregister your events when you're done. </p> <p>Of course, a good memory profile will let you see your object graphs and explore the nesting/referencing of your objects to see where references are coming from and what root object is responsible (<a href="http://www.red-gate.com/products/ants%5Fmemory%5Fprofiler/index.htm" rel="nofollow">red-gate ants profile</a>, JetBrains dotTrace, <a href="http://memprofiler.com/" rel="nofollow">memprofiler</a> are really good choices, or you can use the text-only windgb and sos, but I'd strongly recommend a commercial/visual product unless your a real guru).</p> <p>I believe unmanaged code is subject to typical memory leaks of unamanged code, except that references shared between the two are managed by the garbage collector. Could be wrong about this last point.</p> http://stackoverflow.com/questions/313/net-migrations-engine 19 .NET Migrations Engine Karl Seguin 2008-08-02T02:02:36Z 2009-10-29T04:28:41Z <p>I was once under the belief that Microsoft was working on an official ruby-like Migration framework. However, I haven't been able to find any additional information (or even the original source of my believe).</p> <p>Does anyone know any information about an official migration framework? or possibly an open source one?</p> http://stackoverflow.com/questions/4305/grid-hosting-for-windows 3 Grid Hosting for Windows Karl Seguin 2008-08-07T02:27:58Z 2009-03-29T05:23:59Z <p>Are there any <strong>good</strong> grid-hosting companies out there that offer .NET stacks? Something like MediaTemple - which won't host the worlds fastest websites, but for the price is far better than "shared hosting". I've used Rackspace's Mosso, but it sucked - it never felt like a normal .NET stack (caching was odd, site recompilation was odd).</p> http://stackoverflow.com/questions/1234/csla-master-class/1239#1239 3 Answer by Karl Seguin for CSLA Master Class Karl Seguin 2008-08-04T13:50:22Z 2009-01-20T17:42:02Z <p>I guess if you have to do CSLA it might be worth it, but if you're looking to enforce your OO knowledge, look elsewhere. CLSA doesn't promote TDD or BDD. It's hard to unit test. Your "object" get completely loaded with data access - doesn't seem OO to me.</p> <p>CSLA is a narrow perspective on how systems ought to be built. It doesn't teach you OO, it teaches you Rocky's vision of OO. I know the ALT.NET crowd has been a little hard on CSLA, but I think it's for good reason. It was a great framework back in VB days -ahead of its time even - but it's very long in the tooth. </p> <p>If you want to learn OO, go with an o/r mapper, get <a href="http://domaindrivendesign.org/books/index.html#DDD_apply" rel="nofollow">Evans' DDD book</a>, and the free <a href="http://tinyurl.com/5jaae2" rel="nofollow">Foundations</a> series. You'll be considerably better off - have a more fundamental understanding of DDD, and most importantly won't be boxed in with a single vision. You'll have the agility to pick an ActiveRecord implementation if that suits your projects needs, or a full blown o/r mapper. Most importantly, you'll actually be able to unit test your code!</p> http://stackoverflow.com/questions/391523/what-are-some-good-free-programming-books/4721#4721 19 Answer by Karl Seguin for What are some good free programming books? Karl Seguin 2008-08-07T13:43:20Z 2008-12-21T23:23:04Z <p>You can check out my free ebook, <a href="http://tinyurl.com/5jaae2" rel="nofollow">Foundations of Programming</a>. (Karl Seguin)</p> http://stackoverflow.com/questions/2187/essential-programming-tools/2200#2200 25 Answer by Karl Seguin for Essential Programming Tools Karl Seguin 2008-08-05T12:43:27Z 2008-12-18T17:26:01Z <p>Generally:</p> <ol> <li>Subversion or Git, Tortoise</li> <li>Mantis</li> <li>3SqlLite (I use it almost exclusively for prototypes and demos)</li> <li>MySQL - For the price, it's stupidly amazing</li> </ol> <p>For me (keeping in mind that I mostly do .NET):</p> <ol> <li>VS.NET is far beyond any other editor</li> <li>Resharper is a must-have add-in for .NET programmers</li> <li>Reflector to look inside dlls</li> <li>SnippetCompiler</li> <li>My text editor of choice is EditPadPro</li> <li>IntelliJ for my Java (Resharper and Intellij are so alike it's easy to switch between the two)</li> <li>Red-Gate SQL [Data] Compare</li> <li>DotTrace .NET profiler</li> <li>jProbe Java profiler</li> <li>Reflector (.NET decompiler)</li> <li>Cavaj (Java decompiler)</li> <li>NAnt/Ant, Cruisecontrol</li> </ol> http://stackoverflow.com/questions/3376/what-are-your-must-have-tools/3379#3379 5 Answer by Karl Seguin for What are your must-have tools? Karl Seguin 2008-08-06T13:40:35Z 2008-11-22T16:44:29Z <p>check out this question: <a href="http://stackoverflow.com/questions/2187/essential-programming-tools">http://stackoverflow.com/questions/2187/essential-programming-tools</a></p> http://stackoverflow.com/questions/2648/what-php-framework-would-you-choose-for-a-new-application-and-why/2660#2660 1 Answer by Karl Seguin for What PHP framework would you choose for a new application and why? Karl Seguin 2008-08-05T18:30:31Z 2008-11-15T16:56:43Z <p>My best experience comes from using <a href="http://akelos.org/" rel="nofollow" title="Akelos PHP Framework">Akelos</a>. Until PHP 5.3/6, the lack of late static binding makes PHP frameworks a little frail, but Akelos manages to actually be a lot more OO than most. It also has a nice view syntax (sintags).</p> http://stackoverflow.com/questions/234467/tech-books-you-have-but-never-read/234473#234473 4 Answer by Karl Seguin for Tech Books you have but never read Karl Seguin 2008-10-24T17:24:18Z 2008-10-24T17:24:18Z <p>The bible (seriously)</p> http://stackoverflow.com/questions/233261/pass-viewdata-as-member-from-other-viewdata-to-renderpartial-makes-the-first-null/233335#233335 0 Answer by Karl Seguin for Pass Viewdata as member from other viewdata to RenderPartial makes the first null Karl Seguin 2008-10-24T12:36:33Z 2008-10-24T12:36:33Z <p>Noticed the same thing, I fixed it with the following, though I'm not sure if it's the "right" solution:</p> <pre><code>&lt;% Html.RenderPartial("xxx", new ViewDataDictionary(ViewData.Model.Colors)); %&gt; </code></pre> http://stackoverflow.com/questions/231062/what-are-your-most-common-uses-for-regular-expressions/231079#231079 1 Answer by Karl Seguin for What are your most common uses for regular expressions? Karl Seguin 2008-10-23T19:20:21Z 2008-10-23T19:20:21Z <p>so you're looking for the type regular expressions we use for validating?</p> <p>telephone (various international formats), postal code, zip code, credit card #s, email, dates, digits, ssn, urls (http, ftp, ...)</p> http://stackoverflow.com/questions/230636/implementing-wait-for-condition-or-cancel-with-threading/230654#230654 1 Answer by Karl Seguin for Implementing wait for condition or cancel with threading Karl Seguin 2008-10-23T17:32:15Z 2008-10-23T17:32:15Z <p>This might not work for you, but based on the information you've provided, I'd suggest looking at thread.Join(XXX) where XXX is the number of milliseconds to wait. It'll greatly simplify your code.</p> <p><a href="http://msdn.microsoft.com/en-us/library/6b1kkss0.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/6b1kkss0.aspx</a></p> <p>you can block the calling thread to the new thread for a specified amount of time, after which you can abort the Resolve thread.</p> <pre><code>resolveThread.Start(); resolveThread.Join(2000); //this will block the main thread, thus making resolve synchronous resolveThread.Abort(); //timeout has expired </code></pre> http://stackoverflow.com/questions/230595/what-artifacts-to-save-for-a-nightly-build/230627#230627 17 Answer by Karl Seguin for What artifacts to save for a nightly build? Karl Seguin 2008-10-23T17:24:45Z 2008-10-23T17:24:45Z <p>You shouldn't save anything for the sake of saving it. you should save it because you need it (i.e., QA uses nightly builds to test). At which point, "how long to save it" becomes however long QA wants them.</p> <p>i wouldn't "save" source code so much as tag/label it. I don't know what source control you're using, but tagging is trivial (performance &amp; disk space) for any quality source control system. Once your build is tagged, unless you need binaries, there really isn't any benefit to just having them around because you can simply re-compile when necessary from source.</p> <p>Most CI tools let you tag on each successful build. This can become problematic for some systems as you can easily have 100+ tags a day. For such cases I recommend still running a nightly build and only tagging that.</p> http://stackoverflow.com/questions/229654/vs-net-watched-objects-and-recursive-depth 0 VS.NET "watched" objects and recursive depth Karl Seguin 2008-10-23T13:11:43Z 2008-10-23T13:11:43Z <p>In VS.NET, when you add an item to the watch, why is the base property often (always??) endlessly recursive?</p> http://stackoverflow.com/questions/871/why-is-git-better-than-subversion/876#876 19 Answer by Karl Seguin for Why is git better than Subversion? Karl Seguin 2008-08-03T22:47:42Z 2008-10-13T19:13:34Z <p>Well, it's distributed. Benchmarks indicate that it's considerably faster (given its distributed nature, operations like diffs and logs are all local so of course it's blazingly faster in this case), and working folders are smaller (which still blows my mind).</p> <p>When you're working on subversion, or any other client/server revision control system, you essentially create working copies on your machine by <em>checking-out</em> revisions. This represents a snapshot in time of what the repository looks like. You update your working copy via updates, and you update the repository via commits.</p> <p>With a distributed version control, you don't have a snapshot, but rather the entire codebase. Wanna do a diff with a 3 month old version? No problem, the 3 month old version is still on your computer. This doesn't only mean things are way faster, but if you're disconnected from your central server, you can still do many of the operations you're used to. In other words, you don't just have a snapshot of a given revision, but the entire codebase.</p> <p>You'd think that Git would take up a bunch of space on your harddrive, but from a couple benchmarks I've seen, it actually takes less. Don't ask me how. I mean, it was built by Linus, he knows a thing or two about filesystems I guess.</p> http://stackoverflow.com/questions/415/decode-email-address-from-gravatar-hash/421#421 6 Answer by Karl Seguin for Decode email address from Gravatar hash? Karl Seguin 2008-08-02T11:59:58Z 2008-10-07T12:11:13Z <p>Gravatar uses an md5 hash. Now, typically you'd run the risk of a brute force dictionary attack, but emails tend to content pretty abnormal words...for example, I'd be surprised if a dictionary of words contained "stackoverflow", and then to add the permutations of ".com", ".net" and ".org" plus the many possibilities of usernames (which may be an alias rather an a real name), and I think it's reasonably safe.</p> <p>That said, they probably could have used something other than MD5. MD5 is a hashing algorithm meant for speed. This is a common mistake for people who hash passwords. You should pick something intentionally slow, so that brute force attacks are even less likely.</p> http://stackoverflow.com/questions/11783/in-net-will-empty-method-calls-be-optimized-out 12 In .NET, will empty method calls be optimized out? Karl Seguin 2008-08-14T23:33:35Z 2008-08-15T09:25:10Z <p>Title says it all, given an empty method body, will the JIT optimize out the call (I know the C# compiler won't). How would I go about finding out? What tools should I be using and where should I be looking?</p> <p>Since I'm sure it'll be asked, the reason for the empty method is a preprocessor directive.</p> http://stackoverflow.com/questions/11783/in-net-will-empty-method-calls-be-optimized-out/11797#11797 0 Answer by Karl Seguin for In .NET, will empty method calls be optimized out? Karl Seguin 2008-08-14T23:51:03Z 2008-08-14T23:51:03Z <p>@Chris: Makes sense, but it could optimize out calls to the method. So the method would still exist, but static calls to it could be removed (or at least inlined...)</p> <p>@Jon: That just tells me the language compiler doesn't do anything. I think what I need to do is run my dll through ngen and look at the assembly.</p> http://stackoverflow.com/questions/6231/whats-your-ideal-multiple-monitor-setup-for-programming/6235#6235 4 Answer by Karl Seguin for What's your ideal multiple-monitor setup for programming? Karl Seguin 2008-08-08T18:34:20Z 2008-08-08T18:34:20Z <p>This can vary from person to person. We have people who use tools that really benefit from very large monitors. But, I think 2 monitors, 19" or 22"-wide is by far the sweet spot of cost/productivity. Get the 22"-wide if you can comfortably swallow it.</p> <p>Anything above this standard is wasteful in my opinion (except for those edge cases). It wastes money, it wastes desk space, and it wastes electricity.</p> http://stackoverflow.com/questions/6126/how-do-you-handle-huge-if-conditions/6157#6157 6 Answer by Karl Seguin for How do you handle huge if-conditions? Karl Seguin 2008-08-08T17:09:38Z 2008-08-08T17:09:38Z <p>I'm surprised no one got this one yet. There's a refactornig specifically for this type of problem:</p> <p><a href="http://www.refactoring.com/catalog/decomposeConditional.html" rel="nofollow">http://www.refactoring.com/catalog/decomposeConditional.html</a></p> http://stackoverflow.com/questions/6067/finding-good-small-software-companies/6069#6069 1 Answer by Karl Seguin for Finding good small software companies Karl Seguin 2008-08-08T15:28:43Z 2008-08-08T15:28:43Z <p><a href="http://www.craigslist.org" rel="nofollow">http://www.craigslist.org</a></p> http://stackoverflow.com/questions/5989/whats-the-best-way-to-kick-ass-in-programming/6006#6006 1 Answer by Karl Seguin for What's the best way to kick ass in programming? Karl Seguin 2008-08-08T14:42:55Z 2008-08-08T14:42:55Z <p>Jeff's list is good, but it isn't great as its missing the <a href="http://tinyurl.com/5jaae2" rel="nofollow">free Foundation ebook</a></p> http://stackoverflow.com/questions/5880/are-there-any-negative-reasons-to-use-an-n-tier-solution/5883#5883 2 Answer by Karl Seguin for Are there any negative reasons to use an N-Tier solution? Karl Seguin 2008-08-08T13:06:16Z 2008-08-08T13:06:16Z <p>it tends to take an inexperienced team longer to build 3-tier.It's more code, so more bugs. I'm just playing the devil's advocate though.</p> http://stackoverflow.com/questions/5846/add-1-to-a-field-mysql/5859#5859 0 Answer by Karl Seguin for Add 1 to a field (MySQL) Karl Seguin 2008-08-08T12:43:41Z 2008-08-08T12:43:41Z <p>Josh: I downmodded you because, as Mat said, you had the completely wrong answer. What's showing up now isn't what I saw.</p> http://stackoverflow.com/questions/5846/add-1-to-a-field-mysql/5850#5850 0 Answer by Karl Seguin for Add 1 to a field (MySQL) Karl Seguin 2008-08-08T12:36:27Z 2008-08-08T12:36:27Z <p>UPDATE skills SET level = level + 1 WHERE id = $id</p> http://stackoverflow.com/questions/5833/looking-for-wysiwyg-html-editor/5845#5845 -1 Answer by Karl Seguin for Looking for WYSIWYG HTML editor Karl Seguin 2008-08-08T12:32:02Z 2008-08-08T12:32:02Z <p><a href="http://freetextbox.com/" rel="nofollow">http://freetextbox.com/</a> is the de facto free standard for ASP.NET applications.</p> http://stackoverflow.com/questions/5562/do-you-prefer-to-code-on-a-laptop-or-a-desktop-or-both/5575#5575 3 Answer by Karl Seguin for Do you prefer to code on a Laptop or a Desktop, or both ? Karl Seguin 2008-08-08T01:58:08Z 2008-08-08T01:58:08Z <p>for me, coding is all about a good keyboard and dual 24" widescreen monitors.</p> http://stackoverflow.com/questions/5446/a-project-with-no-leader/5452#5452 2 Answer by Karl Seguin for A project with no leader Karl Seguin 2008-08-07T22:52:15Z 2008-08-07T22:52:15Z <p>self-organized teams is common for agile shops. why should there be a leader? why not make everyone equally accountable for the success of the project as a whole?</p> http://stackoverflow.com/questions/5138/webcomics-besides-xkcd/5139#5139 1 Answer by Karl Seguin for Webcomics besides XKCD Karl Seguin 2008-08-07T18:50:58Z 2008-08-07T18:50:58Z <p><a href="http://www.penny-arcade.com/comic/" rel="nofollow">Penny Arcade</a></p> <p><a href="http://www.dilbert.com/" rel="nofollow">Dilbert</a></p> http://stackoverflow.com/questions/234467/tech-books-you-have-but-never-read/234473#234473 Comment by Karl Seguin on Tech Books you have but never read Karl Seguin 2008-10-24T17:37:07Z 2008-10-24T17:37:07Z I'm pretty sure he didn't initially ask for tech books. http://stackoverflow.com/questions/230636/implementing-wait-for-condition-or-cancel-with-threading/230654#230654 Comment by Karl Seguin on Implementing wait for condition or cancel with threading Karl Seguin 2008-10-23T18:01:04Z 2008-10-23T18:01:04Z It might not work, but using this approach you'd remove the event and the timer (removing code is always good!). Instead you'd rely on the timeout functionality of the Join method to cancel the thread. From what you showed, your event+timer is nothing more than a timeout mechanism. http://stackoverflow.com/questions/229654/vs-net-watched-objects-and-recursive-depth Comment by Karl Seguin on VS.NET "watched" objects and recursive depth Karl Seguin 2008-10-23T15:42:43Z 2008-10-23T15:42:43Z Createa a new MVC project (with the default template), add a breakpoint somewhere in HomeController.Index and add a watch on &quot;ViewData&quot; - Expand the &quot;Raw View&quot; and &quot;base&quot; ad infinitum. This isn't an MVC issue, just the quickest example I could come up.