User callingshotgun - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T04:10:39Zhttp://stackoverflow.com/feeds/user/2876http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1391872/any-ideas-on-what-platform-this-site-is-built-with-http-www-nibbledish-com/1391906#13919060Answer by callingshotgun for Any ideas on what platform this site is built with http://www.nibbledish.com?callingshotgun2009-09-08T04:03:45Z2009-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-coldfusion1How do you see the client-side URL in ColdFusion?callingshotgun2009-02-23T21:05:50Z2009-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#7271900Answer by callingshotgun for C# 3.0 - How can I order a list by week name starting on monday?callingshotgun2009-04-07T19:11:20Z2009-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#6840310Answer by callingshotgun for What's the best way to resolve a combinatorial explosion of interactions?callingshotgun2009-03-26T00:05:12Z2009-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#6789391Answer by callingshotgun for Untar multipart tarball on Windowscallingshotgun2009-03-24T19:40:31Z2009-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#6745420Answer by callingshotgun for Is there a business proven cloud store / Key=>Value Database? (Open Source)callingshotgun2009-03-23T18:04:54Z2009-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#6519340Answer by callingshotgun for With the advent of extension methods, are abstract classes less attractive?callingshotgun2009-03-16T19:57:07Z2009-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-instead1Suppress a SWF Click Event in IE, follow anchor tag insteadcallingshotgun2009-02-12T23:56:49Z2009-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#3645161Answer by callingshotgun for What to program for a gadget that can deduce what I'm doing? The ultimate life-hack?callingshotgun2008-12-12T23:53:15Z2008-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#2633376Answer by callingshotgun for What is the most poorly named application out there?callingshotgun2008-11-04T20:38:30Z2008-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#206875199Answer by callingshotgun for What real life bad habits has programming given you?callingshotgun2008-10-15T23:17:44Z2008-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#1989221Answer by callingshotgun for How does one get to work for a video game company?callingshotgun2008-10-13T20:30:10Z2008-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 & 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&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#1341811Answer by callingshotgun for Why are 'out' parameters in .Net a bad idea?callingshotgun2008-09-25T15:56:50Z2008-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#7679261Answer by callingshotgun for What is the single most effective thing you did to improve your programming skills?callingshotgun2008-09-16T20:40:53Z2008-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#601961Answer by callingshotgun for In C# (or any language) what is/are your favourite way of removing repetition?callingshotgun2008-09-13T00:16:16Z2008-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&page=2" rel="nofollow">http://www.hanselman.com/blog/CategoryView.aspx?category=Source+Code&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#553290Answer by callingshotgun for In SQL Server is it possible to get "id" of a record when Insert is executed?callingshotgun2008-09-10T21:08:38Z2008-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-2Answer by callingshotgun for Your favourite algorithm and the lesson it taught you.callingshotgun2008-08-28T00:02:19Z2008-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#264601Answer by callingshotgun for Your favourite algorithm and the lesson it taught you.callingshotgun2008-08-25T17:27:35Z2008-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#206875Comment by callingshotgun on What real life bad habits has programming given you?callingshotgun2009-07-07T17:17:51Z2009-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? "Conflict Resolution"http://stackoverflow.com/questions/631850/how-do-you-name-your-many-to-many-relationship-tables/631926#631926Comment by callingshotgun on How do you name your many-to-many relationship tables?callingshotgun2009-03-10T20:24:06Z2009-03-10T20:24:06ZDisagree. Post(singular)Tags(plural) implies a one-to-many relationship. This would be appropriate in a situation such as "PostComments".