Spoike

6,143
reputation
521 views

Registered User

name Spoike
member for 1 year
seen 12 hours ago
website
location Sweden
age 28

I'm a jack of most trades residing in Sweden and currently working on web development.

In the little free time that I have, all kinds of stuff happen such as drawing pretty pictures, perform ball juggling, and/or solving Rubik's cube. My personal programming projects usually either involves C# or Java.

12h
revised How can a programmer get out of the learning “void”?
added links, typo and grammar fix
13h
revised C#: How to TDD a file downloader
added 395 characters in body
13h
revised C#: How to TDD a file downloader
Added more info on where to start
13h
answered C#: How to TDD a file downloader
1d
awarded  Nice Question
Dec
7
awarded  Notable Question
Dec
6
awarded  Mortarboard
Dec
6
comment Are bugs easier to produce in one language than in another?
Guys, 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 that productive then something is seriously wrong with you.
Dec
6
comment What should I do to improve my code/style of programming?
@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.
Dec
5
revised What should I do to improve my code/style of programming?
added 596 characters in body
Dec
5
answered What should I do to improve my code/style of programming?
Dec
5
comment How to dynamically draw buttons in .NET windows app?
Is this vb.net or c#? Also what are the buttons supposed to do?
Dec
5
revised Introduction to GUI programming with c
added 307 characters in body; added 192 characters in body
Dec
5
answered Introduction to GUI programming with c
Dec
5
revised Introduction to GUI programming with c
Broke up into clear sentences and highlighted the actual question
Dec
5
comment What was your first computer game that got you interested in computers?
I 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.
Dec
1
revised how to partition the 2d arrays among the processes for “The Game of Life”
added 7 characters in body
Dec
1
revised how to partition the 2d arrays among the processes for “The Game of Life”
added 273 characters in body
Dec
1
answered how to partition the 2d arrays among the processes for “The Game of Life”
Nov
29
answered Best API for simple 2d graphics with Java
Nov
25
comment Java(Swing): influence height of JList in GridBagLayout
+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.
Nov
25
comment How to select a line
I think you can still use the intersect() method if you use a small rectangle as a selection area
Nov
25
comment How to select a line
Wow, 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. (>_<);
Nov
25
asked How to select a line
Nov
24
revised Java Math(s) Parsing API
added 45 characters in body
Nov
24
comment Difficult lessons for new programmers?
A corollary to re-inventing the whell: Do not use regular expressions to parse XML, there are XML parsing frameworks for this.
Nov
23
revised store a string in an int
added edit from OP's answer below
Nov
23
comment store a string in an int
Ponty: Edit the question with this instead.
Nov
23
comment Is Delphi dead?
Tried 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.
Nov
23
comment Is Delphi dead?
+1 for pure awesome
Nov
23
revised Is Delphi dead?
grammar check
Nov
22
comment algorithm to find derivative
@Gurdas Nijor: Derivative is an equation often used in Calculus to determine the tangent of a given point in a function. en.wikipedia.org/wiki/Derivative
Nov
20
revised How do you organise multiple git repositories?
added 305 characters in body
Nov
18
revised Design patterns to avoid
fixing some broken sentences after re-reading, grammar and relevancy check
Nov
17
comment Biff exception in Java
If anyone wonders what BIFF means, it is the Excel file format and is an acronym of "Binary Interchange File Format".
Nov
16
comment Object oriented programming - class design confusion
+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.
Nov
16
comment Object oriented programming - class design confusion
"Is-a" (inheritance) and "has-a" (composition) analogy is a good start to think about things, but it is worth noting that this has some limitations. It's better to go for the "prefer composition over inheritance" than think everything about "is-a and has-a" since the latter leads to preference for inheritance. It is difficult to maintain large inheritance structures.
Nov
16
revised model-view-presenter book
fixed cut-n-paste grammar
Nov
16
answered model-view-presenter book
Nov
8
revised Pac-Man representation with Finite State Automaton
added entry actions
Nov
8
answered Pac-Man representation with Finite State Automaton
Nov
8
revised Pac-Man representation with Finite State Automaton
added 501 characters in body
Nov
8
comment Pac-Man representation with Finite State Automaton
btw, you can draw FSA graphs with GraphViz graphviz.org/Gallery/directed/fsm.html
Nov
8
awarded  Popular Question
Nov
8
revised How to get the name of the calling class in Java?
added 70 characters in body
Nov
8
comment How to get the name of the calling class in Java?
Will this code even compile?
Nov
8
comment Pac-Man representation with Finite State Automaton
Ask a specific question when you have one. Don't force people to do your homework it is unethical.
Nov
8
comment Null Pointer to Object problems
+1 for functions are not internally stored "in" an object. It is a bit different from memory managed languages such as Java or C# as they would throw null pointer exceptions if the program is calling an method on an object that is null.
Nov
8
comment what is shared variable in java
they can be shared as protected and private too as long as the calling method has access to them.
Nov
8
answered what is shared variable in java