User callingshotgun - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T04:10:39Z http://stackoverflow.com/feeds/user/2876 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1391872/any-ideas-on-what-platform-this-site-is-built-with-http-www-nibbledish-com/1391906#1391906 0 Answer by callingshotgun for Any ideas on what platform this site is built with http://www.nibbledish.com? callingshotgun 2009-09-08T04:03:45Z 2009-09-08T04:03:45Z <p>Best guess is wordpress. Some digging showed that nibbledish is part of a network of sites run by tsavo.com. A google search for tsavo.com yielded a job listing on dice.com (recently pulled, you have to look at it in Google Cache) for someone with "experience developing Wordpress themes and plugins".</p> <p>I can't find any solid evidence- There's no /wp-admin folder, but nibbledish.com/index.php exists, indicating that the site was built using PHP-based blog/cms software.</p> http://stackoverflow.com/questions/579350/how-do-you-see-the-client-side-url-in-coldfusion 1 How do you see the client-side URL in ColdFusion? callingshotgun 2009-02-23T21:05:50Z 2009-08-03T16:00:33Z <p>Let's say, on a coldfusion site, that the user has navigated to <a href="http://www.example.com/sub1/" rel="nofollow">http://www.example.com/sub1/</a></p> <p>The server-side code typically used to tell you what URL the user is at, looks like: <a href="http://#cgi.server_name##cgi.script_name#?#cgi.query_string#" rel="nofollow">http://#cgi.server_name##cgi.script_name#?#cgi.query_string#</a></p> <p>however, "cgi.script_name" automatically includes the default cfm file for that folder- eg, that code, when parsed and expanded, is going to show us "http://www.example.com/sub1/index.cfm"</p> <p>So, whether the user is visiting sub1/index.cfm or sub1/, the "cgi.script_name" var is going to include that "index.cfm".</p> <p>The question is, how does one figure out which URL the user actually visited? This question is mostly for SEO-purposes- It's often preferable to 301 redirect "/index.cfm" to "/" to make sure there's only one URL for any piece of content- Since this is mostly for the benefit of spiders, javascript isn't an appropriate solution in this case. Also, assume one does not have access to isapi_rewrite or mod_rewrite- The question is how to achieve this within coldfusion, specifically.</p> http://stackoverflow.com/questions/727173/c-3-0-how-can-i-order-a-list-by-week-name-starting-on-monday/727190#727190 0 Answer by callingshotgun for C# 3.0 - How can I order a list by week name starting on monday? callingshotgun 2009-04-07T19:11:20Z 2009-04-07T19:11:20Z <p>Clarification: By "each of them has a weekday registered", how is the week day represented? Date Object? Enum? String?</p> http://stackoverflow.com/questions/684000/whats-the-best-way-to-resolve-a-combinatorial-explosion-of-interactions/684031#684031 0 Answer by callingshotgun for What's the best way to resolve a combinatorial explosion of interactions? callingshotgun 2009-03-26T00:05:12Z 2009-03-26T00:05:12Z <p>Not quite an answer, but to me this fairly screams "properties pattern". There's a well-known yegge rant about this, I think it'll offer you some decent pointers.</p> <p><a href="http://steve-yegge.blogspot.com/2008/10/universal-design-pattern.html" rel="nofollow">http://steve-yegge.blogspot.com/2008/10/universal-design-pattern.html</a></p> http://stackoverflow.com/questions/678905/untar-multipart-tarball-on-windows/678939#678939 1 Answer by callingshotgun for Untar multipart tarball on Windows callingshotgun 2009-03-24T19:40:31Z 2009-03-25T01:20:57Z <p>Install 7-zip. Right click on the first tar. In the context menu, go to "7zip -> Extract Here".</p> <p>Works like a charm, no command-line kung-fu needed:)</p> <p>EDIT: I only now noticed that you mention already having tried 7zip. It might have balked if you tried to "open" the tar by going "open with" -> 7zip - Their command-line for opening files is a little unorthodox, so you have to associate via 7zip instead of via the file association system built-in to windows. If you try the right click -> "7-zip" -> "extract here", though, that should work- I tested the solution myself (albeit on a 32-bit Windows box- Don't have a 64 available)</p> http://stackoverflow.com/questions/639545/is-there-a-business-proven-cloud-store-keyvalue-database-open-source/674542#674542 0 Answer by callingshotgun for Is there a business proven cloud store / Key=>Value Database? (Open Source) callingshotgun 2009-03-23T18:04:54Z 2009-03-23T18:04:54Z <p>Instead of looking for something <em>inspired by</em> Google's bigtable- Why not just use bigtable directly? You could write a front-end on Google App-Engine.</p> http://stackoverflow.com/questions/651884/with-the-advent-of-extension-methods-are-abstract-classes-less-attractive/651934#651934 0 Answer by callingshotgun for With the advent of extension methods, are abstract classes less attractive? callingshotgun 2009-03-16T19:57:07Z 2009-03-16T19:57:07Z <p>I think it depends on your use-</p> <p>If your main concern is refactoring to minimize the number of source files and/or classes in an assembly, then yes, extension methods are definitely the way to go, and abstract classes will probably end up being used less.</p> <p>However, for those who care more about what abstract classes represent <em>conceptually</em>, not much has changed. It still makes sense in a code-organizational context to put "public int getCalories()" in abstract class "Food", as it'd be silly for the person eating it (the code using a subclass of food) to define how many calories it has.</p> http://stackoverflow.com/questions/544123/suppress-a-swf-click-event-in-ie-follow-anchor-tag-instead 1 Suppress a SWF Click Event in IE, follow anchor tag instead callingshotgun 2009-02-12T23:56:49Z 2009-02-13T12:44:17Z <p>Scenario: You have a SWF file with a built-in click event that takes you to a certain web page. You want to use that SWF file (source isn't available), but have the click event take you to a different web page. Wrapping the embedded SWF in an anchor tag and setting the swf to wmode=transparent only seems to work in FF, not IE, and since the website in question caters to a non-tech-savvy crowd, IE compatibility is pretty important.</p> <p>What settings need to be changed such that the anchor tag will be respected in a browser compatible way?</p> http://stackoverflow.com/questions/364497/what-to-program-for-a-gadget-that-can-deduce-what-im-doing-the-ultimate-life-ha/364516#364516 1 Answer by callingshotgun for What to program for a gadget that can deduce what I'm doing? The ultimate life-hack? callingshotgun 2008-12-12T23:53:15Z 2008-12-12T23:53:15Z <p>This is the same problem I face with the android (albeit java instead of python). The potential is paralyzing :)</p> <p>I'd recommend checking out what libraries have already been written for doing cool stuff on that phone, and then building off of them- It's a system that provides inspiration, direction, and a good head start. For instance, on the android side, I'm fooling around with "zxing", a library that lets you read barcodes via the cellphone's camera. That's it's own sub-universe of possibilities, but at least it gives me a direction to go. "do cool things with information about products physically nearby"</p> http://stackoverflow.com/questions/263273/what-is-the-most-poorly-named-application-out-there/263337#263337 6 Answer by callingshotgun for What is the most poorly named application out there? callingshotgun 2008-11-04T20:38:30Z 2008-11-04T20:38:30Z <p>ViaGrafix</p> <p>They used to make instrucional videos for computer-related stuff. Imagine newscasters walking you through how to build an HTML document. It was agonizing. The highlight was the day Viagra was released to the public, and suddenly everyone started referring to this company as "ViagraFix".</p> <p>Which was actually an applicable name. The videos seemed to go on forever.</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/206875#206875 199 Answer by callingshotgun for What real life bad habits has programming given you? callingshotgun 2008-10-15T23:17:44Z 2008-10-15T23:17:44Z <p>If I ask a question that's yes/no, I have serious difficulty processing an answer that isn't either one of those.</p> <p>For instance, Q: "Do you care if I flip the channel?" A: "I'm IMing my sister."</p> <p>To me, this is like: public bool canFlip() { return "I'm IMing my sister"; }</p> <p>The return value here is clearly a string, and supposed to be a bool. From the other person's end they're answering the question. From mine they've just committed an invalid cast error. If I ask again and they answer the same, well, that's throwing an exception in a catch block.</p> http://stackoverflow.com/questions/198874/how-does-one-get-to-work-for-a-video-game-company/198922#198922 1 Answer by callingshotgun for How does one get to work for a video game company? callingshotgun 2008-10-13T20:30:10Z 2008-10-13T20:30:10Z <p>At least based on the one I worked for, the two things you're going to be evaluated on are skillset &amp; good fit with the gaming culture</p> <p>The most important thing to do is develop a skillset matching the particular video game company (or type of company) you want to work for. A casual web-game company (like Armor-Games, or anyone you see publishing on kongregate.com) is going to look for someone with Flash skills. Activision / Blizzard feature more resource-intensive desktop games- So someone who can work magic with graphics programming and ridicuously efficient c++.</p> <p>Gaming culture: Do you read gamespot? Ever been to E3? Can you discuss at length things like WoW, D&amp;D, when the new Duke Nukem is coming out? Other software companies are a little resigned to the fact that not everyone is going to be absolutely pumped about the product they're working on. But if a company makes video games for a living, they can demand it as a hiring requirement. Show you know what makes video games good- Everything from art to balancing to interface to being able to describe why something is "Fun".</p> http://stackoverflow.com/questions/134063/why-are-out-parameters-in-net-a-bad-idea/134181#134181 1 Answer by callingshotgun for Why are 'out' parameters in .Net a bad idea? callingshotgun 2008-09-25T15:56:50Z 2008-09-25T15:56:50Z <p>It's like the Tanqueray guy likes to say- Everything in moderation.</p> <p>I definitely would stress against over-use, since it would lead to "writing c in c#" much the same way one can write java in Python (where you're not embracing the patterns and idioms which make the new language special, but instead simply thinking in your old language and converting to new syntax). Still, as always, if it helps your code be more elegant and make more sense, rock out.</p> http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/76792#76792 61 Answer by callingshotgun for What is the single most effective thing you did to improve your programming skills? callingshotgun 2008-09-16T20:40:53Z 2008-09-16T20:40:53Z <ol> <li><p>I'm a big fan of the "learn one programming language every year" system. One year gives you enough time to get past the "okay, I know the syntax, so now I know the language" bias, and forces you to go a little farther and understand what's beneficial in that language, and program in a style native to that language (By which I mean, you don't end up writing java applications using Ruby syntax). Each language will change the way you think about programming- I knew how to use recursion, but <em>thinking</em> in recursion didn't happen until I took a class on prolog (I imagine a functional language like ML would have the same effect).</p></li> <li><p>Start a Pet project. My personal equation for a good pet project is, something you have experience with + something you don't = app you would find useful. For instance, Migratr (my own caffeinated-weekend-turned-ongoing project) started out as "I know c#, but I've never coded against a web API. And I want to move all my photos to Zooomr". It could just as easily have been "I've coded against web API's before, but I don't know C#"</p></li> </ol> <p>Publishing your pet project is an amazing educational experience in itself. Suddenly all the things practically nobody teaches but everybody's supposed to know (for me it was setting up your own testing system, getting the most out of version control systems, how to pace yourself when nobody else is setting your deadlines, how to interact with your users and how to know when to say "no" to feature requests), all that stuff bubbles to the surface and forces you to self-educate on a level you weren't before- at least not by idly reading flamewars on dzone about the pros/cons of the "foo" vs "bar" way of doing things.</p> <p>Doing these two things covers both ends of the spectrum. Learning a new language will make you a better coder. The pet project will make you a better developer:P</p> http://stackoverflow.com/questions/60100/in-c-or-any-language-what-is-are-your-favourite-way-of-removing-repetition/60196#60196 1 Answer by callingshotgun for In C# (or any language) what is/are your favourite way of removing repetition? callingshotgun 2008-09-13T00:16:16Z 2008-09-13T00:16:16Z <p>"cut and paste with minor tweaks here and there" is the kind of code repetition I usually solve with an entirely non-exotic approach- Take the similar chunk of code, extract it out to a seperate method. The little bit that is different in every instance of that block of code, change that to a parameter.</p> <p>There's also some easy techniques for removing repetitive-looking if/else if and switch blocks, courtesy of Scott Hanselman: <a href="http://www.hanselman.com/blog/CategoryView.aspx?category=Source+Code&amp;page=2" rel="nofollow">http://www.hanselman.com/blog/CategoryView.aspx?category=Source+Code&amp;page=2</a></p> http://stackoverflow.com/questions/55159/in-sql-server-is-it-possible-to-get-id-of-a-record-when-insert-is-executed/55329#55329 0 Answer by callingshotgun for In SQL Server is it possible to get "id" of a record when Insert is executed? callingshotgun 2008-09-10T21:08:38Z 2008-09-10T21:08:38Z <p>I tend to prefer attaching a trigger to the table using enterprise manager. That way you don't need to worry about writing out extra sql statements in your code. Mine look something like this:</p> <p>Create Trigger tblName On dbo.tblName For Insert As select new_id = @@IDENTITY</p> <p>Then, from within your code, treat your insert statements like select statements- Just execute and evaluate the results. the "newID" column will contain the identity of the row you just created.</p> http://stackoverflow.com/questions/26301/your-favourite-algorithm-and-the-lesson-it-taught-you/31375#31375 -2 Answer by callingshotgun for Your favourite algorithm and the lesson it taught you. callingshotgun 2008-08-28T00:02:19Z 2008-08-28T00:02:19Z <blockquote> <p>You know that fibonacci has a closed form solution that allows direct computation of the result in a fixed number of steps, right? Namely, (phin - (1 - phi)n) / sqrt(5). It always strikes me as somewhat remarkable that this should yield an integer, but it does. phi is the golden ratio, of course; (1 + sqrt(5)) / 2.</p> </blockquote> <p>Honestly didn't know that. Thanks for the tip:P</p> http://stackoverflow.com/questions/26301/your-favourite-algorithm-and-the-lesson-it-taught-you/26460#26460 1 Answer by callingshotgun for Your favourite algorithm and the lesson it taught you. callingshotgun 2008-08-25T17:27:35Z 2008-08-25T17:27:35Z <p>The iterative algorithm for Fibonacci, because for me it nailed down the fact that the most elegant code (in this case, the recursive version) is not necessarily the most efficient.</p> <p>To elaborate- The "fib(10) = fib(9) + fib(8)" approach means that fib(9) will be evaluated to fib(8) + fib(7). So evaluation of fib(8) (and therefor fib7, fib6) will all be evaluated twice.</p> <p>The iterative method, (curr = prev1 + prev2 in a forloop) does not tree out this way, nor does it take as much memory since it's only 3 transient variables, instead of n frames in the recursion stack.</p> <p>I tend to strive for simple, elegant code when I'm programming, but this is the algorithm that helped me realize that this isn't the end-all-be-all for writing good software, and that ultimately the end users don't care how your code looks.</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/206875#206875 Comment by callingshotgun on What real life bad habits has programming given you? callingshotgun 2009-07-07T17:17:51Z 2009-07-07T17:17:51Z @Leonardo Herrera - Funny story. In a fit of frustration at my inability to fix her laptop, she once chucked a textbook at me. The title? &quot;Conflict Resolution&quot; http://stackoverflow.com/questions/631850/how-do-you-name-your-many-to-many-relationship-tables/631926#631926 Comment by callingshotgun on How do you name your many-to-many relationship tables? callingshotgun 2009-03-10T20:24:06Z 2009-03-10T20:24:06Z Disagree. Post(singular)Tags(plural) implies a one-to-many relationship. This would be appropriate in a situation such as &quot;PostComments&quot;.