User CrippledSmurf - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T05:13:59Zhttp://stackoverflow.com/feeds/user/6890http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/193912#1939129Answer by CrippledSmurf for What's the most egregious pop culture perversion of programming?CrippledSmurf2008-10-11T09:53:56Z2008-11-12T16:23:57Z<ol>
<li>The idea that governments and financial institutions don't audit their code to prevent the presence of back doors and the like in their software</li>
<li>The idea that an iPod can be retrofitted in order to use it as part of a plot to hack into a bank</li>
<li>The idea that encryption can be overcome by a single man sitting typing at a single computer in a small amount of time, while being held at gunpoint</li>
<li>The idea that UNIX mainframes run 3D window / file managers and that these can be access remotly in full fedelity on an old mac</li>
<li>The idea that the security policies of a major organization would allow a password as simple as "god"</li>
<li>The idea that someone in a management position which was not IT related would have enough rights that the compramise of her accont (with the password god) would cause a serious security breach</li>
<li>The idea that when a system administrator audits the activity of a system, he identifies logged in users by their password ("god wouldn't be up this late")</li>
</ol>
http://stackoverflow.com/questions/139228/what-do-you-do-with-a-developer-that-does-not-test-his-code/261066#2610662Answer by CrippledSmurf for What do you do with a developer that does not test his code?CrippledSmurf2008-11-04T06:27:06Z2008-11-04T06:27:06Z<p>Peer programming is another possibility. If he is with another skilled developer on the team who dies meet quality standards and knows procedure then this has a few benifits:</p>
<ol>
<li>With an experienced developer over his shoulder he will learn what is expected of him and see the difference between his code and code that meets expectations</li>
<li>The other developer can enforce a test first policy: not allowing code to be written until tests have been written for it</li>
<li>Similarly, the other developer can verify that the code is up to standard before it is checked-in reduicing the nmber of bad check-ins</li>
</ol>
<p>All of this of course requires the company and developers to be receptive to this process which they may not be.</p>
http://stackoverflow.com/questions/220609/what-got-you-started-in-programming/220961#2209610Answer by CrippledSmurf for What got you started in programming?CrippledSmurf2008-10-21T06:26:29Z2008-10-21T06:26:29Z<p>My first computer was a an Apple Macintosh LC III which I was given as a tool to help me write (I have a physical disability which prvents me from writing, so i shall never know the joys of a white board), as I was so young it was heavily secured using a product by the name of At Ease which is basically a highly restrictive replacement for the Finder.</p>
<p>I have a vague memory of my granddad showing me the BEEP function in a very early version of Claris Works (Mac office suite), i thought this was THE most amazing thing EVER. I could make something quack whenever I wanted.</p>
<p>A few years later (possibly age 5) the LC III went and was replaced by a Mac PowerBook 9500C which had a different security system (SnartStuff FoolProof) that just placed restrictions on Finder, this let me discover AppleScript which I could use to make the computer crash in interesting ways, I liked doing this, it wasn't coding per se, but I think it was the precursor to it.</p>
<p>Skip forward a few years, the Mac has gone, replaced by the very new windows 98 SE, it was here that my adventures really began when in 1999 I received a copy of QBASIC for dummies</p>
<p>My first program went something like this</p>
<pre><code>DO
PRINT "hI";
LOOP
</code></pre>
<p>From there I dabbled with HTML C++ JavaScript VBScript PHP and finally C# where I am today, it is the first language I have ever really felt comfortable in and I am enjoying learning the concepts of software design.</p>
http://stackoverflow.com/questions/216066/what-exactly-causes-binary-file-gibberish/216086#2160861Answer by CrippledSmurf for What exactly causes binary file "gibberish"?CrippledSmurf2008-10-19T05:59:39Z2008-10-19T05:59:39Z<p>The reason files that are binary display as gibberish when viewed in standard text editors such as notepad is because when displayed with the encodings commonly used by these types of applications (e.g. ASCII of UTF-8) the data is mapped to characters when it is encoded for display, the output of this process generally makes as little sense to humans as the binary data being mapped, ergo the gibberish you see</p>
<p>As previously mentioned these files make more sense when viewed in a different way such as with a hex edutor.</p>
<p>Certain file types can be recognized by data present in all files of a given type, for example all executable files (*.exe) begin with the letters MZ</p>
http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/182135#182135150Answer by CrippledSmurf for What are some funny loading statements to keep users amused?CrippledSmurf2008-10-08T10:57:37Z2008-10-08T10:57:37Z<p>Reticulating splines</p>
http://stackoverflow.com/questions/57331/what-are-the-most-commonly-used-anti-patterns/119474#1194741Answer by CrippledSmurf for What are the most commonly used anti-patterns?CrippledSmurf2008-09-23T06:59:30Z2008-09-23T06:59:30Z<p>I particularly like when when people don't change the name of the automatically generated Form1. This usually indicates that there is not likely to be any attempt at separating UI from logic, and that I'm about to spend the next six hours spelunking through the vast spaghetti maze to find the ten places I need to change in order to make a minor adjustment.</p>
<p>Code files containing many methods with no documentation at all with bodies that all look like this are fun too.</p>
<pre><code>public Class1
{
public void Temp()
{
//HACK: Fix this later maybe
throw new NotImplementedException();
}
</code></pre>
<p>Added Bonus: Under Visual Studio 2005, if method stubs such as this are auto-generated the exception message was specified as a constructor parameter breaking CLS compliance for nothing because the specified message was the same one as the default constructor uses.</p>
http://stackoverflow.com/questions/107264/how-often-to-commit-changes-to-source-control/107310#1073100Answer by CrippledSmurf for How often to commit changes to source control ?CrippledSmurf2008-09-20T05:53:10Z2008-09-20T05:53:10Z<p>I don't have a specific time limit per commit, I tend to commit once a test has passed and I'm happy with the code. I wouldn;t commit code that does not compile or is otherwise in a state that I would not feel good about reverting to in case of failure</p>
http://stackoverflow.com/questions/88454/is-there-any-advantage-in-passing-a-ui-wrapper-to-a-view2Is There Any Advantage in Passing a UI wrapper to a viewCrippledSmurf2008-09-17T22:45:33Z2008-09-18T00:11:47Z
<p>Most of the MVC samples I have seen pass an instance of the view to the controller like this</p>
<pre><code>public class View
{
Controller controller = new Controller(this);
}
</code></pre>
<p>Is there any advantage to passing a class which provides access to just the the properties and events the controller is interested in, like this:</p>
<pre><code>public class UIWrapper
{
private TextBox textBox;
public TextBox TextBox
{
get {return textBox;}
}
public UIWrapper(ref TextBox textBox)
{
this.textBox = textBox;
}
public class View
{
UIWrapper wrapper = new UIWrapper(this);
Controller controller = new Controller(wrapper)
}
</code></pre>
http://stackoverflow.com/questions/63123/any-recommendation-for-a-good-enough-winforms-gui-design/63277#632771Answer by CrippledSmurf for Any recommendation for a good enough Winforms GUI design?CrippledSmurf2008-09-15T14:15:49Z2008-09-15T14:15:49Z<p>Martin Fowler is a good source of information on all things design patterns including MVC. Fowler discusses Passive View and separation of responsibilities is demonstrated also</p>
<p><a href="http://martinfowler.com/eaaDev/ModelViewPresenter.html" rel="nofollow">http://martinfowler.com/eaaDev/ModelViewPresenter.html</a></p>
http://stackoverflow.com/questions/63011/valid-javascript-endless-loop/63047#630470Answer by CrippledSmurf for valid javascript endless loopCrippledSmurf2008-09-15T13:50:04Z2008-09-15T13:50:04Z<p>Perhaps try using a timer which retrieves the next image each time it ticks, unfortunately i don't know any JavaScript so I can't provide a code sample</p>
http://stackoverflow.com/questions/62784/should-you-design-websites-that-require-javascript-in-this-day-age/62861#628611Answer by CrippledSmurf for Should you design websites that require JavaScript in this day & age?CrippledSmurf2008-09-15T13:27:14Z2008-09-15T13:27:14Z<p>It's reasonable to design sites that use JavaScript but it is not safe to assume that all clients have support for Javascript and therefore it is important that you provide a satisfactory experience even when JavaScript is not available</p>
http://stackoverflow.com/questions/62625/how-do-you-know-what-to-test-when-writing-unit-tests/62700#627000Answer by CrippledSmurf for How do you know what to test when writing unit tests?CrippledSmurf2008-09-15T13:10:22Z2008-09-15T13:17:35Z<p>Testing of a class should verify that:
1. methods and properties return expected values<br />
2. Appropriate excepts are thrown when an invalid argument is supplied<br />
3. Interactions between the class and other objects occur as expected when a given method is called</p>
<p>Of course if the getters and setters have no special logic then the tests of the Authenticate andSave methods should cover them, but otherwise an explict test should be written</p>
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/171496#171496Comment by CrippledSmurf on What real life bad habits has programming given you?CrippledSmurf2008-11-04T08:45:41Z2008-11-04T08:45:41Zthank god! I'm not the only one!http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/166139#166139Comment by CrippledSmurf on What real life bad habits has programming given you?CrippledSmurf2008-11-04T08:00:19Z2008-11-04T08:00:19Z@AR I have the same thing with numbershttp://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/166333#166333Comment by CrippledSmurf on What real life bad habits has programming given you?CrippledSmurf2008-11-04T07:52:29Z2008-11-04T07:52:29ZMy girlfriend HATES the fixing things thing too, i get frustrated because code is so precise and people aren't I tend to get annoyed at this lack of precision so I ask questions to find it, which irritates her more