User Spoike - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T16:24:22Zhttp://stackoverflow.com/feeds/user/3713http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1903680/pitfalls-of-event-handling-in-java/1907142#19071421Answer by Spoike for Pitfalls of Event Handling in JavaSpoike2009-12-15T12:35:11Z2009-12-15T12:35:11Z<p>As mentioned earlier, Java doesn't have <a href="http://www.akadia.com/services/dotnet%5Fdelegates%5Fand%5Fevents.html" rel="nofollow">delegates and events</a> that C# has. But considering it's a "generalized" implementation of the <a href="http://en.wikipedia.org/wiki/Observer%5Fpattern" rel="nofollow">Observer pattern</a> (GoF) you can implement it on your own.</p>
<p>There are examples in <a href="http://en.wikipedia.org/wiki/Observer%5Fpattern" rel="nofollow">the wikipedia page</a> on how to implement the pattern with <a href="http://java.sun.com/javase/6/docs/api/java/util/Observable.html" rel="nofollow"><code>java.util.Observable</code></a> and <a href="http://java.sun.com/javase/6/docs/api/java/util/Observer.html" rel="nofollow"><code>java.util.Observer</code></a>. The general idea is to let classes that implement <code>Observer</code> to subscribe themselves to an <code>Observable</code> class. </p>
<p>I usually roll my own implementation since it is darn easy to do so, as you only need to make an interface declaring the methods that the "observable" class call to it's registered "observers". Here is a simple example of an observable class that can register <code>SimpleObserver</code> objects and perform some kind of event on them:</p>
<pre><code>public class MyObservableClass {
List<SimpleObserver> observers = new ArrayList<SimpleObserver>();
/**
* Registers the observer
*/
public void addObserver(SimpleObserver observer) {
observers.add(observer);
}
/**
* Removes the registered observer (to be nice towards the
* garbage collector).
*/
public void removeObserver(SimpleObserver observer) {
observers.remove(observer);
}
/**
* Notifies the observers with the given data
*/
private void notifyObservers(String data) {
for(SimpleObserver o : observers) {
o.onEvent(data);
}
}
public void doSomething() {
// Do some stuff
String data = "Waffles and pwnies";
// Notify the observers that something happened.
notifyObservers(data)
}
}
</code></pre>
<p>…and here is the simple observer interface.</p>
<pre><code>public interface SimpleObserver {
void onEvent(String data);
}
</code></pre>
<p>This may seem a bit complex, but the benefit is that the Observable class doesn't need to know what exact other objects are "listening" to it (which is why <em>observers</em> are sometimes called <em>listeners</em>). It provides a clean separation of concerns between them both. The Observers need to register themselves to an observable.</p>
<p>The only "gotcha" that I can think of is that of a memory leak that this pattern may cause even in a memory managed environment such as Java. This is because of the "reference islands" between Observers and Observables which will confuse the garbage collector and not attempt to remove the objects from memory. It is <em>always a good idea to remove unused observers</em>.</p>
http://stackoverflow.com/questions/1865241/c-how-to-tdd-a-file-downloader/1879498#18794981Answer by Spoike for C#: How to TDD a file downloaderSpoike2009-12-10T08:33:04Z2009-12-10T08:47:46Z<p>You can TDD user interface heavy applications if you seperate the logic out of the user interface. This is MVC in a nutshell. Here is one conceptual way of doing it expressed as class-diagram (with the model omitted):</p>
<pre><code>+----------------------+ 1
| MyDownloadUI +--------------+
+----------+-----------+ |
| |
| implements |
v |
+----------------------+ | 1
| {interface} |1 1+--------+------------+
| DownloadView +-----+ DownloadController |
+----------------------+ +---------------------+
</code></pre>
<p>The only thing you need to do on the user interface is to implement a <code>DownloadView</code> interface and have a reference to <code>DownloadController</code> on where it should send it's actions to. The DownloadController should only have a reference to the DownloadView interface whenever it needs to manipulate the UI (more specifically the <em>view</em>). The constructors should look something like these:</p>
<pre><code>//Sample of MyDownloadUI
DownloadController controller;
public MyDownloadUI {
this.controller = new DownloadController(this);
//...
}
//Sample of DownloadController
DownloadView view;
public DownloadController(DownloadView view) {
this.view = view;
//...
}
</code></pre>
<p>This way, the UI can be changed without the controller to worry about how the view looks or what the names of all the labels and lists are.</p>
<p>This has the benefit that you can TDD the logic in the download controller and have a mock that replaces the UI.</p>
<p>To test the actual UI you don't really do unit tests per se, it'll be more a functional test because MyDownloadUI is tightly coupled with DownloadController (unless you make an interface for the DownloadController). For a small project like this, you can pretty much just do manual smoke testing whenever you change the UI or wire something new to the controller.</p>
<p>Whenever you feel like a class is starting to get too much, you always have the option of breaking the logic out to another class (which makes TDD a lot easier). You've already given examples, e.g. <code>DownloadTask</code>, which is clearly a model class, so it's a good start. Then you have the <code>FileDownloader</code> which sends a <code>DownloadedFile</code> to a <code>FileWriter</code>.</p>
<p>The easiest implementation of <code>DownloadController</code> that I could think of is just one method:</p>
<ul>
<li><code>goDownload(List<string> urls)</code> that the MyDownloadUI calls when it wants to start downloading</li>
</ul>
<p>Another one would be:</p>
<ul>
<li><code>addUrl(string url)</code> adds an url to the downloadcontroller's internal list</li>
<li><code>clearUrls()</code> removes all urls in the internal list</li>
<li><code>goDownload()</code> which takes the list of urls and starts the "download process"</li>
</ul>
<p>There are a lot of TDD tutorials out there, my favorite is the video on dnrTV with Jean Paul Boodhoo (<a href="http://www.dnrtv.com/default.aspx?showID=10" rel="nofollow">Part 1</a>, <a href="http://www.dnrtv.com/default.aspx?showID=11" rel="nofollow">Part 2</a>). There is a lot to take in, but it shows a lot how to do it in practice.</p>
http://stackoverflow.com/questions/406580/how-do-you-set-up-your-virtual-machines6How do you set up your virtual machines?Spoike2009-01-02T11:52:39Z2009-12-08T10:41:31Z
<p>Recently the buzz of virtualization has reached my workplace where developers trying out virtual machines on their computers. Earlier I've been hearing from several different developers about setting up virtual machine in their desktop computers for sake of keeping their development environments clean.</p>
<p>There are plenty of Virtual Machine software products in the market:</p>
<ul>
<li>Microsoft <a href="http://sv.wikipedia.org/wiki/Microsoft_Virtual_PC" rel="nofollow">Virtual PC</a></li>
<li>Sun <a href="http://www.virtualbox.org/" rel="nofollow">VirtualBox</a></li>
<li><a href="http://www.vmware.com/" rel="nofollow">VMWare</a> <a href="http://en.wikipedia.org/wiki/VMware_Workstation" rel="nofollow">Workstation</a> or <a href="http://en.wikipedia.org/wiki/VMware_Player" rel="nofollow">Player</a></li>
<li>Parallell Inc's <a href="http://www.parallels.com/en/products/desktop/" rel="nofollow">Parallells Desktop</a></li>
</ul>
<p>I'm interested to know how you use virtualization effectively in your work. My question is <strong>how do you use Virtual Machines for day-to-day development</strong> and for what reason?</p>
http://stackoverflow.com/questions/1852808/what-should-i-do-to-improve-my-code-style-of-programming/1853303#18533039Answer by Spoike for What should I do to improve my code/style of programming?Spoike2009-12-05T20:11:26Z2009-12-05T21:27:20Z<p>There are several ways of improving yourself and there are so many books on that topic. So I'll list whatever I think is the way to improve.</p>
<p>The first step to improving your programming skills requires you to do <strong>everything wrong</strong> and that will lead to the heading of the initial and most important step…</p>
<h2>Step 1. Reach Your Pain Point!</h2>
<p>This may seem a bit <em>zen</em>, the only way you'll learn how to do programming right, is to eat your own dogfood. This is a very hard lesson to learn for many programmers, and this is really what keeps most programmers from writing maintainable code. These kinds of programmers are not feeling the pain themselves, and shy away or block off the pain that is their code. </p>
<p>I say: <strong>Don't do that!</strong> Instead make a mistake that will hurt you so much that you absolutely can't stand and you'll <a href="http://literally.barelyfitz.com/" rel="nofollow">literally</a> start weeping in tears… and most importantly <strong>learn</strong> from it.</p>
<p>This I learnt the hard way… <em>several times</em>. There is nothing wrong with <a href="http://www.codinghorror.com/blog/archives/000300.html" rel="nofollow">making mistakes</a>, but there is a great deal of wrong of not learning from them. I want to emphasis on "learning" here, i.e. to really go through everything that went wrong, or was problematic, and find a solution to how to do it differently but better. Here is an anecdote of mine:</p>
<blockquote>
<p>Once I tried to make a database application on Java (which was a school assignment), using only one frame class with lots of tabs. All the code resided in the same code file. It was hell programming it all because of several reasons:</p>
<ul>
<li>Each time the compiler had to build one giant code file took almost half a minute. Also scrolling through one giant code file is a pain in the butt.</li>
<li>Unclear requirements from the assignment left for a lot of interpretation. And most of them were wrong.</li>
</ul>
<p>I failed the assignment and had to do it all over again, which made me really angry, and this was only partly because of the code which <strong>pained</strong> me so much to see. </p>
<p>…but I had time now and I was determined to show that <strong>asshat</strong> of a teacher that I will code the <strong><em>best damn database application EVER</em></strong>. So for the points above I did the following:</p>
<ul>
<li>I started over from scratch, this time breaking up the logic in several classes. This cut down compiling time drastically. It only took a second or so to compile, as classes that weren't touched didn't need to rebuild. It was also easier to find what I wanted because it's easier to open up a small file than to scan through one giant one.</li>
<li>I wrote a requirements report, 40 pages long, one all the design considerations (both UI and database) and why I decided for one over another.</li>
</ul>
<p>I managed to do it, in time, and over the teacher's expectations. Little did I know that several years later when I got into the software making industry that I'd be maintaining a database application <strong>that had the exact rookie mistakes</strong> that my early database application had.</p>
<p>Oh, how I <em>hate</em> going through the pain of maintaining a >5000 LOC source file one more time. This time it was a .NET app instead of a Java one.</p>
</blockquote>
<p><strong>So how can you reach your pain point?</strong></p>
<p>I've found the most effective way to reach your pain point is to write a program for yourself, one that will make your life easier. Then leave it for a while and resume after several weeks or so. I dare you, you will hate your own code… </p>
<p>…but this is normal. Now find out <strong>why you hate it</strong>. What's the thing in your code that's so <em>painful</em> to see that it is bugging your mind? What are the steps you can take to avoid this mistake in the future?</p>
<p><hr></p>
<p>If there is one step you need to take, it is the one above. All other steps from here on out are the tips that everyone will give you to make your code better.</p>
<p>However there is no point of going through them unless you're ready to improve because you really, whole heartedly, can't stand your own damned code. Because then, they will all <em>stick</em>.</p>
<h2>Step 2. Go faster!</h2>
<p>There are a lot of things that your editor or your integrated development environment (IDE) will do in order to make you go faster. Find out all the short-cuts, code-assist features. Start doing things quickly. Don't stop at the small details, look at the big picture.</p>
<p>Retyping code a lot to the point of being too repetetive? Use "search and replace".</p>
<p>Trust me, going for speed lets you gain experience points that you can spend on learning more programming stuff.</p>
<h2>Step 3. Refactoring time!</h2>
<p>Yes, start to learn <a href="http://en.wikipedia.org/wiki/Code%5Frefactoring" rel="nofollow">refactoring</a>. In order to refactor, you need to find a <em>code smell</em>. Something that catches your eyes that just looks wrong, so wrong that you are wanting to correct the wrongness… Actually, it shouldn't <em>smell</em> for you. Instead it should give an stinking <em>odeur</em> instead for you. You need to be as sensetive as a high class chef. That way, you will refactor, and you will make it smell nice again.</p>
<p>Refactoring can be complex, refactoring can be simple. Try to do the simple ones first as you should know them already. Such as extracting code to it's own method.</p>
<p>If there is one mantra you should follow when refactoring it is "Strike three! Refactor!". I.e. if whenever you find yourself copying the same piece of code third time you should <strong>stop</strong> right there. There are ways to avoid code duplication. Move it into it's own method, or even a class.</p>
<p>There are a lot of ways to refactor, so go through a <a href="http://www.refactoring.com/catalog/index.html" rel="nofollow">catalog</a> and have a taste on which ones that will suit you the best. Some may give you new ideas on how to clean up your code. Also be using a refactoring tool in your IDE to do the job for you.</p>
<h2>Step 4. Become inspired!</h2>
<p>If there are two books that you just have to read, then there are two: <a href="http://cc2e.com/" rel="nofollow">Code Complete</a> and <a href="http://pragprog.com/titles/tpp/the-pragmatic-programmer" rel="nofollow">Pragmatic Programmer</a>. The latter book is a more hip and lighter version of the former.</p>
<p>Also go through the list of answers in this page, there are a lot of good tips.</p>
<p>Read them all and engage yourself! Why? Because these tips will help <strong>you alleviate your pain points</strong>. Thus, the only way you'll get something out of the tips, is if you <strong>had</strong> pain points to begin with.</p>
http://stackoverflow.com/questions/1852130/introduction-to-gui-programming-with-c/1852147#18521472Answer by Spoike for Introduction to GUI programming with cSpoike2009-12-05T12:59:26Z2009-12-05T13:08:34Z<p>I'd suggest you should try to learn some object oriented programming properly with a language such as Objective C or C++, since GUI programming is difficult. Particularly even more so in C.</p>
<p>A lot of the concepts in GUI programming revolves about you knowing how objects work, with all the <em>widgets</em> that are composed in any GUI framework, and how they interact together. There is also the concept of <em>events</em> that sends messages from one input source to a graphical component (or between two graphical components).</p>
<p>In summary: it becomes a lot easier to read through documentation when you know what the objects are all about… and even then there is a lot to take in.</p>
http://stackoverflow.com/questions/1824190/how-to-partition-the-2d-arrays-among-the-processes-for-the-game-of-life/1824204#18242042Answer by Spoike for how to partition the 2d arrays among the processes for "The Game of Life"Spoike2009-12-01T05:39:03Z2009-12-01T05:52:05Z<p>What are the pros and cons between the types of partitioning? I tried to find references to the partitionings (which seems to tie in with parallell processing) but it was difficult to find such without going way over my head into it. :)</p>
<p>Try the one that fits your needs the most, since it is an <em>assignment</em> you should try the simplest one first and do the others when time allows.</p>
http://stackoverflow.com/questions/207938/best-api-for-simple-2d-graphics-with-java/1815022#18150220Answer by Spoike for Best API for simple 2d graphics with JavaSpoike2009-11-29T08:37:43Z2009-11-29T08:37:43Z<p><a href="http://processing.org/" rel="nofollow">Processing.org</a> has some good easy-to-use 2D stuff (and 3D). It has a <a href="http://dev.processing.org/reference/core/javadoc/processing/core/PApplet.html" rel="nofollow">PApplet</a> class that implements Applet from AWT together with a bunch of useful operations and works well together with <a href="http://java.sun.com/products/java-media/2D/index.jsp" rel="nofollow">Java2D</a>.</p>
<p>If you just want to mess around with 2d graphics it has a "sketchpad IDE" where you don't need to put it in your java IDE if you just want to experiment with it.</p>
http://stackoverflow.com/questions/24045/ankhsvn-versus-visualsvn/37088#370882Answer by Spoike for AnkhSVN versus VisualSVNSpoike2008-08-31T20:42:16Z2009-11-26T11:08:27Z<p>Here is a funny story: I managed to corrupt one SVN repository with AnkhSVN last year. All I did was moving around the files. Thanks AnkhSVN!</p>
<p>I've been sticking with TortoiseSVN ever since. :)</p>
http://stackoverflow.com/questions/1797209/how-to-select-a-line0How to select a lineSpoike2009-11-25T14:23:07Z2009-11-25T14:58:36Z
<p>So I'm trying to figure out how to implement a method of selecting lines or edges in a drawing area but my math is a bit lacking. This is what I got so far:</p>
<ul>
<li>A collection of lines, each line has two end points (one to start and one to end the line)</li>
<li>The lines are drawn correctly on a canvas</li>
<li>Mouse clicks events are received when clicking the canvas, so I can get the x and y coordinate of the mouse pointer</li>
</ul>
<p>I know I can iterate through the list of lines, but I have no idea how to construct an algorithm to select a line by a given coordinate (i.e. the mouse click). Anyone got any ideas or point me to the right direction?</p>
<pre><code>// import java.awt.Point
public Line selectLine(Point mousePoint) {
for (Line l : getLines()) {
Point start = l.getStart();
Point end = l.getEnd();
if (canSelect(start, end, mousePoint)) {
return l; // found line!
}
}
return null; // could not find line at mousePoint
}
public boolean canSelect(Point start, Point end, Point selectAt) {
// How do I do this?
return false;
}
</code></pre>
http://stackoverflow.com/questions/36862/how-do-you-organise-multiple-git-repositories/36905#369052Answer by Spoike for How do you organise multiple git repositories?Spoike2008-08-31T15:11:54Z2009-11-20T15:29:44Z<p>I haven't tried nesting git repositories yet because I haven't run into a situation where I need to. As I've read on the <a href="http://irc%3A//irc.freenode.net/git" rel="nofollow">#git channel</a> git seems to get confused by nesting the repositories, i.e. you're trying to git-init inside a git repository. The only way to manage a nested git structure is to either use <a href="http://www.kernel.org/pub/software/scm/git/docs/git-submodule.html" rel="nofollow"><code>git-submodule</code></a> or Android's <a href="http://source.android.com/download/using-repo" rel="nofollow"><code>repo</code></a> utility.</p>
<p>As for that backup responsibility you're describing I say <strong>delegate</strong> it... For me I usually put the "origin" repository for each project at a network drive at work that is backed up regularly by the IT-techs by their backup strategy of choice. It is simple and I don't have to worry about it. ;)</p>
http://stackoverflow.com/questions/449731/design-patterns-to-avoid/449753#44975355Answer by Spoike for Design patterns to avoidSpoike2009-01-16T07:22:53Z2009-11-18T07:53:55Z<h2>Patterns are complex</h2>
<p>All design patterns should be used with care. In my opinion <a href="http://www.industriallogic.com/xp/refactoring/catalog.html" rel="nofollow">you should refactor towards patterns</a> when there is a valid reason to do so instead of implementing a pattern right away. The general problem with using patterns is that they add complexity. Overuse of patterns makes a given application or system cumbersome to further develop and maintain.</p>
<p>Most of the time, there is a simple solution, and you won't need to apply any specific pattern. A good rule of thumb is to use a pattern whenever pieces of code tend to be replaced or need to be changed often and be prepared to take on the caveat of complex code when using a pattern.</p>
<p>Remember that <a href="http://www.codinghorror.com/blog/archives/000380.html" rel="nofollow">your goal should be simplicity</a> and employ a pattern if you see a practical need to support change in your code.</p>
<h2>Principles over patterns</h2>
<p>It may seem like a moot to use patterns if they can evidently lead to over-engineered and complex solutions. However it is instead much more interesting for a programmer to read up on <em>design techniques and principles</em> that lay the foundation for most of the patterns. In fact one of my <a href="http://oreilly.com/catalog/9780596007126" rel="nofollow">favorite books about on design patterns topic stresses this</a> by reiterating on what principles are applicable on the pattern in question. They are simple enough to be useful than patterns in terms of relevance. Some of the principles are general enough to encompass more than object oriented programming (OOP), such as <a href="http://stackoverflow.com/questions/56860/what-is-the-liskov-substitution-principle">Liskov Substitution Principle</a>, as long as you can build modules of your code.</p>
<p>There are a multitude of design principles but those described in the <a href="http://en.wikipedia.org/wiki/Design%5FPatterns" rel="nofollow">first chapter of GoF book</a> are quite useful to start with.</p>
<ul>
<li><em>Program to an 'interface', not an 'implementation'.</em> (Gang of Four 1995:18)</li>
<li><em>Favor 'object composition' over 'class inheritance'.</em> (Gang of Four 1995:20)</li>
</ul>
<p>Let those sink in on you for a while. It should be noted that when GoF was written an <a href="http://en.wikipedia.org/wiki/Interface%5F%28computer%5Fscience%29" rel="nofollow">interface</a> means anything that is an abstraction (which also means super classes), not to be confused with the interface as a type in Java or C#. The second point principle comes from the observed overuse of inheritance which is <a href="http://stackoverflow.com/questions/1740706/object-oriented-programming-class-design-confusion/">sadly still common today</a>.</p>
<p>From there you can read up on <a href="http://www.lostechies.com/blogs/chad%5Fmyers/archive/2008/03/07/pablo-s-topic-of-the-month-march-solid-principles.aspx" rel="nofollow">SOLID principles</a> which was made known by Robert Cecil Martin <a href="http://en.wikipedia.org/wiki/Robert%5FCecil%5FMartin" rel="nofollow">(aka. Uncle Bob)</a>. Scott Hanselman interviewed Uncle Bob in a <a href="http://www.hanselman.com/blog/HanselminutesPodcast145SOLIDPrinciplesWithUncleBobRobertCMartin.aspx" rel="nofollow">podcast about these principles</a>:</p>
<ul>
<li><strong>S</strong>ingle Responsibility Principle</li>
<li><strong>O</strong>pen Closed Principle</li>
<li><strong>L</strong>iskov Substitution Principle</li>
<li><strong>I</strong>nterface Segregation Principle</li>
<li><strong>D</strong>ependency Inversion Principle</li>
</ul>
<p>These principles are a good start to read up on and discussed together with your peers. You may find the principles to interweave with each other and other processes such as <a href="http://en.wikipedia.org/wiki/Separation%5Fof%5Fconcerns" rel="nofollow">seperation of concerns</a> and <a href="http://en.wikipedia.org/wiki/Dependency%5Finjection" rel="nofollow">dependency injection</a>. After doing <a href="http://en.wikipedia.org/wiki/Test-driven%5Fdevelopment" rel="nofollow">TDD</a> for a while you also may find that these principles come naturally in practice as you need to follow them to some degree in order to create <em>isolated</em> and <em>repeatable</em> unit tests.</p>
http://stackoverflow.com/questions/1740633/model-view-presenter-book/1740750#17407501Answer by Spoike for model-view-presenter bookSpoike2009-11-16T08:06:48Z2009-11-16T08:14:38Z<p>At the moment there aren't many good books about the subject on its own since it is a grab bag of many other interrelated subjects and a derivative of Model-View-Controller (MVC). Most programmers probably stumble upon Model-View-Presenter (MVP) either by studying Design Patterns, through a framework or a <a href="http://msdn.microsoft.com/en-us/magazine/cc188690.aspx" rel="nofollow">blog post</a>. The differences between MVC and MVP in my mind are just semantics.</p>
<p>Since there are several ways of implementing MVC or MVP you might want to look at the documentation for known frameworks that employ the patterns, e.g. <a href="http://www.mvcsharp.org/" rel="nofollow">MVC#</a> or <a href="http://www.asp.net/mVC/" rel="nofollow">ASP.NET MVC</a>. The best book I've personally read about MVC overall is the <a href="http://oreilly.com/catalog/9780596007126" rel="nofollow">Head First in Design Patterns</a> book, though the book is Java centric.</p>
<p>Furthermore there is a quick overview of <a href="http://en.wikipedia.org/wiki/Model%5FView%5FPresenter" rel="nofollow">MVP pattern</a> on Wikipedia with references to pattern implementations on .NET that may be worth checking out. Since MVP is considered a derivative of <a href="http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller" rel="nofollow">MVC</a> it might be useful to skim through Trygve Reenskaug's <a href="http://heim.ifi.uio.no/~trygver/themes/mvc/mvc-index.html" rel="nofollow">original articles on the matter</a> since he first formulated MVC on paper.</p>
http://stackoverflow.com/questions/1696220/pac-man-representation-with-finite-state-automaton/1696808#16968080Answer by Spoike for Pac-Man representation with Finite State AutomatonSpoike2009-11-08T15:05:53Z2009-11-08T15:20:29Z<p>If you're designing a <a href="http://en.wikipedia.org/wiki/State%5Fdiagram" rel="nofollow">state diagram</a>, try to first figure out what kind of <strong>states</strong> that your <a href="http://en.wikipedia.org/wiki/Finite-state%5Fmachine" rel="nofollow">state machine</a> will have, instead of numbering the states. </p>
<p>Here is a simple example, your "pac man" <em>needs to be</em> walking, checking and eating. So there are three states <code>IS_WALKING</code>, <code>IS_CHECKING</code> and <code>IS_EATING</code>. The diagram for traversing straight forward and eating could be something like the figure below. I'm not sure what kind of diagram notation you're using though I hope it'll clear some things out for you.</p>
<pre><code> GO_AHEAD
+------------------------------------+
| |
v |
+----------------+ false +------------+
| IS_CHECKING |---------------------->| IS_WALKING |
+----------------+ +------------+
| E: CHECK_BERRY | ^
+----------------+ |
| |
| true |
v |
+-----------+ EAT |
| IS_EATING |------------------------------+
+-----------+
</code></pre>
<p>The transitions are more natural and easier to figure out once you have appropriate names for the states. Example of a good name for state is one that spells out quite clearly what the state machine is doing at one particular moment.</p>
http://stackoverflow.com/questions/1695889/what-is-shared-variable-in-java/1696258#16962580Answer by Spoike for what is shared variable in javaSpoike2009-11-08T12:31:14Z2009-11-08T12:31:14Z<p>It depends on what you mean as you can "share variables" or rather "share data" in various ways. I take it that you're a beginner, so I'll make it brief. The <em>short answer</em> is <strong>yes</strong>, you can share variables and below are a couple of ways to do it.</p>
<p><strong>Share data as arguments for parameters in functions</strong></p>
<pre><code>void funcB(int x) {
System.out.println(x);
// funcB prints out whatever it gets in its x parameter
}
void funcA() {
int myX = 123;
// declare myX and assign it with 123
funcB(myX);
// funcA calls funcB and gives it myX
// as an argument to funcB's x parameter
}
public static void main(String... args) {
funcA();
}
// Program will output: "123"
</code></pre>
<p><strong>Share data as attributes in a class</strong></p>
<p>You can define a class with attributes, when you instantiate the class to an object (i.e. you "<em>new</em>" it) you can set the object's attributes and pass it around. Simple example is to have a parameter class:</p>
<pre><code>class Point {
public int x; // this is integer attribute x
public int y; // this is integer attribute y
}
</code></pre>
<p>You can use it in the following way:</p>
<pre><code>private Point createPoint() {
Point p = new Point();
p.x = 1;
p.y = 2;
return p;
}
public static void main(String... args) {
Point myP = createPoint();
System.out.println(myP.x + ", " + myP.y);
}
// Program will output: "1, 2"
</code></pre>
http://stackoverflow.com/questions/1667689/who-owns-documentation/1667838#16678380Answer by Spoike for Who owns documentation?Spoike2009-11-03T14:55:17Z2009-11-03T14:55:17Z<p>The answer depends on what <em>kind</em> of documentation we're talking about:</p>
<ul>
<li><p><strong>End-user documentation</strong> shouldn't be written by programmers, only exception is if they are really good at understanding a what kind of problems users need to solve with your application/program/system. You should really leave this task to a technical writer.</p></li>
<li><p><strong>Code documentation</strong> should totally be written by programmers because they are themselves users of the code. If they're bad at writing, it's okay. Hopefully some other programmer in the team will correct logical errors, grammars or spelling mistakes that some are prone to do (but please write code comment documentation in seperate checkins/commits in order to avoid merge conflicts).</p></li>
</ul>
<p>In the case of ownership I believe in <a href="http://www.extremeprogramming.org/rules/collective.html" rel="nofollow">collective code ownership</a> among programmers. You can ensure higher quality if everyone has a helping hand in it. <strong>Except</strong> for end-user documentation <strong>unless</strong> they're really versed with all requirements that an end-user has (which is impossible in large scale scenarios).</p>
http://stackoverflow.com/questions/1666969/creating-a-class-in-c/1667343#16673431Answer by Spoike for Creating a class in c#Spoike2009-11-03T13:29:45Z2009-11-03T13:29:45Z<p>If you're confused to how classes and objects work, try to read a book (as <a href="http://stackoverflow.com/questions/1666969/creating-a-class-in-c/1666999#1666999">Russell Steen points out</a>).</p>
<p>The terminology in tutorials and programming books may confuse beginners, if this is the case for you then try to fetch a programmer who does know and watch him code a class while asking as many questions you can until you <em>get it</em>. Programmers are generally a nice bunch of people.</p>
<p>If you really want to learn more about OOP (Object Oriented Programming), watch someone do some <a href="http://www.codinghorror.com/blog/archives/001138.html" rel="nofollow">code kata</a> or TDD.</p>
<p>Good luck writing your classes!</p>
http://stackoverflow.com/questions/1660053/net-development-in-a-team/1660093#16600930Answer by Spoike for .NET Development In a TeamSpoike2009-11-02T08:50:06Z2009-11-02T08:50:06Z<p>The best way to prevent developers is to <strong>either</strong> have: </p>
<ul>
<li><p>Source code control that locks files at check-out and that a user can't checkout a whole project</p></li>
<li><p>Great developers that are of high moral fiber (with great working conditions)</p></li>
</ul>
<p>It's just a shame that the first option is counter productive (as they can't build the system for themselves to smoke test) and the second option is impossible for some companies.</p>
http://stackoverflow.com/questions/1646372/teaching-references-in-c/1649010#16490102Answer by Spoike for Teaching References in C#Spoike2009-10-30T10:25:20Z2009-10-30T10:36:40Z<p>Try to explain references with <em>figures</em>, as pure text sometimes don't get through to most people. Many resources and books on the topic, do try to explain through figures as it is difficult to relate allocation through verbal communication alone (this is mostly an issue of attention span for most people).</p>
<p>At least try to point out how objects relate to each other, a simple example would be a simple reference. </p>
<p>Given:</p>
<pre><code>class A {
B b = new B();
}
class B {
int mine = 1;
}
</code></pre>
<p>When instantiating class <code>A</code> as object <code>a</code> from some context the following figure will illustrate how it will all look in the heap. The point of the illustration is to show how the different objects relate to each other and have a mental model for how the heap works.</p>
<pre><code> +-A-----+
a: *---->| |
| | +-B--------+
| b: *--+-->| |
| | | mine: 1 |
+-------+ | |
+----------+
</code></pre>
<p>Also try to explain the difference between heap and stack allocation. Calling a method with parameters. Simple example would be something like this:</p>
<p>Given the following method:</p>
<pre><code>public void doSomething(B b) {
int doMine = b.mine + 1;
}
</code></pre>
<p>When calling <code>doSomething</code> and letting it do it's stuff, at the end <code>doSomething</code>'s stack will look something like below. The point showing that objects do not directly reside inside a stack, but it is just referred to an object in the heap and objects are shared through references.</p>
<pre><code>whoever called doSomething *
|
v
+-doSomething-+ +-B--------+
| b: *--------+-->| |
|-------------| | mine: 1 |
| doMine: 2 | +----------+
+-------------+
</code></pre>
<p>Another illustrative example would be illustrating an array which is an object, and a multidimensional array contains an array of arrays.</p>
http://stackoverflow.com/questions/1617901/what-does-stereotype-mean/1617980#16179804Answer by Spoike for What does "Stereotype" mean?Spoike2009-10-24T13:11:25Z2009-10-24T13:55:04Z<p><a href="http://www.agilemodeling.com/style/stereotype.htm" rel="nofollow">Stereotypes</a> are a construct in UML used to extend the notation. You write a stereotype by surrounding something like a type name with guillemets (i.e. <code>«</code>, <code>»</code> and is pronounced gee-may).</p>
<p>One common example to use stereotypes in UML is to indicate if a class in the diagram is an <em>interface</em> (as the construct in Java and C#) by writing the following above the class name: <code>«interface»</code>. In terms of UML this is to indicate that the class only has <em>pure virtual functions</em>, in other words methods that have no implementation and has to be overrided. <a href="http://www.agilemodeling.com/style/interface.htm" rel="nofollow">Interfaces</a> are so common that it is regarded as a <em>UML classifier</em> since UML 2.0.</p>
<p>The stereotypes are a way to indicate some kind of common functionality or intent in UML that can't be expressed with UML alone, which is <a href="http://en.wikipedia.org/wiki/Meta" rel="nofollow">kinda "meta"</a>. Another way to look at it is that you can use them to make models less verbose.</p>
http://stackoverflow.com/questions/1599667/where-is-the-trac-directory-in-ubuntu/1599706#15997062Answer by Spoike for Where is the Trac directory in Ubuntu?Spoike2009-10-21T09:28:49Z2009-10-21T09:28:49Z<p>It is where you created your trac environment, i.e. where you wrote in the command:</p>
<pre><code>$ trac-admin <your_project_name> initenv
</code></pre>
http://stackoverflow.com/questions/1594543/how-to-write-a-downsampling-function-in-java1How to write a downsampling function in JavaSpoike2009-10-20T13:17:31Z2009-10-20T13:31:49Z
<p>I'm trying to write a filtering function for an image, but I can't seem to wrap my head around (or remember) how to transfer all that math theory into code.</p>
<p>Lets say I have the following function, where the ints inside the arrays are integers between <code>0</code> and <code>255</code> (pretty much grayscale pixels to keep it simple).</p>
<pre><code>private int[][] resample(int[][] input, int oldWidth, int oldHeight,
width, int height)
{
int[][] output = createArray(width, height);
// Assume createArray creates an array with the given dimension
for (int x = 0; x < width; ++x) {
for (int y = 0; y < height; ++y) {
output[x][y] = input[x][y];
// right now the output will be "cropped"
// instead of resampled
}
}
return output;
}
</code></pre>
<p>Right now I'm stuck trying to figure out how to use filters. I've been trying wikipedia but I find the <a href="http://en.wikipedia.org/wiki/Image%5Fscaling" rel="nofollow">articles</a> <a href="http://en.wikipedia.org/wiki/Downsampled" rel="nofollow">they</a> <a href="http://en.wikipedia.org/wiki/Nearest-neighbor%5Finterpolation" rel="nofollow">have</a> there not particularly helpful. Can anyone clue me in on this or knows of any simple code sample?</p>
http://stackoverflow.com/questions/1326827/render-to-bufferedimage-in-java3d0Render to BufferedImage in Java3DSpoike2009-08-25T08:30:15Z2009-10-19T15:01:37Z
<p>Is there a simple way of rendering to a <code>BufferedImage</code> in Java3D?</p>
<p>I know you can <a href="http://java3d.j3d.org/faq/capturing.html" rel="nofollow">extend <code>Canvas3D</code></a>, but it seems cumbersome if I just want to render directly.</p>
http://stackoverflow.com/questions/1346347/why-does-my-off-screen-rendering-canvas3d-not-work0Why does my off screen rendering Canvas3D not work?Spoike2009-08-28T11:10:20Z2009-10-19T15:00:19Z
<p>I've been trying to make off screen rendering to work, using <a href="https://java3d.dev.java.net/" rel="nofollow">Java3D 1.5.2</a>. In my <a href="http://pastie.org/597573" rel="nofollow">source code</a> I've been trying to attach an extended <code>Canvas3D</code> that will do off-screen rendering to <code>SimpleUniverse</code>, but doing so will break the render:</p>
<pre><code>62. // FOR SOME REASON THIS BREAKS RENDERING
63. universe.getViewer().getView().addCanvas3D(canvas);
</code></pre>
<p>The full source code is a bit too large to paste on StackOverflow so I made it available via Pastie over <a href="http://pastie.org/597573" rel="nofollow">here</a>.</p>
<p>Line 63 has been commented out and has the ordinary Canvas3D do on-screen rendering. It will render a cube and display this in a <code>JFrame</code>. However if you remove the comment the off-screen render will cause the on-screen one from not rendering. Also the off-screen rendering will return a "big black nothing" <code>BufferedImage</code>.</p>
<p>I'd like to know how to make the off screen rendering work, i.e. render the scene of a rotated cube to a buffered image. I've been looking at the Java3D provided example code for off-screen rendering and they do it as this as well (with the exception that they use the <code>Raster</code> object to render the off screen buffer back to an on-screen window).</p>
http://stackoverflow.com/questions/229303/are-there-any-good-issue-tracking-systems-that-can-track-git-commits-branches8Are there any good Issue Tracking systems that can track git commits/branchesSpoike2008-10-23T10:49:32Z2009-10-18T13:44:17Z
<p>Are there any good issue tracking systems that can track issues on git commits/branches?</p>
http://stackoverflow.com/questions/1583363/how-to-unit-test-private-methods-in-bdd-tdd/1583500#15835002Answer by Spoike for How to unit test private methods in BDD / TDD?Spoike2009-10-17T23:30:50Z2009-10-18T00:38:26Z<p><strong>Short answer</strong>: You can't test a private method.</p>
<p><strong>Long answer</strong>: You can't test a private method, but if you're inclined to test whatever it does consider <em>refactoring</em> your code. There are two trivial approaches:</p>
<ul>
<li>Test the public method that accesses the private method.</li>
<li>Extract the private code to it's own class, i.e. move the implementation so it can become appropriately public.</li>
</ul>
<p>The first one is simple but has a tendency to let you shoot your own foot as you write more tests and the latter promotes better code and test design.</p>
<p><strong>Contrived answer</strong>: Okay, so I lied. You can test a private method with the help of some <em>reflection magic</em> (some TDD tools support testing private methods). In my experience though, it leads to convoluted unit tests. Convoluted unit tests leads to worse code. Worse code leads to anger. Anger leads to hate. Hate leads to <em>suffering</em>… </p>
<p>The direct effect of production code becoming worser is that the class under test tend to become large and handles many things (violation of Single Responsibility Principle) and harder to maintain. This defeats the purpose of TDD, that is to get production code testable, extensible and more importantly: reusable.</p>
<p>If you're writing tests for a class that is deployed, you could investigate everything that calls the private method and write tests accordingly. If you have the chance to rewrite the class then please do refactor it by splitting the class up. Are you lucky then you'll end up with some code reuse that you can utilize.</p>
http://stackoverflow.com/questions/780741/where-is-visual-studio-2005-express-at4Where is Visual Studio 2005 Express at?Spoike2009-04-23T08:04:06Z2009-10-14T17:13:31Z
<p>I'm working on a project that requires Visual Studio 2005 and I've been trying to find a legitimate download site for Visual Studio 2005 Express, but it seems like Microsoft only wants people to download the 2008 version instead.</p>
<p>Anyone knows why it's like this and if there is some link somewhere where Visual Studio 2005 Express is available?</p>
http://stackoverflow.com/questions/1542768/how-to-implement-autoload-in-a-java-application2How to implement autoload in a Java applicationSpoike2009-10-09T09:22:20Z2009-10-09T09:23:47Z
<p>So I'm writing this JFrame application that has its own document model that can be loaded and saved to a filepath. I'm wondering what good ways are there to make the application open the last saved file when it starts up.</p>
<p>Do I store last saved document filepath in a proprietary way or is there some facility in java that can handle this for me?</p>
http://stackoverflow.com/questions/1518726/recursive-fibonacci/1518939#15189391Answer by Spoike for Recursive FibonacciSpoike2009-10-05T09:02:26Z2009-10-05T09:34:54Z<p>So I was checking out this <a href="http://en.wikipedia.org/wiki/Template%5Fmetaprogramming" rel="nofollow">meta-programming</a> thing that <a href="http://stackoverflow.com/users/41983/liranuna">LiraNuna</a> was talking about in the comments of <a href="http://stackoverflow.com/questions/1518726/recursive-fibonacci/1518793#1518793">this answer</a>. Taking in the syntax examples, the Fibonnaci can be calculated in compile time with the following:</p>
<pre><code>template <int N>
struct Fibonnaci
{
enum { value = Fibonnaci<N - 1>::value + Fibonnaci<N - 2>::value };
};
template <>
struct Fibonnaci<1>
{
enum { value = 1 };
};
template <>
struct Fibonnaci<0>
{
enum { value = 0 };
};
// Fibonnaci<4>::value == 0+1+1+2 = 3
// Fibonnaci<0>::value == 0
</code></pre>
<p><em>Haven't checked if this compiles and works though.</em></p>
http://stackoverflow.com/questions/1496423/git-versus-mercurial-for-net-developers/1518992#15189921Answer by Spoike for Git versus Mercurial for .NET developers?Spoike2009-10-05T09:16:42Z2009-10-05T09:16:42Z<p>At the time of writing, I've used both <a href="http://code.google.com/p/tortoisegit/" rel="nofollow">TortoiseGit</a> and <a href="http://bitbucket.org/tortoisehg/stable/wiki/Home" rel="nofollow">TortoiseHg</a> (for mercurial) in different projects, dominantly java and .net projects. I have to say that TortoiseHg is in the lead as it is much more stable and fully featured of the two.</p>
<p>There is a Mercurial <a href="http://stackoverflow.com/questions/962055/mercurial-integration-into-visual-studio-2005">plugin for Visual Studio 2008</a>, but I'd suggest sticking with TortoiseHg until the plugin itself is stable. Not sure about integration with git, but there is some talk about a plugin for VS <a href="http://stackoverflow.com/questions/507343/using-git-with-visual-studio">here</a>.</p>
http://stackoverflow.com/questions/61400/what-makes-a-good-unit-test49What Makes a Good Unit Test?Spoike2008-09-14T15:20:44Z2009-10-01T15:59:33Z
<p>I'm sure most of you are writing lots of automated tests and that you also have run into some common pitfalls when unit testing. </p>
<p>My question is do you follow any rules of conduct for writing tests in order to avoid problems in the future? To be more specific: What are the <strong>properties of good unit tests</strong> or how do you write your tests?</p>
<p>Language agnostic suggestions are encouraged.</p>
http://stackoverflow.com/questions/1865241/c-how-to-tdd-a-file-downloader/1879498#1879498Comment by Spoike on C#: How to TDD a file downloaderSpoike2009-12-12T11:01:41Z2009-12-12T11:01:41Z@Svish Yes, I made that piece of class diagram by hand. Isn't ASCII art great? :)http://stackoverflow.com/questions/112479/are-bugs-easier-to-produce-in-one-language-than-in-another/112673#112673Comment by Spoike on Are bugs easier to produce in one language than in another?Spoike2009-12-06T08:40:41Z2009-12-06T08:40:41ZGuys, guys! Eclipse wasn't common knowledge in early 2000 (Eclipse foundation wasn't even founded until 2004).
It may seem radical but I agree debuggers are evil, as in if you spend more than 10% of your time debugging, chances are there is some crappy design in your code. Good code design doesn't require debuggers to waste your time (this is a lesson learnt from TDD).
If programmers like debuggers, fine, but if you enjoy spending most of your time stepping through your own code and find <b>that</b> productive then something is seriously wrong with you.http://stackoverflow.com/questions/1852808/what-should-i-do-to-improve-my-code-style-of-programming/1853303#1853303Comment by Spoike on What should I do to improve my code/style of programming?Spoike2009-12-06T08:05:29Z2009-12-06T08:05:29Z@Cylon Cat: Yes, I think that similarly applies to all creative endavours. For myself I've learnt to draw by redrawing stuff a lot. I've found that the quicker you are with recreating or altering your creations, the more you hone your own skills. This applies to programming as well.http://stackoverflow.com/questions/1852490/how-to-dynamically-draw-buttons-in-net-windows-appComment by Spoike on How to dynamically draw buttons in .NET windows app?Spoike2009-12-05T15:37:50Z2009-12-05T15:37:50ZIs this vb.net or c#? Also what are the buttons supposed to do?http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/459486#459486Comment by Spoike on What was your first computer game that got you interested in computers?Spoike2009-12-05T09:03:17Z2009-12-05T09:03:17ZI remember staying away from Zork and text adventure games as I did not know any English at the time. It wasn't until the advent of graphical adventure games from e.g. Sierra On-Line, which were more approachable, that got me into reading the dictionary and translating what was written.http://stackoverflow.com/questions/408989/javaswing-influence-height-of-jlist-in-gridbaglayout/409066#409066Comment by Spoike on Java(Swing): influence height of JList in GridBagLayoutSpoike2009-11-25T16:17:53Z2009-11-25T16:17:53Z+1 This actually helped me with the problem I had. Setting weighty to a JScrollPane (that has a JList) will appropriately resize the component vertically.http://stackoverflow.com/questions/1797209/how-to-select-a-line/1797232#1797232Comment by Spoike on How to select a lineSpoike2009-11-25T14:54:06Z2009-11-25T14:54:06ZI think you can still use the intersect() method if you use a small rectangle as a selection areahttp://stackoverflow.com/questions/1797209/how-to-select-a-line/1797232#1797232Comment by Spoike on How to select a lineSpoike2009-11-25T14:32:33Z2009-11-25T14:32:33ZWow, didn't know about the 2D api. That api will take care of a bunch of other things I had problems with before… if I just knew about it before. (>_<);http://stackoverflow.com/questions/1792080/difficult-lessons-for-new-programmers/1792148#1792148Comment by Spoike on Difficult lessons for new programmers?Spoike2009-11-24T19:16:06Z2009-11-24T19:16:06ZA corollary to re-inventing the whell: Do not use regular expressions to parse XML, there are XML parsing frameworks for this.http://stackoverflow.com/questions/1780410/store-a-string-in-an-int/1781600#1781600Comment by Spoike on store a string in an intSpoike2009-11-23T07:37:39Z2009-11-23T07:37:39ZPonty: Edit the question with this instead.http://stackoverflow.com/questions/1781570/is-delphi-deadComment by Spoike on Is Delphi dead?Spoike2009-11-23T07:36:34Z2009-11-23T07:36:34ZTried to fix the grammar but the phrasing in the end is a bit off. RPK, what exactly are you trying to ask? Where Anders Hejlsberg is buried or what? I think he's buried in the Microsoft offices.http://stackoverflow.com/questions/1781570/is-delphi-dead/1781594#1781594Comment by Spoike on Is Delphi dead?Spoike2009-11-23T07:33:44Z2009-11-23T07:33:44Z+1 for pure awesomehttp://stackoverflow.com/questions/1779867/algorithm-to-find-derivativeComment by Spoike on algorithm to find derivativeSpoike2009-11-22T21:04:44Z2009-11-22T21:04:44Z@Gurdas Nijor: Derivative is an equation often used in Calculus to determine the tangent of a given point in a function. <a href="http://en.wikipedia.org/wiki/Derivative" rel="nofollow">en.wikipedia.org/wiki/Derivative</a>http://stackoverflow.com/questions/1747665/biff-exception-in-javaComment by Spoike on Biff exception in JavaSpoike2009-11-17T09:56:50Z2009-11-17T09:56:50ZIf anyone wonders what BIFF means, it is the Excel file format and is an acronym of "Binary Interchange File Format".http://stackoverflow.com/questions/1740706/object-oriented-programming-class-design-confusion/1740725#1740725Comment by Spoike on Object oriented programming - class design confusionSpoike2009-11-16T11:52:25Z2009-11-16T11:52:25Z+1 Good examples. Another example would be that Fruit is of Edible interface/class and a consumer object, such as an object of Person class, has the Eat(Edible e) method. Which would lead to myPerson.Eat(myEdible) much like the OP was speculating.