User steffenj - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T11:01:26Zhttp://stackoverflow.com/feeds/user/15328http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/263072/why-are-regular-expressions-such-a-complicated-cryptic-mess20Why are regular expressions such a complicated, cryptic mess?steffenj2008-11-04T19:28:02Z2009-11-17T00:58:25Z
<p>Often when I see regular expressions, I only see a total mess of characters. Why does it have to be this way?</p>
<p>I guess what I really want to know is: are there alternatives to regular expressions that basically do the same thing but are implemented in a human readable language?</p>
<p>[UPDATE]</p>
<p>Thanks for all the great responses and inspiration!</p>
<p>I wanted to highlight <a href="http://flimflan.com/blog/ReadableRegularExpressions.aspx" rel="nofollow">this particular link</a> which shows how a (working) alternative would look like, which may also be a good starting point for learning or "simple" regex expressions. But you also quickly get a feel for the verbosity tradeoff.</p>
http://stackoverflow.com/questions/237719/most-frustrating-programming-style-youve-encountered/237809#23780946Answer by steffenj for Most frustrating programming style you've encounteredsteffenj2008-10-26T10:01:03Z2009-11-05T20:58:37Z<p>Since programmers have to write correct code without syntax errors, i am overly picky when it comes to obvious typographical errors in variable and function names. Especially not since rename-refactoring is just a click away.</p>
<p>A few examples:</p>
<pre>
m_bHasLoosed
SetDesturctionMode
GetAdminitsrationRights
HasPlayerWinningGame
</pre>
<p>The last one being the worst of all.</p>
http://stackoverflow.com/questions/778095/windows-forms-using-backgroundimage-slows-down-drawing-of-the-forms-controls2Windows Forms: using BackgroundImage slows down drawing of the Form's controlssteffenj2009-04-22T16:23:32Z2009-06-03T12:42:28Z
<p>I have a Windows Form (C# .NET 3.5) with a number of buttons and other controls on it, all assigned to a topmost Panel which spans the whole Form. Eg the hierarchy is: Form -> Panel -> other Controls.</p>
<p>As soon as i assign a BackgroundImage to the Panel the Controls draw very slowly. I have the same effect if i use the Form's BackgroundImage property and set the Panel's BackgroundColor to "transparent". It appears as if the window with the background is drawn first, then each Control is added one-by-one each with a slight delay before the next is drawn. In other words you can actually follow the order in which each Control is drawn to the Form. Once all Controls have been drawn once this effect doesn't happen anymore but the responsiveness of the Form is still slow.</p>
<p>In Visual Studio's designer i get the same effect, especially noticeable when moving controls around. Sometimes the form's drawing stops completely for a second or two which makes working with BackgroundImage a total drag, both in Designer and the resulting application.</p>
<p>Of course i tried using DoubleBuffered = true and i also set it on all controls using reflection, to no effect. </p>
<p>Also here's the forms loading code because it's a bit unusual. It copies all Controls from another form onto the current form. This is done in order to be able to edit each screen's visual appearance seperately using the Designer while sharing a common form and common code basis. I have a hunch that it may be the cause of the slowdowns but it still doesn't explain why the slowdowns are already noticeable in the Designer.</p>
<pre><code> private void LoadControls(Form form)
{
this.SuspendLayout();
this.DoubleBuffered = true;
EnableDoubleBuffering(this.Controls);
this.BackgroundImage = form.BackgroundImage;
this.BackColor = form.BackColor;
this.Controls.Clear();
foreach (Control c in form.Controls)
{
this.Controls.Add(c);
}
this.ResumeLayout();
}
</code></pre>
<p>As you can see SuspendLayout() and ResumeLayout() are used to avoid unnecessary redraw.</p>
<p>Still, the form is "slow as hell" once a BackgroundImage is used. I even tried converting it to PNG, JPG and BMP to see if that makes any difference. Also, the image is 1024x768 in size but smaller images have the same slowdown effect (although slightly less).</p>
<p>Any ideas/tips?</p>
http://stackoverflow.com/questions/136278/why-should-you-remove-unnecessary-c-using-directives27Why should you remove unnecessary C# using directives?steffenj2008-09-25T21:30:07Z2009-04-25T12:40:15Z
<p>For example, I rarely need:</p>
<pre><code>using System.Text;
</code></pre>
<p>but it's always there by default. I assume the application will use more memory if your code contains unnecessary <a href="http://msdn.microsoft.com/en-us/library/aa664764(VS.71).aspx" rel="nofollow">using directives</a>. But is there anything else I should be aware of?</p>
<p>Also, does it make any difference whatsoever if the same using directive is used in only one file vs. most/all files?</p>
<p><hr></p>
<p><em>Edit: Note that this question is not about the unrelated concept called a <a href="http://msdn.microsoft.com/en-us/library/yh598w02.aspx" rel="nofollow">using statement</a>, designed to help one manage resources by ensuring that when an object goes out of scope, its <a href="http://msdn.microsoft.com/en-us/library/system.idisposable.dispose.aspx" rel="nofollow">IDisposable.Dispose</a> method is called. See <a href="http://stackoverflow.com/questions/75401/uses-of-using-in-c">Uses of "using" in C#</a>.</em></p>
http://stackoverflow.com/questions/136548/pro-con-initializing-a-variable-in-a-conditional-statement-c7Pro/Con: initializing a variable in a Conditional Statement (C++)steffenj2008-09-25T22:18:08Z2009-04-24T08:56:15Z
<p>In C++ you can initialize a variable in an if statement, like so:</p>
<pre><code>if (CThing* pThing = GetThing())
{
}
</code></pre>
<p>Why would one consider this bad or good style? What are the benefits and disadvantages?</p>
<p>Personally i like this style because it limits the scope of the pThing variable, so it can never be used accidentally when it is NULL. However, i don't like that you can't do this:</p>
<pre><code>if (CThing* pThing = GetThing() && pThing->IsReallySomeThing())
{
}
</code></pre>
<p>If there's a way to make the above work, please post. But if that's just not possible, i'd still like to know why.</p>
<p><a href="http://stackoverflow.com/questions/136373/initializing-a-variable-in-a-conditional-statment">Question borrowed from here, similar topic but PHP.</a></p>
http://stackoverflow.com/questions/685407/how-do-i-find-out-what-originally-caused-an-exception-if-it-gets-thrown-from-mic/685415#6854150Answer by steffenj for How do I find out what originally caused an exception, if it gets thrown from Microsoft's code?steffenj2009-03-26T11:45:04Z2009-03-26T11:45:04Z<p>Have you looked into the InnerException property?</p>
http://stackoverflow.com/questions/616375/how-would-you-keep-a-top-view-of-a-train-on-the-tracks-with-the-box2d-physics-eng/665493#6654931Answer by steffenj for How would you keep a top view of a train on the tracks with the Box2D physics engine?steffenj2009-03-20T09:39:08Z2009-03-20T09:39:08Z<p>I believe it would be easier without "real" physics, like the ball movement of games such as Luxor or Tumble Bugs. Meaning: let the train follow a spline which is defined by the tracks.</p>
<p>Using phyiscs is probably overkill to make a train follow a track and could lead to all kinds of undesired side-effects, including jerky motion, train derailing, train getting stuck on junctions, etc.</p>
<p>You could still join the individual wagons together using physic joints, however. Just make sure that only the locomotive gets acceleration forces, the rest of the train just follows or is pushed but stays on the spline.</p>
http://stackoverflow.com/questions/195285/what-stupid-policies-affecting-developers-has-your-company-introduced/195826#19582610Answer by steffenj for What stupid policies affecting developers has your company introduced?steffenj2008-10-12T18:34:04Z2009-02-12T13:06:49Z<p>Every time you log on to one of our company's computers, you are greeted with a MessageBox saying (in effect): </p>
<blockquote>
<p>This computer is company property.
Every item stored on this computer is
company property. Do not download or
install illegal applications, do
illegal activities, bla bla bla (text
runs for 10 more lines or so).</p>
</blockquote>
<p>Sheesh, like we don't know that.</p>
<p>For me it was annoying enough to block the server hosting the script that shows this messagebox with a "servername 127.0.0.1" entry in the "hosts" file. Works like a charm because the only thing that particular server hosts seems to be this messagebox script.</p>
http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/458335#4583355Answer by steffenj for Significant new inventions in computing since 1980steffenj2009-01-19T17:03:36Z2009-01-19T17:03:36Z<p>Touchscreens and Motion Sensing interfaces for human computer interaction.</p>
<p>For example:</p>
<ul>
<li>Touchscreens for PDAs, iPhone or Nintendo DS</li>
<li>Motion Sensing, Nintendo Wii Controller or (to a lesser degree) SixAxis controller for Playstation 3.</li>
</ul>
<p>Only question is ... are these technologies really post-80s?</p>
http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/458033#4580333Answer by steffenj for Significant new inventions in computing since 1980steffenj2009-01-19T15:44:29Z2009-01-19T15:44:29Z<p>Virtual Worlds in which you are represented by a virtual alter ego (aka Avatar), for socializing and roleplaying.</p>
<p>Most commonly referred to as MMOs - Massive(ly) Multiplayer Online. Some popular examples include World of Warcraft, Everquest, Second Life.</p>
<p>PS: no, they still don't require the heavy headgear as typically depicted in geek movies of the 80s. It's a shame....</p>
http://stackoverflow.com/questions/93744/most-common-c-bitwise-operations2Most common C# bitwise operationssteffenj2008-09-18T15:46:20Z2009-01-06T16:31:05Z
<p>For the life of me, i can't remember how to set, delete, toggle or test a bit in a bitfield. Either i'm unsure or i mix them up because i rarely need these. So a "bit-cheat-sheet" would be nice to have.</p>
<p>For example: </p>
<pre><code>flags = flags | FlagsEnum.Bit4; // set bit 4
</code></pre>
<p>or</p>
<pre><code>if ((flags == FlagsEnum.Bit4)) == FlagsEnum.Bit4) // is there a less verbose way?
</code></pre>
<p>Can you give examples of all the other common operations, preferably in C# syntax using a [Flags] enum?</p>
http://stackoverflow.com/questions/158895/how-to-make-a-windows-forms-net-application-display-as-tray-icon6How to make a Windows Forms .NET application display as tray icon?steffenj2008-10-01T18:00:28Z2008-12-29T16:24:20Z
<p>What needs to be done to have your .NET application show up in Window's system tray as icon?</p>
<p>And how do you handle mousebutton clicks on said icon?</p>
http://stackoverflow.com/questions/103347/how-do-you-glue-lua-to-c-code1How do you glue Lua to C++ code?steffenj2008-09-19T16:14:17Z2008-12-10T21:25:48Z
<p>Do you use Luabind, toLua++, or some other library (if so, which one) or none at all?</p>
<p>For each approach, what are the pro's and con's?</p>
http://stackoverflow.com/questions/264883/what-is-the-best-pay-model-for-programmers/264911#2649111Answer by steffenj for What is the best pay model for programmers?steffenj2008-11-05T11:45:13Z2008-11-05T11:45:13Z<p><strong>What is the best pay model for programmers?</strong></p>
<p>That's easy: give me all your money and unlimited time! :)</p>
http://stackoverflow.com/questions/262810/agile-40-hour-week/262860#2628605Answer by steffenj for Agile 40-hour weeksteffenj2008-11-04T18:31:23Z2008-11-04T18:31:23Z<p>Yes, I'm on a 40 hour (actually it's 37.5 hours or so, that's what my contract says) on a project that was run with SCRUM from the beginning. That was about 2 years ago and the first time we implemented SCRUM. It's the project with the least amount of overtime for me personally, and it's also a PC game we're developing. I'm not even in "crunch" mode right now even though we're shipping an open beta on Friday.</p>
<p>We have learned a lot since then about SCRUM and agile. The single most valuable lesson from my point of view is: pod sizes must be reasonable ... we started out with pods with 12-20 members, that didn't work out well at all. A maximum of 10 should not be exceeded. It's too easy to agree on "flaky" and "vague" tasks because otherwise the standup & task planning meetings would take too long. So keep the pod size small and the tasks specific and get the product owner or sign-off's together with those who will work on the task.</p>
<p>Also, with a bi-weekly task planning schedule you have to get every Product Owner to agree on the task list and priorities for the current sprint, and new task requests should be issued before that planning meeting or else it will be ignored for the current sprint. This forced us to improve on inter-pod communication.</p>
http://stackoverflow.com/questions/237282/what-is-the-optimal-algorithm-design-for-a-water-saving-urinal/262519#2625191Answer by steffenj for What is the optimal algorithm design for a water-saving urinal?steffenj2008-11-04T17:04:14Z2008-11-04T17:04:14Z<p>The "parallel-processing" (aka "multi-user") urinals in our school always triggered a complete flush each time before the break bell rings and of course shortly after the "break-is-over" bell. Very simple and effective.</p>
http://stackoverflow.com/questions/237282/what-is-the-optimal-algorithm-design-for-a-water-saving-urinal/262467#2624672Answer by steffenj for What is the optimal algorithm design for a water-saving urinal?steffenj2008-11-04T16:54:43Z2008-11-04T16:54:43Z<p>The best water-conserving algorithm is a urinal without a handle and a broken sensor. </p>
<p>This seems to be the state of our urinal most of the time, so i suppose it has to be intentionally designed to do that in order to conserve precious drinking water.</p>
http://stackoverflow.com/questions/261265/there-is-no-disk-in-the-drive-in-an-application-that-doesnt-require-it/261295#2612950Answer by steffenj for "There is no disk in the drive" in an application that doesn't require itsteffenj2008-11-04T09:05:42Z2008-11-04T09:05:42Z<p>Oh yes, we used to have errors like these ... unfortunately i can't tell you what the fix was but it was something utterly stupid, that much i remember. I could still find the comment in our CDebugStackWalk class, so it may have to do with stack unrolling ... somewhere, somehow...</p>
http://stackoverflow.com/questions/258694/quick-dirty-way-to-update-ids-in-a-string-formatted-as-xml-c2Quick & Dirty way to update "IDs" in a string formatted as XML (C#)steffenj2008-11-03T14:03:17Z2008-11-03T14:37:10Z
<p>For a one-shot operation, i need to parse the contents of an XML string and change the numbers of the "ID" field. However, i can not risk changing anything else of the string, eg. whitespace, line feeds, etc. MUST remain as they are! </p>
<p>Since i have made the experience that XmlReader tends to mess whitespace up and may even reformat your XML i don't want to use it (but feel free to convince me otherwise). This also screams for RegEx but ... i'm not good at RegEx, particularly not with the .NET implementation.</p>
<p>Here's a short part of the string, the number of the ID field needs to be updated in some cases. There can be many such VAR entries in the string. So i need to convert each ID to Int32, compare & modify it, then put it back into the string.</p>
<pre><code><VAR NAME="sf_name" ID="1001210">
</code></pre>
<p>I am looking for the simplest (in terms of coding time) and safest way to do this.</p>
http://stackoverflow.com/questions/224867/what-programming-language-do-you-wish-would-quietly-retire/225028#22502825Answer by steffenj for What programming language do you wish would quietly retire?steffenj2008-10-22T09:31:44Z2008-10-26T20:14:45Z<p>PERL, period!</p>
<p>Actually any language that requires ugly prefixes in variables, maybe even different prefixes depending on the datatype of the variable.</p>
<p>Example:</p>
<pre><code>for (int $i; $i < 10; $i = $i + 1)
{
print("Hello World No $i!");
}
</code></pre>
http://stackoverflow.com/questions/216212/how-do-you-maintain-development-code-and-production-code/216308#2163089Answer by steffenj for How do you maintain development code and production code?steffenj2008-10-19T11:36:14Z2008-10-26T20:00:56Z<p>We use:</p>
<ul>
<li>development branch exclusively</li>
</ul>
<p>until the project nears completion, or we are creating a milestone version (eg. product demo, presentation version), then we (regularly) branch off our current development branch into the:</p>
<ul>
<li>release branch</li>
</ul>
<p>No new features go into the release branch. Only important bugs are fixed in the release branch, and the code to fix these bugs is reintegrated into the development branch.</p>
<p>The two-part process with a development and a stable (release) branch makes life a lot easier for us, and i don't believe we could improve any part of it by introducing more branches. Each branch also has it's own build process, meaning every couple minutes a new build process is spawned and so after a code checkin we have a new executable of all build versions and branches within about half an hour.</p>
<p>Occassionally we also have branches for a single developer working on a new and unproved technology, or creating a proof of concept. But generally it's only done if the changes affects many parts of the codebase. This happens in average every 3-4 months and such a branch is usually reintegrated (or scrapped) within a month or two. </p>
<p>Generally i don't like the idea of every developer working in his own branch, because you "skip go and move directly to integration hell". I would strongly advise against it. If you have a common codebase, you should all work in it together. This makes developers more wary about their checkins, and with experience every coder knows which changes are potentially breaking the build and so testing is more rigorous in such cases.</p>
<p>On the check-in early question:</p>
<p>If you require only <strong>PERFECT CODE</strong> to be checked in, then actually nothing should get checked in. No code is perfect, and for the QA to verify and test it, it needs to be in the development branch so a new executable can be built.</p>
<p>For us that means once a feature is complete and tested by the developer it is checked in. It may even be checked in if there are known (non-fatal) bugs, but in that case the people who would be affected by the bug are usually informed. Incomplete and work-in-progress code can also be checked in but only if it doesn't cause any obvious negative effects, like crashes or breaking existing functionality.</p>
<p>Every now and then an unavoidable combined code & data checkin will make the program unusable until the new code has been built. The very least we do is to add a "WAIT FOR BUILD" in the check-in comment and/or send out an e-mail.</p>
http://stackoverflow.com/questions/237719/most-frustrating-programming-style-youve-encountered/237924#2379242Answer by steffenj for Most frustrating programming style you've encounteredsteffenj2008-10-26T11:57:54Z2008-10-26T11:57:54Z<p>Putting statements on multiple lines, especially when it's really not necessary, as in this case:</p>
<pre><code>if (bOne &&
bTwo &&
bThree &&
bFour &&
(!bFive ||
!bSix))
{
// do something
}
</code></pre>
<p>And it's even more ugly counterpart:</p>
<pre><code>if (bOne
&& bTwo
&& bThree
&& bFour
&& (!bFive
|| !bSix))
{
// do something
}
</code></pre>
http://stackoverflow.com/questions/230218/why-do-people-have-trouble-learning-recursion/230286#2302860Answer by steffenj for Why do people have trouble learning recursion?steffenj2008-10-23T15:50:34Z2008-10-23T15:50:34Z<p>One does not understand recursion by mere explanations.</p>
<p>One has to step through a recursive function in a debugger to understand how it actually works.</p>
http://stackoverflow.com/questions/230218/why-do-people-have-trouble-learning-recursion/230242#2302424Answer by steffenj for Why do people have trouble learning recursion?steffenj2008-10-23T15:40:27Z2008-10-23T15:40:27Z<p>Because brain, the thing in our heads we use, is used to completing one thought before starting another. It doesn't lend itself well to start thinking about the same thought before you have finished thinking about that thought and in the end wrapping it all up from the thoughts you have been thinking but not finished because you were thinking about it more deeply.</p>
<p>Many people are just not used to think like this. :)</p>
http://stackoverflow.com/questions/229762/what-single-software-development-tool-do-you-think-holds-the-most-value/230216#2302161Answer by steffenj for What single software development tool do you think holds the most value?steffenj2008-10-23T15:35:54Z2008-10-23T15:35:54Z<p><strong>Visual Assist anyone?</strong></p>
<p>I would have picked source control first but that's already been mentioned.</p>
http://stackoverflow.com/questions/219915/what-functionality-should-always-be-third-party/219947#2199473Answer by steffenj for What functionality should always be third-party?steffenj2008-10-20T21:14:43Z2008-10-20T21:14:43Z<p>It depends. Is there a 3rd party library available that suits your needs and most importantly, the language and/or API you work with. Then go for it.</p>
<p>If you have reasons to do your own version, make sure it's not just "not invented here". Also, if you haven't had an in depth look at the market's top five leading products for whatever you need, you haven't done your job thoroughly enough. There are good chances you will find what you are looking for, and even if you can't use it, you still learn something even from the library descriptions. At the minimum you will learn which features you would need and which you don't. If you also get the source code to one of the libraries, this should be your preferred choice over a competing library with no source code but possibly more features.</p>
http://stackoverflow.com/questions/216970/are-game-developers-paid-well/219845#21984528Answer by steffenj for Are game developers paid well ?steffenj2008-10-20T20:45:04Z2008-10-20T20:45:04Z<p>I have to step in on behalf of the game industry here. <strong>It's not all bad as is being told here.</strong> My experience is a different one. Since everyone can only tell from his own experience, i'd like to share mine too ...</p>
<p>First of all, i've been working as a game developer on Game & Level Design and foremost Scripting, Game Logic & Tools Programming. Over the course of nine years and two companies (one handheld and a PC developer) i worked for I have accumulated a highly diversified amount of working knowledge under my belt. Here's a quick rundown:</p>
<ul>
<li>Game Design (small scale, eg. for handheld devices)</li>
<li>Level Design (2D tile based, 3D freeform landscaping)</li>
<li>Scripting (Levels, Gamelogic, Controls, Menus, Missions, Quests, Dialog)</li>
<li>Game Logic Programming (Lua, Scripting, Combat)</li>
<li>Tools Programming (MFC, C#, .NET, Lua, remote debugging)</li>
<li>Database Setup, Programming, Tools (SQL, nHibernate, C#)</li>
<li>Localization (tools, processes, workflow, Excel, Unicode)</li>
<li>Wiki (setup & administration, support)</li>
<li>Leadership & Management (small to medium teams)</li>
</ul>
<p>Note that I'm not listing anything i remotely worked on here. No, these are actually my major areas of expertise which i would pull out if i had to apply for a job. I don't claim intimitate knowledge for any of these technologies or skills, except maybe for Lua which i know inside and out (ok, more out than inside but nevertheless).</p>
<p>I also am not looking down on other developers, especially not web developers. I've had a good deal of exposure to the web world to know i honestly wouldn't go there for anything in the world, and i admire every web developer who can build a site like stackoverflow or or has the writing skills to maintain a highly frequented blog. I for that matter can't even use a simple CMS to build a website that displays even remotely the same across all common browsers. Curse you, CSS!</p>
<p>As for working conditions: the first five years i've happily put in long hours. It was rewarding actually, it seldomly was forced and there were only very few times i wanted to opt out. I've worked with great teams where people tried to balance work with life, and if life was more important to them that was ok with everyone because you could still rely on them being there when it counts. </p>
<p>The longest crunch time i've been through was about 3 months of 10-12 hour days in one of my first years, working for the handheld company and maybe another 2-3 months for the PC company. Other than that, crunch time was often only 1-4 weeks a time every 6 months or so. Currently we barely have crunch times at all. The last one was a year ago, it was a mild one with most people working regular hours plus a day on the weekend and went on for 3 weeks. </p>
<p>Now you might think that this isn't very convincing. 3 months crunch time still sounds terrible (or roughly 1 month of crunch every year), and so does working on the weekend. I admit it, yes, that is indeed daunting. It sounds awful. But trust me, in both companies, if you have a life no one would have forced you to put in long hours at these companies, and as a matter of fact, several people chose not to crunch, or only when they actually were able and willing to. </p>
<p>Also, we've always got enough slack and days off to make up for at least most of the crunch time stress. And that was well received and deserved. And of course, crunch mode is nothing specific to game development. It happens everywhere, in banking, security, web development, you name it. It's just that the game industry has become synonymous with long hours and crunch mode. But the way i see it, there's no kind of software development like game development where developers are more eager to put in their best efforts. It may not always be to the best of our health and relationships and certainly, by far not in all cases has it been voluntarily or in other words it certainly has been exploited by employers. Honestly, if i were to put in long hours for anything, it'd be for games, period! But certainly not under any condition. And the one's described by EA spouse, i was shaking my head all along. Just quit yer fracking job, will you!? No, there's no excuse to put up with working conditions like these. If worst comes to worst there's always an alternative. That's how i see it.</p>
<p>If i had to pick one thing that i could have done without in the early years, it's certainly not the overtime. I would have to pick working on the top floor in a room with 9 other developers during one of the hottest summers in our region with barely working air conditioning. We were a hot and smelly bunch. ;)</p>
<p>Now over the course of the last 5 years i've seen a steady decrease in overtime (in the PC company i work for), both in the amount i put in voluntarily as well as what is required from us. As a matter of fact, we're just past feature freeze of a 2-year project and we haven't had a single day of crunch mode this year. I didn't put in extra hours, nor will i have to in the remaining 2 months, i'm already scheduled to work on another project even before this one has gone gold. We're using SCRUM for two years now and that has certainly paid off. And that's the state of a good company in a great industry. Should you ever find yourself in a severly inferior situation, or being forced to crunch with no will to do it - get the F!"K out of there! Seriously.</p>
<p>One word about salary: it may not be as much as you can earn elsewhere. But elsewhere is where the boring development jobs are, and no money in the world can get me there!
I earn a respectable yearly amount for my programming job (rough guesstimate is over $60,000 per year all in all), especially if you consider that i have no formal training and haven't been to university. I get regular pay raises, i get bonuses and stock options, we also have an employee stock purchase plan.</p>
<p>By this time you might have figured i'm working for one of the major houses in the games industry. I believe that certainly helps, your job is more secure, the working environment is likely to be much better (despite what EA spouse implies), the payment is solid, making a career is possible, the information exchange is just awesome and the amount of professionality in all areas of expertise around me is astonishing.</p>
<p>Right now, I certainly don't see myself wanting to work for anyone else but this game company. :)</p>
http://stackoverflow.com/questions/214452/what-surprised-you-the-most-about-the-software-industry/215151#21515115Answer by steffenj for What surprised you the most about the software industry?steffenj2008-10-18T15:13:55Z2008-10-18T15:13:55Z<p><strong>How important communication and people skills are.</strong></p>
<p>In college, you can walk away from the people you don't like or don't understand. You get together with your clique and friends. Others you don't like you just avoid, or you may decide to pick on them or even get in a fight with them or the other clique.</p>
<p>At work, you are expected to work with everyone on a professional level. You are expected to put a certain amount of your self-centered ego aside, and be polite, forthcoming, accurate, factual, friendly, helpful to the people you work with. Most of all: not taking things personal nor making your job a personal issue. Not talking behind the backs of others about their bad work, bad mouth, bad behavior, bad smell, bad ideas. </p>
<p><strong>That's not something one necessarily learns in school or college. To the contrary.</strong></p>
<p>Over time, you will find that there will be people around you that you like personally but actually are nothing but trouble for your job. There's people so grumpy you don't even want to approach them, but yet your job requires that the two of you sit together several times a week. There's people who would totally agree with you but you spend a full ten minutes discussing a subject without realizing that you want the same thing, you're just expressing ideas differently. There will be people that will give you a scary feeling simply by entering the room, and you'll be relieved it's someone else they want to talk to. There will be the factual leader who gives you the feeling he's setting you up for failure, questioning you and you get nervous every time he's only walking by. There will be the jerk who is actually kind of nice, but whenever you're spending lunch together you can't help but think that the others may look down upon you just by being his company. There's of course the guy who is intimidating, shouting in meetings, placing the blame. You don't want to get anywhere near him when he's "in a mood". But you have to.</p>
<p>These are just some of the social situations you will find yourself in when you pick up a job.</p>
http://stackoverflow.com/questions/200442/dos-and-donts-of-a-technical-presentation/200505#2005054Answer by steffenj for DOs and DON'Ts of a technical presentationsteffenj2008-10-14T09:27:12Z2008-10-14T09:27:12Z<p><strong>Don't:</strong></p>
<ul>
<li>forget entertainment</li>
</ul>
<p>This is my only advice. Many interesting and especially technical presentations fail on this regard to entertain the listener just enough to keep them listening actively. Entertainment can come in forms of anecdotes, war stories, puns and jokes.</p>
<p>If you can get a laugh or smile from your audience every couple minutes, they are much more willing to follow you through dryer parts of your presentation, and keep listening to the end. You need this as a brain teaser and to avoid brain shutdown due to information overflow.</p>
<p>And if you follow this advice, i have another one for you:</p>
<p><strong>Don't</strong></p>
<ul>
<li>make a fool out of yourself :)</li>
</ul>
http://stackoverflow.com/questions/195782/what-is-the-worst-thing-you-did-or-had-to-do-under-pressure1What is the worst thing you did or had to do under pressure?steffenj2008-10-12T17:58:01Z2008-10-13T23:40:15Z
<p>... which you probably wouldn't have done or done much better if you wouldn't have been under time pressure or basically any form of stress. And what the outcome or repurcussions of that thing were.</p>
<p>Examples:</p>
<ul>
<li>You wrote a terrible "won't touch this ever again" piece of code you end up extending and supporting the next 3 years.</li>
<li>Yelled at a fellow coworker, only to find out it was your fault all along.</li>
<li>Quit your job in affection over a dispute of coding style or the use of one API over another.</li>
<li>You had to come in to fix a severe bug only hours before your honeymoon flight was scheduled for take off. Did you still catch it?</li>
</ul>
<p>I want to hear about the thing(s) you did, the circumstances that caused stress and pressure and how it affected your judgement/behavior. And finally, what the outcome or repurcussions of it were.</p>
<p>Disclaimer: I know this question is similar to
<a href="http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do">Confessions of your worst WTF moment</a> but i'm only interested in the stories that were caused by working under pressure, and what was actually causing the stress and pressure.</p>
http://stackoverflow.com/questions/778095/windows-forms-using-backgroundimage-slows-down-drawing-of-the-forms-controls/778133#778133Comment by steffenj on Windows Forms: using BackgroundImage slows down drawing of the Form's controlssteffenj2009-04-23T08:30:06Z2009-04-23T08:30:06Zit didn't help ... i also noticed that when popup menus overlay some of the button and force them to redraw, the redraw is particularly slow (eg you see the buttons border drawn, button filled with solid color, finally button draws it's picture, then follows the next button).http://stackoverflow.com/questions/593651/what-do-you-do-when-every-possible-business-idea-is-already-taken/593660#593660Comment by steffenj on What do you do when every possible business idea is already taken?steffenj2009-03-02T09:20:38Z2009-03-02T09:20:38ZEE's problem? ---> "All comments and solutions are available to Premium Service Members only. Sign-up to view the solution to this question."http://stackoverflow.com/questions/593651/what-do-you-do-when-every-possible-business-idea-is-already-taken/593660#593660Comment by steffenj on What do you do when every possible business idea is already taken?steffenj2009-02-27T09:37:33Z2009-02-27T09:37:33ZI wanted to write the same thing. But i would add that you take something you're <i>really</i> passionate about to understand how to make it better than the competition. Usually something you use yourself and have become frustrated with.http://stackoverflow.com/questions/514866/is-virtual-memory-still-relevant-in-todays-world-of-inexpensive-ramComment by steffenj on Is Virtual Memory still relevant in today's world of inexpensive RAM?steffenj2009-02-05T17:52:25Z2009-02-05T17:52:25Zoh ... he's just the editor ...grrr, naaagh, sorry.http://stackoverflow.com/questions/514866/is-virtual-memory-still-relevant-in-todays-world-of-inexpensive-ramComment by steffenj on Is Virtual Memory still relevant in today's world of inexpensive RAM?steffenj2009-02-05T17:51:50Z2009-02-05T17:51:50Z<<I believe the creators of StackOverflow...>> Hehe, good one! Asking the creator to wait for his own upcoming creation. Priceless! ;)http://stackoverflow.com/questions/343162/is-scrum-evil/343581#343581Comment by steffenj on Is Scrum Evil?steffenj2009-01-21T17:12:08Z2009-01-21T17:12:08ZAll that "Is Scrum Evil?" post does is list a number of negative views about Scrum that only exist because either Scrum hasn't been understood or implemented well, or members of the team not being able or resisting change. It's as simple as that.http://stackoverflow.com/questions/343162/is-scrum-evil/459778#459778Comment by steffenj on Is Scrum Evil?steffenj2009-01-21T17:09:20Z2009-01-21T17:09:20ZDid you know how close you were without (before) Scrum? I don't think so.http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/450423#450423Comment by steffenj on Significant new inventions in computing since 1980steffenj2009-01-19T15:48:34Z2009-01-19T15:48:34Zthat's not invention, that is evolution (making things bigger, better, badasser)http://stackoverflow.com/questions/110868/never-produce-to-an-unknown-pathway-in-software-too-toyota-principle/110967#110967Comment by steffenj on Never produce to an unknown pathway, in software too? [Toyota principle]steffenj2009-01-16T10:47:10Z2009-01-16T10:47:10ZGood point. I also used this "keep info around" approach for a processing tool, so that errors from input that caused the output to be corrupt or just fail late could be tracked (eg line of input file where error supposedly is in).http://stackoverflow.com/questions/263072/why-are-regular-expressions-such-a-complicated-cryptic-messComment by steffenj on Why are regular expressions such a complicated, cryptic mess?steffenj2008-11-05T14:37:25Z2008-11-05T14:37:25ZI'm amazed. This question went from 0 to 1000 views in less than a day. It really pays off to phrase one's questions somewhat controversial. :) ... anyway, thanks for all the great answers, and inspiring me. http://stackoverflow.com/questions/264883/what-is-the-best-pay-model-for-programmers/264911#264911Comment by steffenj on What is the best pay model for programmers?steffenj2008-11-05T14:33:08Z2008-11-05T14:33:08ZBecome a billionaire, then employ yourself. Good luck! :phttp://stackoverflow.com/questions/263072/why-are-regular-expressions-such-a-complicated-cryptic-mess/263115#263115Comment by steffenj on Why are regular expressions such a complicated, cryptic mess?steffenj2008-11-04T19:38:28Z2008-11-04T19:38:28ZTrue. But before i start using abbreviations, i appreciate verbosity. I would think that it might be helpful to learn regex via expressions that are understandable, like "find first of" or "replace every occurance of this with that".http://stackoverflow.com/questions/263072/why-are-regular-expressions-such-a-complicated-cryptic-mess/263111#263111Comment by steffenj on Why are regular expressions such a complicated, cryptic mess?steffenj2008-11-04T19:37:02Z2008-11-04T19:37:02ZI didn't know you could "space" regexes ... if that's the case, this is sort of like programming assembler functions each on just one line.
http://stackoverflow.com/questions/262810/agile-40-hour-weekComment by steffenj on Agile 40-hour weeksteffenj2008-11-04T18:59:59Z2008-11-04T18:59:59ZAgile development is no "heal-all" for a death-march. Like any method, it can be misused and abused by the team, especially team leads and management.http://stackoverflow.com/questions/262810/agile-40-hour-weekComment by steffenj on Agile 40-hour weeksteffenj2008-11-04T18:23:16Z2008-11-04T18:23:16ZWhat do you mean by 40-hour week? Are you asking wether anyone managed to NOT do any overtime using Agile methods?