User Bill the Lizard - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T04:27:17Zhttp://stackoverflow.com/feeds/user/1288http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1932920/what-have-you-actually-developed-or-contributed-to-the-science-of-computing/1933267#19332673Answer by Bill the Lizard for What have you actually developed or contributed to the science of computing?Bill the Lizard2009-12-19T15:55:38Z2009-12-19T15:55:38Z<p>What would I have to develop for you to consider it a contribution to the science of computing?</p>
<ul>
<li>An operating system?</li>
<li>A programming language or compiler?</li>
<li>A network protocol?</li>
<li>A book on algorithms and data structures?</li>
<li>An open source library?</li>
</ul>
<p>All of these things are created within the constructs of another language or framework.</p>
<p>Developers that simply write programs to fulfill a requirement are still <em>creating</em> something that didn't exist before. I could argue that any new class that I write in Java is extending the language a small amount. It may not be worthy of publication in a journal of computer science, but it's still creative.</p>
http://stackoverflow.com/questions/1931466/sending-an-object-over-the-internet/1931474#19314746Answer by Bill the Lizard for Sending an object over the InternetBill the Lizard2009-12-19T00:30:21Z2009-12-19T00:30:21Z<p>You'll want to start by looking into serialization with the Java <a href="http://java.sun.com/javase/6/docs/api/java/io/Serializable.html" rel="nofollow">Serializable</a> interface. Sun has a good article on it called <a href="http://java.sun.com/developer/technicalArticles/Programming/serialization/" rel="nofollow">Discover the secrets of the Java Serialization API</a>.</p>
<p>Refer to the <a href="http://java.sun.com/docs/books/tutorial/networking/sockets/" rel="nofollow">Java Sockets tutorial</a> for information on actually transferring the serialized object over the network.</p>
http://stackoverflow.com/questions/1929007/constructor-injection-design-for-testability/1929119#19291192Answer by Bill the Lizard for Constructor Injection, design for testabilityBill the Lizard2009-12-18T16:08:41Z2009-12-18T16:08:41Z<p>Having too many arguments in your constructor is a sign that your class has too many responsibilities. If you're just setting fields in your constructor, look to see if some of those fields are only used by a subset of the methods in the class. That's a sign that your arguments and methods can be split up into smaller classes with more focused responsibility.</p>
http://stackoverflow.com/questions/1919469/question-about-java-concurrency-in-practice-example/1919508#19195084Answer by Bill the Lizard for question about "Java Concurrency in Practice" example Bill the Lizard2009-12-17T04:40:29Z2009-12-17T04:40:29Z<p>The reason is explained in the section following the one with the code sample.</p>
<p><strong>3.1.1 Stale data</strong></p>
<blockquote>
<p><code>NoVisibility</code> demonstrated on of the ways that insufficiently synchronized programs can cause surprising results: <em>stale data</em>. When the reader thread examines <code>ready</code>, it may see an out-of-date value. Unless synchronization is used <em>every time a variable is accessed</em>, it is possible to see a stale value for that variable.</p>
</blockquote>
http://stackoverflow.com/questions/1917760/howto-start-eclipse-in-jdk/1917804#19178041Answer by Bill the Lizard for Howto start eclipse in JDK?Bill the Lizard2009-12-16T21:16:22Z2009-12-16T21:16:22Z<p>You can specify which JVM to launch Eclipse under in your <code>eclipse.ini</code> file. There are detailed instructions for different operating systems <a href="http://wiki.eclipse.org/Eclipse.ini" rel="nofollow">on the Eclipse wiki</a>.</p>
http://stackoverflow.com/questions/1916030/should-you-wrap-3rd-party-libraries-that-you-adopt-into-your-project/1916120#19161201Answer by Bill the Lizard for Should you wrap 3rd party libraries that you adopt into your project?Bill the Lizard2009-12-16T17:06:50Z2009-12-16T17:06:50Z<p>The purpose of wrapping even a well-tested and time-proven 3rd-party library is that you might decide to switch libraries at some point in the future. Wrapping it makes it easier to switch without changing any code in your core application. Only the wrapper needs to change.</p>
<p>If you're <em>absolutely sure</em> that you'll never (another absolute) use a different logging framework in your project, go ahead and skip the wrapper. Even having said that, I'd probably hold off on writing the wrapper until I <em>knew</em> I needed it, like the first time I need to switch.</p>
http://stackoverflow.com/questions/1912078/regex-expression-for-aa99-pattern/1912087#19120874Answer by Bill the Lizard for Regex Expression for AA99 patternBill the Lizard2009-12-16T03:30:40Z2009-12-16T03:30:40Z<p>I think you need</p>
<pre><code>"^[A-Za-z][A-Za-z0-9][0-9]{2}$"
</code></pre>
<p>Based on your description:</p>
<blockquote>
<p>The code is four characters that has to start with an alpha followed by an alphanumeric then followed by numerics only...</p>
</blockquote>
<p><code>^[A-Za-z]</code> gives you the start of the string with one alpha.</p>
<p><code>[A-Za-z0-9]</code> gives you one alphanumeric.</p>
<p><code>[0-9]{2}$</code> gives you two numerics at the end of the string.</p>
http://stackoverflow.com/questions/1910426/c-eclipse-galileo-getting-it-to-display-line-numbers-how/1910443#19104433Answer by Bill the Lizard for C++ Eclipse Galileo getting it to display line numbers - how?Bill the Lizard2009-12-15T21:14:51Z2009-12-15T21:14:51Z<p>I have "Show Line Numbers" in the context menu when I right-click on the left-hand side of the editor pane.</p>
http://stackoverflow.com/questions/1910194/garbage-collection-in-java-and-circular-references/1910203#19102037Answer by Bill the Lizard for Garbage Collection in Java and Circular ReferencesBill the Lizard2009-12-15T20:35:22Z2009-12-15T20:35:22Z<p>Java's GC is smart enough to recognize circular references, so these objects will be collected. See the section on unreachable objects in Sun's <a href="http://java.sun.com/docs/books/performance/1st%5Fedition/html/JPAppGC.fm.html" rel="nofollow">The Truth About Garbage Collection</a> for the gory details.</p>
http://stackoverflow.com/questions/1910169/subtraction-order-of-evaluation/1910193#19101932Answer by Bill the Lizard for Subtraction - Order of EvaluationBill the Lizard2009-12-15T20:33:01Z2009-12-15T20:33:01Z<p>Every language that I know of will evaluate that in the expected order, from left to right. However, I'd suggest you just do a quick test in whatever language you're working in to verify this.</p>
http://stackoverflow.com/questions/1905444/finding-a-triplet-having-a-given-sum/1905465#19054650Answer by Bill the Lizard for finding a triplet having a given sumBill the Lizard2009-12-15T06:08:38Z2009-12-15T06:08:38Z<p>This is a variation of the <a href="http://en.wikipedia.org/wiki/Subset%5Fsum%5Fproblem" rel="nofollow">Subset sum problem</a>. There are several approaches given on the page I linked to. This is the sort of problem that's difficult to search for until you know its name, so hopefully you can find more information now that you know what it's called.</p>
http://stackoverflow.com/questions/1901352/preventing-cheating-in-online-chess-games/1901447#19014471Answer by Bill the Lizard for Preventing cheating in online chess games?Bill the Lizard2009-12-14T15:11:19Z2009-12-14T15:11:19Z<p>Online poker sites use anti-bot measures similar to what you're describing. I recommend the series of articles <a href="http://www.codingthewheel.com/archives/how-i-built-a-working-poker-bot" rel="nofollow">How I Built a Working Poker Bot</a> for a good overview of how these systems work, and how they are defeated.</p>
<p>I agree with the others who said that there's not much you can do to stop the most dedicated cheaters, but you might be able to prevent casual cheating. (The problem with that, of course, is that then the dedicated cheaters will rule your site.)</p>
http://stackoverflow.com/questions/42294/how-do-you-get-the-footer-to-stay-at-the-bottom-of-a-web-page19How do you get the footer to stay at the bottom of a Web page?Bill the Lizard2008-09-03T18:51:17Z2009-12-13T23:19:41Z
<p>I have a simple 2-column layout with a footer that clears both the right and left div in my markup. My problem is that I can't get the footer to stay at the bottom of the page in all browsers. It works if the content pushes the footer down, but that's not always the case. </p>
<h3>Update:</h3>
<p>It's not working properly in Firefox. I'm seeing a strip of background color below the footer when there's not enough content on the page to push the footer all the way down to the bottom of the browser window. Unfortunately, this is the default state of the page. </p>
http://stackoverflow.com/questions/1891996/is-computer-science-for-me/1892025#18920253Answer by Bill the Lizard for Is Computer Science For Me?Bill the Lizard2009-12-12T02:17:05Z2009-12-12T02:17:05Z<blockquote>
<p>I love software development. I live for it. I spent almost 100% of my free time writing code for my latest project, priding myself on readability, a lack of complexity, and modularization.</p>
</blockquote>
<p>That's a pretty good sign.</p>
<blockquote>
<p>...however, we're asked to decipher fairly unreadable code in short amounts of time.</p>
</blockquote>
<p>It doesn't get better when you enter the workforce. You will always be asked to read other people's (often terrible, but sometimes awesome, usually in-between) code.</p>
<blockquote>
<p>Do I really want to get into it if all I'm getting into is stepping through algorithms, in an environment where concepts like readability are preached, but not practiced?</p>
</blockquote>
<p>That's a fair assessment, but keep in mind that the people who are <em>preaching</em> readability are probably <em>practicing</em> it, too. Most teachers and programming bloggers do both. Many practitioners do neither. It will probably be your job to clean up after the latter.</p>
<p>Only you can answer your titular question, but I don't think it sounds like you are without hope. It's been my experience that when you show someone a better way to code (not just tell it to them) they start to pick up on good habits and they write cleaner code in the future. You'll get better at reading bad code. If you stick with CS, you'll have plenty of practice.</p>
http://stackoverflow.com/questions/1891937/whats-the-difference-between-combinatorial-and-numerical-problems/1891971#18919710Answer by Bill the Lizard for What's the difference between combinatorial and numerical problemsBill the Lizard2009-12-12T01:59:17Z2009-12-12T01:59:17Z<p><a href="http://www.cs.sunysb.edu/~algorith/major%5Fsection/1.2.shtml" rel="nofollow">Numerical Problems</a> covers a pretty wide range of territory, of which <a href="http://en.wikipedia.org/wiki/Combinatorics" rel="nofollow">Combinatorial Problems</a> are a comparatively narrow subset. Numerical problems are practically any problems involving numbers and arithmetic. Combinatorial problems are those numerical problems that deal with counting different combinations of things. Since this sounds like a homework question, I'll let you peruse the links I provided to find your own examples. (If you read your assigned chapters, there are probably examples given.)</p>
http://stackoverflow.com/questions/49755/design-pattern-for-undo-engine/49781#497811Answer by Bill the Lizard for Design Pattern for Undo EngineBill the Lizard2008-09-08T14:13:27Z2009-12-11T15:16:34Z<p>I had to do this when writing a solver for a peg-jump puzzle game. I made each move a Command object that held enough information that it could be either done or undone. In my case this was as simple as storing the starting position and the direction of each move. I then stored all these objects in a stack so the program could easily undo as many moves as it needed while backtracking.</p>
http://stackoverflow.com/questions/1878472/what-happens-when-subclasses-dont-define-a-constructor-in-java/1878536#18785361Answer by Bill the Lizard for What happens when subclasses don't define a constructor in Java?Bill the Lizard2009-12-10T03:53:03Z2009-12-10T04:04:25Z<p>You want to refer to the <a href="http://java.sun.com/docs/books/jls/third%5Fedition/html/execution.html#12.5" rel="nofollow">Java Language Specification section 12.5 Creation of New Class Instances</a> to get the official rules of object creation. The relevant section is:</p>
<blockquote>
<p>Just before a reference to the newly created object is returned as the result, the indicated constructor is processed to initialize the new object using the following procedure:</p>
<ol>
<li>Assign the arguments for the constructor to newly created parameter variables for this constructor invocation.</li>
<li>If this constructor begins with an explicit constructor invocation of another constructor in the same class (using this), then evaluate the arguments and process that constructor invocation recursively using these same five steps. If that constructor invocation completes abruptly, then this procedure completes abruptly for the same reason; otherwise, continue with step 5.</li>
<li>This constructor does not begin with an explicit constructor invocation of another constructor in the same class (using this). If this constructor is for a class other than Object, then this constructor will begin with an explicit or implicit invocation of a superclass constructor (using super). Evaluate the arguments and process that superclass constructor invocation recursively using these same five steps. If that constructor invocation completes abruptly, then this procedure completes abruptly for the same reason. Otherwise, continue with step 4.</li>
<li>Execute the instance initializers and instance variable initializers for this class, assigning the values of instance variable initializers to the corresponding instance variables, in the left-to-right order in which they appear textually in the source code for the class. If execution of any of these initializers results in an exception, then no further initializers are processed and this procedure completes abruptly with that same exception. Otherwise, continue with step 5. (In some early implementations, the compiler incorrectly omitted the code to initialize a field if the field initializer expression was a constant expression whose value was equal to the default initialization value for its type.)</li>
<li>Execute the rest of the body of this constructor. If that execution completes abruptly, then this procedure completes abruptly for the same reason. Otherwise, this procedure completes normally. </li>
</ol>
</blockquote>
<p>So in your examples, when no constructor is supplied in your class definition, the default one is inserted for you. When you write</p>
<pre><code>new NoCons2();
</code></pre>
<ol>
<li>First the super constructor is called (a call to <code>super()</code> is inserted for you because you don't make the call explicitly).</li>
<li>Instance variables for the class being constructed are initialized.</li>
<li>The rest of the constructor body is executed (nothing in your case).</li>
</ol>
<p>In your first example, x will be set during the construction of <code>NoCons</code> and y will be set during the construction of <code>NoCons2</code>.</p>
<p>So the exact sequence of events in that example will be something like:</p>
<ol>
<li>NoCons2 constructor called.</li>
<li>Call to super(), goto 3</li>
<li>NoCons constructor called.</li>
<li>Call to super(), which is an implicit call to <code>Object()</code>.</li>
<li>Whatever happens in Object constructor.</li>
<li>x is set to 0.</li>
<li>finish body of NoCons constructor, return control back to NoCons2 constructor.</li>
<li>y is set to 0.</li>
<li>finish body of NoCons2 constructor</li>
<li>NoCons2 object construction complete.</li>
</ol>
http://stackoverflow.com/questions/1860483/where-shall-variables-be-defined-within-a-method/1860549#18605491Answer by Bill the Lizard for Where shall variables be defined within a method ?Bill the Lizard2009-12-07T15:06:55Z2009-12-07T15:06:55Z<p>You should initialize them inside the narrowest scope where they are used, so inside the <code>if</code> block in this case.</p>
<pre><code>void foo(Object obj){
if (obj != null) {
int a = 0;
...
}
}
</code></pre>
<p>If they aren't going to be used anywhere outside this block, there's no need to clutter up the method and confuse readers of your code with extra variables declared outside their required scope.</p>
http://stackoverflow.com/questions/1855753/reading-double-values-from-a-file/1855774#18557741Answer by Bill the Lizard for Reading double values from a file.Bill the Lizard2009-12-06T16:08:47Z2009-12-06T16:36:36Z<p>I tried reducing the code down to only test the Scanner by itself. The following code works with your data file:</p>
<pre><code>public static void main(String[] args) {
Scanner scan;
File file = new File("resources\\scannertester\\data.txt");
try {
scan = new Scanner(file);
while(scan.hasNextDouble())
{
System.out.println( scan.nextDouble() );
}
} catch (FileNotFoundException e1) {
e1.printStackTrace();
}
}
</code></pre>
<p>I got the following (expected) output:</p>
<pre><code>0.0
0.0
0.023
0.023
0.05
0.05
0.2
0.2
0.5
0.5
0.8
0.8
0.95
0.95
0.977
0.977
1.0
1.0
</code></pre>
<p>Try this to make sure you're referencing the correct file.</p>
http://stackoverflow.com/questions/1854246/what-is-the-best-book-for-learning-scala-for-an-experienced-programmer/1854270#18542704Answer by Bill the Lizard for What is the best book for learning Scala for an experienced programmer?Bill the Lizard2009-12-06T03:42:52Z2009-12-06T03:42:52Z<p>I'm going to break a personal rule against recommending books I haven't read. I've heard good things about <a href="http://www.scala-lang.org/docu/files/ScalaByExample.pdf" rel="nofollow">Scala by Example(PDF)</a>. I'm basing this on <a href="http://twitter.com/unclebobmartin/status/6238256808" rel="nofollow">a recommendation from another programmer</a>, and the fact that <a href="http://en.wikipedia.org/wiki/Martin%5FOdersky" rel="nofollow">Odersky</a> designed Scala, so he should know it better than anyone.</p>
http://stackoverflow.com/questions/1844355/java-static-class/1844382#18443821Answer by Bill the Lizard for Java: Static Class?Bill the Lizard2009-12-04T01:44:33Z2009-12-04T02:04:13Z<p>There's no point in declaring the class as <code>static</code>. Just declare its methods <code>static</code> and call them from the class name as normal, like Java's <a href="http://java.sun.com/javase/6/docs/api/java/lang/Math.html" rel="nofollow">Math</a> class.</p>
<p>Also, even though it isn't strictly necessary to make the constructor private, it is a good idea to do so. Marking the constructor private prevents other people from creating instances of your class, then calling static methods from those instances. (These calls work exactly the same in Java, they're just misleading and hurt the readability of your code.)</p>
http://stackoverflow.com/questions/1789834/is-it-okay-to-run-for-loops-in-functional-test-methods/1789920#17899203Answer by Bill the Lizard for Is it okay to run for loops in functional test methods?Bill the Lizard2009-11-24T12:58:44Z2009-12-02T00:40:39Z<p>I usually try to avoid any kind of conditional statements or loops in test code. You want your tests to be as simple as possible, and if you start including logic in your tests you have to test <em>them</em> to make sure they work as designed. I would break the loop up into separate test cases, that way if any one of them fails it's easier to pinpoint exactly what inputs caused the failure. When a test fails it should be immediately obvious what caused it. You shouldn't have to analyze the test code to figure it out.</p>
<h3>Update:</h3>
<p>I do want to add that there are some <em>extremely rare</em> cases where you would want to have a loop in your test cases. One specific example is when you're testing for concurrency issues. This is an exception to the general rule, and you should have a very good and well-understood reason for having any kind of logic in your tests.</p>
http://stackoverflow.com/questions/349889/how-do-you-determine-the-amount-of-linux-system-ram-in-c3How do you determine the amount of Linux system RAM in C++?Bill the Lizard2008-12-08T15:38:24Z2009-11-30T01:16:46Z
<p>I just wrote the following C++ function to programatically determine how much RAM a system has installed. It works, but it seems to me that there should be a simpler way to do this. Can someone tell me if I'm missing something?</p>
<pre><code>getRAM()
{
FILE* stream = popen( "head -n1 /proc/meminfo", "r" );
std::ostringstream output;
int bufsize = 128;
while( !feof( stream ) && !ferror( stream ))
{
char buf[bufsize];
int bytesRead = fread( buf, 1, bufsize, stream );
output.write( buf, bytesRead );
}
std::string result = output.str();
std::string label, ram;
std::istringstream iss(result);
iss >> label;
iss >> ram;
return ram;
}
</code></pre>
<p>First, I'm using <code>popen("head -n1 /proc/meminfo")</code> to get the first line of the meminfo file from the system. The output of that command looks like</p>
<blockquote>
<p>MemTotal: 775280 kB</p>
</blockquote>
<p>Once I've got that output in an <code>istringstream</code>, it's simple to tokenize it to get at the information I want. My question is, is there a simpler way to read in the output of this command? Is there a standard C++ library call to read in the amount of system RAM?</p>
http://stackoverflow.com/questions/1814193/java-help-how-to-draw-images/1814200#18142002Answer by Bill the Lizard for Java help. How to draw imagesBill the Lizard2009-11-29T00:02:40Z2009-11-29T00:18:01Z<p>Yes, Java 2D should be exactly what you need, and <a href="http://java.sun.com/docs/books/tutorial/2d/index.html" rel="nofollow">Sun has some really good tutorials for it</a>.</p>
<p>If you search around you can find lots of Java 2D game tutorials (<a href="http://www.zetcode.com/tutorials/javagamestutorial/" rel="nofollow">like this one</a>) as well. They might be a little more interesting to learn from, and they demonstrate the same features that you're looking for.</p>
http://stackoverflow.com/questions/1814083/what-is-more-important-domain-or-the-technology/1814114#18141146Answer by Bill the Lizard for what is more important Domain or the technology?Bill the Lizard2009-11-28T23:26:22Z2009-11-28T23:26:22Z<p>In the long term, domain knowledge is going to be more important to your career development. Technology changes much faster than most domain knowledge, so it's important to keep up, but not many businesses keep programmers around because of their skills in a specific technology. Domain knowledge can be translated into any programming language you like, and people who only have knowledge about programming are cheap.</p>
http://stackoverflow.com/questions/1813321/what-should-i-name-a-table-that-maps-two-tables-together/1813335#18133354Answer by Bill the Lizard for What should I name a table that maps two tables together?Bill the Lizard2009-11-28T18:39:58Z2009-11-28T18:39:58Z<p>I usually hear that called a Junction Table. I name the table by what it joins, so in your case either ColorShape, or ShapeColor. I think it makes more sense for a Shape to have a color than for a Color to have a shape, so I would go with <code>ShapeColor</code>.</p>
http://stackoverflow.com/questions/1812765/whats-the-most-challenging-algorithm-you-ever-implemented/1812820#18128204Answer by Bill the Lizard for What's the most challenging algorithm you ever implemented?Bill the Lizard2009-11-28T15:38:27Z2009-11-28T15:38:27Z<p>It's not a famous-name algorithm, but an assignment I worked on at my last job.</p>
<p>Inputs: Current longitude, latitude, and altitude of a camera mounted on an airplane. Longitude and latitude of a target on the ground.</p>
<p>The camera was equipped with pan/tilt motors and sensors, and a GPS. The task was to:</p>
<ol>
<li>Point the camera at the target on the ground.</li>
<li>Keep the camera pointed at the target and stable as the airplane moved.</li>
</ol>
http://stackoverflow.com/questions/1811591/common-use-cases-of-erlang/1811597#18115971Answer by Bill the Lizard for Common use cases of erlangBill the Lizard2009-11-28T04:50:33Z2009-11-28T04:50:33Z<p>Wikipedia has a list of <a href="http://en.wikipedia.org/wiki/Erlang%5F%28programming%5Flanguage%29#Projects%5Fusing%5FErlang" rel="nofollow">projects using Erlang</a>.</p>
http://stackoverflow.com/questions/1811569/requirements-for-a-game/1811589#18115890Answer by Bill the Lizard for Requirements for a gameBill the Lizard2009-11-28T04:45:31Z2009-11-28T04:45:31Z<p>As you read different books and work for different companies you'll come to realize that documentation varies widely from one to another (I've used Word documents, wikis, email, and requirements passed down through oral tradition at different places I've worked). I wouldn't worry so much about following the template to the letter. Just the fact that you're keeping documentation that makes sense to you is a huge step in the right direction.</p>
<p>My suggestion for your first project is to keep the documentation up to date as you see fit while you try to get a prototype working. Write down ideas as you have them, but don't let it get in your way of getting the code written. I usually find that I don't implement most features that I think I need at the beginning of a project, but having them written down somewhere reminds me of what to include in version 2.0.</p>
http://stackoverflow.com/questions/1804560/good-ethical-hacking-book/1804615#18046155Answer by Bill the Lizard for Good ethical hacking bookBill the Lizard2009-11-26T16:24:54Z2009-11-26T16:24:54Z<p>First, an ethical hacker is often called a <a href="http://www.amazon.com/s/ref=nb%5Fss?url=search-alias%3Dstripbooks&field-keywords=penetration+testing&x=0&y=0" rel="nofollow">penetration tester</a>, so you may have better luck using that term.</p>
<p>Next, there are a lot of good books on the subject.</p>
<ul>
<li><a href="http://rads.stackoverflow.com/amzn/click/1931841721" rel="nofollow">The Unofficial Guide to Ethical Hacking</a> (it's a bit dated, but has a lot of good background material)</li>
<li><a href="http://rads.stackoverflow.com/amzn/click/1593271441" rel="nofollow">Hacking: The Art of Exploitation</a></li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0071495681" rel="nofollow">Gray Hat Hacking: The Ethical Hacker's Handbook</a></li>
</ul>
<p>Finally, another related field you might be interested in is <a href="http://www.amazon.com/s/ref=nb%5Fss?url=search-alias%3Dstripbooks&field-keywords=computer+forensics&x=0&y=0" rel="nofollow">computer forensics</a>.</p>
http://stackoverflow.com/questions/1926154/php-mail-on-windows-server-2008-not-workingComment by Bill the Lizard on php mail() on windows server 2008 not workingBill the Lizard2009-12-20T04:07:14Z2009-12-20T04:07:14ZClosing as "no longer relevant" to avoid migration.http://stackoverflow.com/questions/1498628/how-can-you-integrate-a-custom-file-browser-uploader-with-ckeditor/1546369#1546369Comment by Bill the Lizard on How can you integrate a custom file browser/uploader with CKEditor?Bill the Lizard2009-12-19T14:37:13Z2009-12-19T14:37:13Z@Jon & @Horst: Thanks for pointing this out. If I cut out anything relevant that needs to be put back in, just let me know.http://stackoverflow.com/questions/1932813/how-get-the-click-on-the-flash-embed-in-ieComment by Bill the Lizard on How get the click on the flash (embed) in IEBill the Lizard2009-12-19T14:24:31Z2009-12-19T14:24:31ZThis is an exact duplicate, but I understand how you couldn't find it by searching. I updated the original question so it will hopefully be easier to find in the future.http://stackoverflow.com/questions/1930768/how-can-i-search-for-work-while-already-employed-without-raising-the-ire-of-my-cuComment by Bill the Lizard on How can I search for work while already employed without raising the ire of my current employer?Bill the Lizard2009-12-18T21:26:53Z2009-12-18T21:26:53ZCareer-development questions should still relate to programming.http://stackoverflow.com/questions/1929007/constructor-injection-design-for-testability/1929119#1929119Comment by Bill the Lizard on Constructor Injection, design for testabilityBill the Lizard2009-12-18T16:43:55Z2009-12-18T16:43:55Z@Tom: With the argument list given, no it doesn't appear to have too many responsibilities, but the OP said he's going to add even more. If those are all Swing components too, then you're still right.http://stackoverflow.com/questions/1929122/of-those-that-you-can-be-proud-of-how-many-web-sites-have-you-developedComment by Bill the Lizard on Of those that you can be proud of how many web sites have you developed?Bill the Lizard2009-12-18T16:14:52Z2009-12-18T16:14:52ZPeople can link to whatever site they want in their user profile. The main page of the site is for programming Q&A.http://stackoverflow.com/questions/1922257/optimizing-t-sql-query-which-constracts-the-same-subtable-twiceComment by Bill the Lizard on Optimizing T-SQL query which constracts the same subtable twiceBill the Lizard2009-12-17T15:33:01Z2009-12-17T15:33:01ZI changed your user name for you. Please be advised that profanity is strongly discouraged on Stack Overflow. This is because the site is primarily used in the workplace, and we don't want to be blocked by anyone's company policies due to profanity.http://stackoverflow.com/questions/1920384/product-thumble-image-in-product-front-pageComment by Bill the Lizard on product thumble image in product front pageBill the Lizard2009-12-17T14:37:23Z2009-12-17T14:37:23ZI deleted the other duplicates of this question. Stop asking the same question repeatedly and just rephrase this one. Click the <code>edit</code> link beneath the tag.http://stackoverflow.com/questions/1921903/calling-a-php-file-in-the-onclick-event/1921918#1921918Comment by Bill the Lizard on Calling a .php file in the onclick() event.Bill the Lizard2009-12-17T14:22:25Z2009-12-17T14:22:25Z@Koper: Unrelated to this answer... The massive number of downvotes you reported have been removed and your reputation has been recalculated.http://stackoverflow.com/questions/1921499/facebox-jumps-on-loadComment by Bill the Lizard on Facebox jumps on loadBill the Lizard2009-12-17T14:07:17Z2009-12-17T14:07:17ZCan you show what code you're using? Even if it's just the "Hello, World!" of Facebox, you probably don't want this getting migrated to Super User or closed as "Not programming related."http://stackoverflow.com/questions/1916817/worst-scene-from-a-movieComment by Bill the Lizard on worst scene from a movieBill the Lizard2009-12-16T18:58:20Z2009-12-16T18:58:20ZDuplicate of <a href="http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming" rel="nofollow" title="whats the most egregious pop culture perversion of programming">stackoverflow.com/questions/175074/…</a>http://stackoverflow.com/questions/1916030/should-you-wrap-3rd-party-libraries-that-you-adopt-into-your-project/1916107#1916107Comment by Bill the Lizard on Should you wrap 3rd party libraries that you adopt into your project?Bill the Lizard2009-12-16T18:12:13Z2009-12-16T18:12:13ZIf it's a complete mismatch then write an adapter. You're trying to reduce the wrapper problem to two options: write bad code or write no code. The third option is to write good code in the first place.http://stackoverflow.com/questions/1916030/should-you-wrap-3rd-party-libraries-that-you-adopt-into-your-project/1916107#1916107Comment by Bill the Lizard on Should you wrap 3rd party libraries that you adopt into your project?Bill the Lizard2009-12-16T17:55:56Z2009-12-16T17:55:56Z@Michael: No, the point of using a wrapper is that you keep the same API and the code using it doesn't have to change at all. The wrapper should only change internally.http://stackoverflow.com/questions/1916030/should-you-wrap-3rd-party-libraries-that-you-adopt-into-your-project/1916107#1916107Comment by Bill the Lizard on Should you wrap 3rd party libraries that you adopt into your project?Bill the Lizard2009-12-16T17:15:51Z2009-12-16T17:15:51ZRewriting a wrapper completely is a <i>lot</i> less work than rewriting your application completely. Still, I agree with the YAGNI principle, and would hold off on writing a wrapper until the first time you <i>do</i> need it.http://stackoverflow.com/questions/1911118/what-movies-should-programmers-watchComment by Bill the Lizard on What movies should programmers watch?Bill the Lizard2009-12-15T23:18:41Z2009-12-15T23:18:41ZMaybe try it on <a href="http://www.reddit.com/r/programming/" rel="nofollow">reddit.com/r/programming</a>