User Guge - Stack Overflowmost recent 30 from stackoverflow.com2009-11-09T00:37:18Zhttp://stackoverflow.com/feeds/user/37771http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/472746/as-a-programmer-how-to-regain-the-ability-to-get-along-with-people/472827#4728270Answer by Guge for As a programmer, how to regain the ability to get along with people?Guge2009-01-23T13:13:45Z2009-01-23T13:13:45Z<p>I don't think programmers lose the ability to communicate. Programming is communication. Programming is the process of formulating ideas in a programming language.</p>
<p>However, when programming we use languages that are accurate and void of ambivalence. A compiler always compiles the same source code into the same end result. This practice of avoiding ambivalent statements spill over into our spoken communication and perhaps make us different from non-programmers. We also spot syntactic errors faster than other. In your question, I can se at least three.</p>
<p>The only thing non-programmers are better at is ignoring ambivalence and without hesitation going with their own interpretations. We, on the other hand, will perhaps pause and require more explicit statements. Our non-programmer friends will then interpret this behaviour as lack of ability to communicate.</p>
<p>Before answering your question I would rephrase it:
How can programmers learn to ignore ambivalent statements and syntactic errors when communicating with people that are coding challenged?</p>
<p>I think practice is the key. Keep some friends that are not into programming and hang out with them. It helps if you share interests outside of programming. Mild intoxication, such as from "a couple of beers" can be effective means to this end.</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience8What is your best programming experience?Guge2008-11-19T23:58:39Z2009-01-16T15:56:47Z
<p>What has been your best programming experience so far?</p>
<p>Was it the first time you compiled hello.c?</p>
<p>Was it the first time you made your name fill your fathers TV with that 80's home computer?</p>
<p>Was it the time you saved the day by fixing that bug noone else understood?</p>
<p>Let's share our good moments!</p>
<p>(This is not a question of when you knew you would get into programming. I want stories of joy in programming after you became proficient.)</p>
http://stackoverflow.com/questions/378458/good-holiday-gift-ideas-for-people-programmers-work-with/378479#3784790Answer by Guge for Good holiday gift ideas for people programmers work with?Guge2008-12-18T16:54:23Z2008-12-18T16:54:23Z<p>I once got a "URGENT!" rubber stamp for my project manager. Office supply store. Success.</p>
<p>DBA - jigsaw puzzle. They have a tendency to want to bring order to chaos.</p>
<p>Business Analysts - Building blocks, maybe LEGO Duplo. This seems to be the hidden desire.</p>
<p>Designers - Anything that is drool proof, such as laminated pictures of furry animals.</p>
<p>(Yeah, this answer is humorous - I can afford a couple of downvotes.)</p>
http://stackoverflow.com/questions/378207/c-how-can-i-iterate-till-the-end-of-a-dynamic-array/378245#3782451Answer by Guge for C++ How can I iterate till the end of a dynamic array?Guge2008-12-18T15:45:41Z2008-12-18T15:45:41Z<p>Your code needs to keep to track of the array, so the size would never be unknown. (Or you would have to use some library with code that does this.)</p>
<p>I don't understand the last part of your quesiton. Could you elaborate?</p>
http://stackoverflow.com/questions/55963/unsafe-c-and-pointers-for-2d-rendering-good-or-bad/377913#3779131Answer by Guge for Unsafe C# and pointers for 2d rendering, good or bad?Guge2008-12-18T13:57:09Z2008-12-18T13:57:09Z<p>I have also used unsafe to speed up things of that nature. The performance improvemets are dramatic, to say the least. The point here is that unsafe turns off a bunch of things that you might not need as long as you know what you're doing.</p>
<p>Also, check out DirectDraw. It is the 2D graphics component of DirectX. It is really fast.</p>
http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/377445#3774453Answer by Guge for Throwing hardware at software problems – Which way do you lean?Guge2008-12-18T10:17:31Z2008-12-18T10:17:31Z<p>If you want to think about the environment, it's much better to spend money on developers than hardware.</p>
<p>If existing hardware can be utilized better you get a smaller environmental footprint through not having to produce that hardware, ship it and then run it and cool it.</p>
<p>But it has to be said that newer hardware might also give more performace for the same footprint. Hardware upgrades can save both time and make good sense from an environmental angle. Such as upgrading RAM to do less disk activity, or use LCD over CRT's.</p>
<p>Use good science.</p>
http://stackoverflow.com/questions/372915/game-logic-in-xml-files/373141#3731411Answer by Guge for Game Logic in XML FilesGuge2008-12-16T23:25:02Z2008-12-16T23:34:14Z<p>To get inspiration, or maybe even adoption, take a look at AIML and BuddyScript. AIML is XML for chatbots, BuddyScript is another variant - now owned by Microsoft.</p>
<p>The following is a sample of AIML from <a href="http://www.alicebot.org/aiml.html" rel="nofollow">http://www.alicebot.org/aiml.html</a></p>
<pre><code><category>
<pattern>WHAT ARE YOU</pattern>
<template>
<think><set name="topic">Me</set></think>
I am the latest result in artificial intelligence,
which can reproduce the capabilities of the human brain
with greater speed and accuracy.
</template>
</code></pre>
<p> </p>
<p>If you were to integrate AIML technology (which I think is free) into your game, your NPC's would have AI that your players could talk to. Wouldn't that be interesting?</p>
<p>AIML is modular so all your NPCs could have a common file describing all the standard knowledge about their world. Then you could add specific files for the stuff that would be typic to each race, class, place, individual or task. There are plenty of interesting sample AIML files, for example Eliza.</p>
<p>Situational information, can be added at the start of a conversation, and you may have some software outside the AIML engine listening for "magic" words from the NPC indicating that the NPC wants something to happen in the "real" game world. like "***GIVE PLAYER 20 BUFFALO WINGS".</p>
http://stackoverflow.com/questions/372511/what-is-the-object-oriented-programming-computing-overhead-cost/372658#3726580Answer by Guge for What is the object oriented programming computing overhead cost?Guge2008-12-16T20:48:41Z2008-12-16T20:48:41Z<p>I don't think the question is overhead coming from OO.</p>
<p>If we accept C++ as an OO language and remember that the C++ compiler is a preprocessor to C (at least it used to be, when I used C++), anything done in C++ is really done in C. C has very little overhead. So it would depend on the libraries.</p>
<p>I think any overhead would come from interpretation, managed execution or memory management. For those that have the tools and the know-how, it would be very easy to find out which is most efficient, C++ or Python.</p>
<p>I can't see where C++ would add much avoidable overhead. I don't know much about Python.</p>
http://stackoverflow.com/questions/370073/whats-your-best-and-or-funniest-data-loss-story/370136#37013615Answer by Guge for What's your best and/or funniest data loss story?Guge2008-12-16T00:05:44Z2008-12-16T00:05:44Z<p>Here's another:</p>
<p>Some time around '95 or '96, the biggest ISP in Norway hired a security expert to have a look around their web site to look for weak spots. He saw that the shell script for searching, calling WAIS, was not careful about sanitizing input.</p>
<p>He decided to test it by searching for something akin to ';rm <em>.</em> -R</p>
<p>It worked.</p>
<p>It went all the way to the courts.</p>
<p>(If my unix example is impossible, I'd like to state that I'm no expert in shell scripting.)</p>
http://stackoverflow.com/questions/370073/whats-your-best-and-or-funniest-data-loss-story/370102#3701024Answer by Guge for What's your best and/or funniest data loss story?Guge2008-12-15T23:49:57Z2008-12-15T23:49:57Z<p>A big logistics company hired a new hp-ux admin in september 1997. To familiarize himself with the system he had a look at the disks and file systems and found a lot of unpartitioned space. So he created some new partitions.</p>
<p>The sybase was running on these raw devices, so it promptly crashed.</p>
<p>Good thing there were backup tapes. But they had not been tested for recoverability, and they had to step back to may same year to find anything that could be recovered.</p>
<p>This company had mostly huge customer accounts that were invoiced 4 times a year. This was just days before invoicing. Almost 3 months of revenue was gone.</p>
<p>The only guy with the knowledge to piece the most of the database back from the freshly partitioned disks was an independant consultant living in another country. He was shipped in on a friday afternoon and went straight to work on a huge hourly rate. He was left alone that night to work through to next morning.</p>
<p>But the next morning he was gone back to his home country. They called him to ask why he jumped ship right in the middle of the job. The reply was that his wife had to go to her job and their kid had a fever and couldn't stay at the grandparents that weekend. He would be happy to not charge them for the incomplete job and expenses if they preferred.</p>
<p>It took the logistics company a millisecond to decide to sugarcoat a reaction in the tone of please come back and save us if you can. We'll pay anything if you'll just come back.</p>
<p>True story.</p>
http://stackoverflow.com/questions/364492/would-you-consider-using-an-alternative-to-ms-sql-server-management-studio/369836#3698361Answer by Guge for Would you consider using an alternative to MS SQL Server Management Studio?Guge2008-12-15T21:57:26Z2008-12-15T21:57:26Z<p>I was quite happy with the Enterprise Manager of 7.0 and 2000. I kind of liked the ideas of MMC snapins. As long as you remembered to hit refresh, it wasn't that bad.</p>
<p>The new 2005 Management Studio is ok too. I see no point in choosing anything else. I fail to see the grand improvement that could justify a move for me. Everybody seems to use the stuff that comes with SQL Server, and compared to the stuff that comes with Oracle, it is pretty good. Oracle developers have more choice, and it is no mystery!</p>
<p>Books Online is great, and has been since 7.0.</p>
<p>My favourite part about Query Analyzer is and has always been the execution plan view. It's such a Good Thing!</p>
<p>Every new version of SQL Server has a lot of new stuff, but sadly some stuff gets dropped too. I think it's sad that English Query is gone. I never found a project for it, pushing it in Norway was part of the problem, but I thought it was brilliant.</p>
http://stackoverflow.com/questions/369603/you-are-or-will-be-a-laid-off-programmer-what-do-you-do-a-year-ago-right-now/369765#3697654Answer by Guge for You are or will be a laid off programmer - what do you do a year ago, right now, tomorrow, and next week?Guge2008-12-15T21:26:52Z2008-12-15T21:26:52Z<p>A year ago (or even a month ago) keep your customers happy and build relationships with them. When my employer in 2003 was no longer financially viable, two of my key customers asked me to continue my services to them as a contractor. One of those customers is still my customer as of late 2008.</p>
<p>Be nice to people, as much as possible. You'll never know who's going to be useful some time in the future.</p>
<p>Today, tomorrow, next week, next month: start making calls. Let your customers know the situation. Both old and present. Use your network and spread the word that you are looking for new challenges.</p>
<p>If you get a job offer, don't be too picky. If you get a better one later, you can always get out of the first one with minimal damage.</p>
<p>If the thing drags out, stay busy. Write code, write articles, do your own thing, get exposure, go to free seminars, meet people. Keep normal hours. Keep your place tidy. Stay healthy and sane.</p>
http://stackoverflow.com/questions/355796/how-do-you-explain-oo-to-new-programmers/369337#3693373Answer by Guge for How do you explain OO to new programmers?Guge2008-12-15T18:51:16Z2008-12-15T18:51:16Z<p>Like all old farts, I'd like to answer this with a story from my own life.</p>
<p>I started programming basic on a VIC-20. Not knowing anything else, I though this was how all computers were programmed. I thought it was a bit hard to keep track of which variable names I had used and which were still free, (scope problem). I also thought it was hard to divide my program into repeatable chunks using gosub-return and setting and reading the variables that these would use, (lack of methods).</p>
<p>Then I got into Turbo C over MS-DOS. Now I could create my own methods and functions! I was no longer stuck with the old finite set of commands in basic. I felt like I was creating a new language for every program I wrote. C gave me more expressive power.</p>
<p>C++ was the first object oriented language I heard about. The big moment for me was when I understood that I could create my own data types, and even overload the operators. Again, it felt like I could create my own language containing both new functions and data types, complete with operators.</p>
<p>That's how I would sell OO to a new programmer. Explain that it gives expressive power because they can define their own data types. I always though encapsulation was a better selling point than inheritance.</p>
http://stackoverflow.com/questions/366295/is-programming-for-the-elite-or-can-everybody-learn-to-program/366441#3664418Answer by Guge for Is programming for the elite or can everybody learn to programGuge2008-12-14T11:38:48Z2008-12-14T22:05:19Z<p>Everybody can learn a little programming. And everybody should.</p>
<p>But everybody aren't going to see the beauty of it. Only a few will fall in love with it. These are the ones that will stay with programming, decade after decade, they are the elite.</p>
<p>Also, I'm getting tired of the whole "programmers have poor communication skills" meme.</p>
<p>The art of programming is to put ideas into written code. This IS communication, as good as any. When non-programmers think we are poor communicators, it is probably because they are not used to getting the kind of answers we give. They will often ask us questions that can't be answered, or that can only be answered in ways they can't understand. They ask a question, get a correct answer, and leave confused. Then they blame poor communication skills on the part of the programmer.</p>
<p>Let me try to communicate an example:</p>
<ul>
<li>Non-programmer: "Your permission system is too complex."</li>
<li>Programmer: "It meets requirements and has total generality and flexibility."</li>
<li>Non-programmer: "We don't want all that flexibility."</li>
<li>Programmer: "Then the requirements need to more specific."</li>
<li>Non-programmer: "Don't you understand what I mean by less flexibility?"</li>
<li>Programmer: "Yes, I understand. In what way do you want less flexibility?"</li>
<li>Non-programmer: "Just generally. The customers will never want to be able to set any permission on any object to any subject."</li>
<li>Programmer: "Ok. Then the requirements must list exactly which permissions should be selectable to which objects and subjects."</li>
<li>Non-programmer: "Just make the changes, will you?"</li>
<li>Programmer: "Do you want me to guess. It would not be appropriate. You must make specific requirements for this, or I can't do it."</li>
</ul>
<p>I was the programmer, and I'm sure they thought I was communicating poorly.</p>
<p><hr /></p>
<p>Addendum:</p>
<p>This little story seems to have stirred something in some members, so I'd like to clarify what I think is the point here.</p>
<p>The non-programmer in the story claims to know that there is a natural set of functions the system needs to support, but is unable to state what those functions might be.</p>
<p>The programmer knows that he doesn't know what this set of functions is and can only oblige if the desired set of functions is communicated clearly.</p>
<p>I think the programmer communicates the impossibility of the position intelligently. The non programmer is unable to put into words what he thinks is common sense. If he had any communication skills to speak of, he would have been able to.</p>
<p>The amount of percieved assness in communication on the part of the programmer might be explained by the prolonged exposure to logic, information theory and nonhumanoid communication.</p>
<p>If work is divided such that the subject expert writes requirements and the programmer codes to those requirements, should the programmer feel obliged, or even authorized, to amend those requirements with his own guesses? Are we supposed to do both jobs, or just our own? Is it standard industry practice that the developer gets to change the requirements?</p>
<p>For those who want to know more about the real story, I can tell that the programmer in question tried very much to extract information about what a good set of permission functions might be by asking for examples of what the typical uses in the system might be. What about the suggested solution was too much and so on. He was ultimately frustrated about endless referenses to common sense. For these and many other good reasons he started looking for other and more rewarding challenges and lived happily ever after. The software in question was a major release for which work began in 2003, it is still not released as of late 2008.</p>
<p>Perhaps the question of quality of communication skills of programmers would be a nice off-topic wiki question.</p>
http://stackoverflow.com/questions/365278/are-there-any-api-wrapper-of-robocopy/366988#366988-2Answer by Guge for Are there any API wrapper of Robocopy?Guge2008-12-14T21:06:28Z2008-12-14T21:06:28Z<p>I think it would be faster to write your own with a GUI. It's not rocket science. Everybody keeps reinventing the wheel all the time. It's because the wheel is the simplest machine in the world.</p>
<p>Rocket engines are something you don't want to reinvent.</p>
<p>It's probably harder to write a GUI that sits on top of robocopy. Robocopy is made for command line and batch use, not for GUI use.</p>
http://stackoverflow.com/questions/209015/self-documenting-code/365962#3659621Answer by Guge for Self-documenting codeGuge2008-12-13T23:57:06Z2008-12-13T23:57:06Z<p>I would like to offer one more perspective to the many valid answers:</p>
<p>What is source code? What is a programming language?</p>
<p>The machines don't need source code. They're happy running assembly. Programming languages are for our benefit. We don't want to write assembly. We need to understand what we are writing. Programming is about writing code.</p>
<p>Should you be able to read what you write?</p>
<p>Source code is not written in human language. It has been tried (for example FORTRAN) but it isn't completely successful.</p>
<p>Source code can't have ambiguity. That's why we have to put more structure in it than we do with text. Text only works with context, which we take for granted when we use text. Context in source code is always explisit. Think "using" in C#.</p>
<p>Most programming languages have redundancy so that the compiler can catch us when we aren't coherent. Other languages use more inference and try to eliminate that redundancy.</p>
<p>Type names, method names and variable names are not needed by the computers. They are used by us for referencing. The compiler doesn't understand semantics, that's for us to use. </p>
<p>Programming languages are a linguistic bridge between man and machine. It has to be writable for us and readable for them. Secondary demands are that it should be readable to us. If we are good at semantics where allowed and good at structuring the code, source code should be easy to read even for us. The best code doesn't need comments.</p>
<p>But complexity lurks in every project, you always have to decide where to put the complexity, and which camels to swallow. Those are the places to use comments.</p>
http://stackoverflow.com/questions/365904/alternatives-to-stock-options-as-a-way-to-motivate-software-engineers/365915#3659150Answer by Guge for Alternatives to stock options as a way to motivate software engineersGuge2008-12-13T23:15:16Z2008-12-13T23:15:16Z<p>It depends on many things. For example, is your company developing and marketing a product, or is it selling consulting by the hour?</p>
<p>The product option could be royalty based.</p>
<p>Consulting wise, you could agree on a budget and give them a large percentage (such as 50%) of anything over budget. Remember to base it on profit, not income. And don't base it on salary, everyone should get the same bonus. Worked very one place I worked.</p>
<p>Another place I worked every department was it's own profit center and could manage income and spending by itself.</p>
<p>There are many ways of aligning. Also discuss it with the employees, and do a lot of calculations before deciding.</p>
http://stackoverflow.com/questions/365892/dynamic-context-menu-on-treeview-nodes/365901#3659012Answer by Guge for Dynamic Context Menu on Treeview NodesGuge2008-12-13T23:02:52Z2008-12-13T23:02:52Z<p>You can use the MouseDown event and the HitTest method to find out which node was clicked.</p>
http://stackoverflow.com/questions/365826/calculate-distance-between-2-gps-coordinates/365840#3658400Answer by Guge for calculate distance between 2 gps coordinatesGuge2008-12-13T22:17:00Z2008-12-13T22:17:00Z<p>I guess you want it along the curvature of the earth. Your two points and the center of the earth are on a plane. The center of the earth is the center of a circle on that plane and the two points are (roughly) on the perimeter of that circle. From that you can calculate the distance by finding out what the angle from one point to the other is.</p>
<p>If the points are not the same heights, or if you need to take into account that the earth is not a perfect sphere it gets a little more difficult.</p>
http://stackoverflow.com/questions/147444/minimum-development-computer-requirements/365810#3658100Answer by Guge for Minimum development computer requirements?Guge2008-12-13T22:00:39Z2008-12-13T22:00:39Z<p>I had the pleasure of coding on a HP XW6400 with a 10K RPM harddrive (Raptor). It had 2 GB RAM, a dual core Xeon (room for one more CPU if needed), a decent Nvidia GPU and so on. I think the harddrive speed and the IO capacity of the workstation architecture made a real difference in compilation time. I would really recommend this for ANY development work.</p>
<p>A 24" LCD of 1920x1200 costs next to nothing these days, so that should be entry level for a desktop system.</p>
http://stackoverflow.com/questions/365782/how-do-i-best-handle-dynamic-multi-dimensional-arrays-in-c-c/365791#3657914Answer by Guge for How do I best handle dynamic multi-dimensional arrays in C/C++?Guge2008-12-13T21:44:17Z2008-12-13T21:44:17Z<p>You can alloc rows*cols*sizeof(int) and access it by table[row*cols+col]. </p>
http://stackoverflow.com/questions/365768/calculator-using-2-stacks/365779#3657794Answer by Guge for Calculator using 2 stacksGuge2008-12-13T21:37:35Z2008-12-13T21:37:35Z<p>I think what you're looking for is Dijkstra's shunting algorithm.</p>
<p>I have solved it without using stacks during interpretation, only during execution as described <a href="http://www.guge.net/?p=3#more-3" rel="nofollow">in my blog.</a></p>
<p>As for making extra stacks, it is quite easy. All a stack is, is really just an area of memory with a pointer to the top and bottom. Every time you push, you increment the top pointer, every time you pop you decrement the top pointer.</p>
http://stackoverflow.com/questions/237365/whats-your-favorite-feature-in-net/358875#3588750Answer by Guge for What's your favorite feature in .NET?Guge2008-12-11T10:13:17Z2008-12-11T10:13:17Z<p><strong>GDI+</strong></p>
<p>Graphics used to be real hard to do. With GDI+ it has become painless. And there is so much functionality in it. Things like Matrix, Path, Transparency, SmoothingMode are great, and very fun to play with.</p>
<p>And if that doesn't give you enough, you can also use DirectDraw or Direct3D.</p>
http://stackoverflow.com/questions/357769/how-can-i-use-the-publish-function-in-visual-studio-2008-without-erasing-the-co/357809#3578090Answer by Guge for How can I use the "Publish" function in Visual Studio 2008 without erasing the contents of the target folder?Guge2008-12-10T22:19:05Z2008-12-10T22:24:57Z<p>I think the real answer to your question is that you should put your user files and cache files somewhere else.</p>
<p>When publishing a web site Visual Studio is designed to make sure that the target folder contains your web site files, and absolutely nothing else.</p>
http://stackoverflow.com/questions/357675/how-can-i-determine-how-much-memory-my-net-program-is-using/357729#3577291Answer by Guge for How can I determine how much memory my .NET program is using?Guge2008-12-10T21:47:35Z2008-12-10T21:47:35Z<p>Start Performance Monitor (perfmon.exe) and take a look at the .Net CLR Memory performance object. Every running .net program has its own instance. You should be able to find what you want there.</p>
http://stackoverflow.com/questions/126158/what-is-your-favorite-anti-pattern/357482#3574822Answer by Guge for What is your "favorite" anti pattern?Guge2008-12-10T20:25:47Z2008-12-10T20:25:47Z<p>I don't know if this one has a name. But I've seen some programmers use Dictionary<string, object> or HashTable where they should have used classes. I think I would call it <strong>Misplaced Dynamicity</strong> or something.</p>
<p>And putting the keys in constants that are named what they contain does not make it better. Like const string Field23="Field23";</p>
<p>I came across a lot of code like this when taking over a VB.Net application. I started replacing the HashTables with classes. It made to code so much easier to read! In the process I also found some pretty awful bugs, that would have been very hard to find through testing.</p>
<p>I have decided that quote signs are a smell. The compiler does not look at stuff between quotes, so there is no type safety there. For example:</p>
<pre><code>class Foo
{
public string Bar;
}
Foo f=new Foo();
f.Bar = "content";
</code></pre>
<p>Is better than</p>
<pre><code>HashTable Foo=new HashTable();
Foo.Add("Bar", "content");
</code></pre>
<p>Because the compiler will catch you saing f.bar in the first example, but not Foo["bar"] in the second.</p>
http://stackoverflow.com/questions/349420/how-to-gain-professional-credibility-faster-at-a-new-workplace/350924#3509242Answer by Guge for How to gain professional credibility faster at a new workplace?Guge2008-12-08T21:15:40Z2008-12-08T21:15:40Z<p>Listen to people. People like it when you listen. It shows them that you think they are important. Actively listen to them! Hang on every word! Then, when it's your time to talk - ask intelligent questions.</p>
<p>A wise man said that people don't really listen, they just wait for their time to speak.
At least that's what I think he said. ;-)</p>
http://stackoverflow.com/questions/348863/developers-do-you-have-a-home-server-cluster-running-24x7/348960#3489601Answer by Guge for Developers, do you have a home server (cluster) running 24x7?Guge2008-12-08T09:06:55Z2008-12-08T09:06:55Z<p>I have a dual Xeon 3GHz, 2GB RAM, server running Windows 2003. It's doing NAT, VPN, WEB, SQL, storage. Always on.</p>
<p>I used to have a NT4.0 cluster with shared SCSI just for experiments. Very nice and interesting stuff. I could never get it running Windows 2000 Advanced Server. The SCSI stuff was too fragile.</p>
<p>I have also done experiments (unsuccessful) with Beowulf cluster using 4 PC's. Trouble mostly caused by unworkable network drivers.</p>
<p>Two dual processor Silicon Graphics Origin 200 servers have been sitting in my basement. If I had the Craylink cable I've been told it would act as a single machine. That would be interesting.</p>
http://stackoverflow.com/questions/348321/mathematical-question-procedural-generation-of-a-galaxy/348370#3483700Answer by Guge for Mathematical question: procedural generation of a galaxyGuge2008-12-08T00:01:51Z2008-12-08T00:13:46Z<p>I can vaguely recall this being done before. During the early 90's fractals were all the rage and I remember one company offering worlds to game programmers. The had created a whole infinite universe full of galaxies with suns and planets, event down to the valleys and textures of places on the planets. They were offering to find suitable virtual real estate to game developers. The game developers would get the software to render and use this, together with the exact coordinates to their propery in this fractal universe.</p>
<p>I've googled for a few minutes for "fractal game world planet universe" and such, but haven't found them. It might have been <a href="http://www.pandromeda.com" rel="nofollow">Pandromeda</a>, but I can't quite remember.</p>
<p>You should study fractals for this idea. All you need is a continous field of numbers that you can recreate from a seed and then present those numbers as stars, planets and satellites with different properties.</p>
http://stackoverflow.com/questions/348098/are-you-a-self-taught-programmer-or-did-you-take-a-programming-course/348105#3481053Answer by Guge for Are you a self taught programmer or did you take a programming course?Guge2008-12-07T21:27:53Z2008-12-07T21:27:53Z<p>self taught</p>
<p>I started by reading the user manual for the VIC 20 before even getting the machine.</p>
<p>Later on I worked nights programming while going to school (from age 14 to 18).</p>
<p>After that I started working full time programming. I have received some one week courses paid by employers, and have also given courses in a Microsoft CTEC. I have also read many books over the years.</p>
<p>I started with BASIC but converted to C, then C++, some VB3-4-5-6, early Java, then C#. I have also touched other languages like Prolog, Pascal, Perl, PHP, JavaScript and so on.</p>
http://stackoverflow.com/questions/303614/whats-your-favorite-extreme-feedback-device/303728#303728Comment by Guge on What's your Favorite Extreme Feedback Device?Guge2009-02-26T09:54:57Z2009-02-26T09:54:57ZExactly what I had in mind!http://stackoverflow.com/questions/472746/as-a-programmer-how-to-regain-the-ability-to-get-along-with-peopleComment by Guge on As a programmer, how to regain the ability to get along with people?Guge2009-01-23T13:15:32Z2009-01-23T13:15:32ZThe assumption would make for an interesting question in itself.http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-leanComment by Guge on Throwing hardware at software problems – Which way do you lean?Guge2008-12-18T15:05:04Z2008-12-18T15:05:04ZCould someone also ask about Throwing software at hardware problems?http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/377445#377445Comment by Guge on Throwing hardware at software problems – Which way do you lean?Guge2008-12-18T13:45:09Z2008-12-18T13:45:09ZYes, but they produce less greenhouse gases coding then they do loose on the streets. In most societies developers are not a reversible enviranmental component. Potential servers, however, don't have to be manufactured.http://stackoverflow.com/questions/314238/video-editing-capablities/337666#337666Comment by Guge on Video editing capablitiesGuge2008-12-18T09:43:24Z2008-12-18T09:43:24ZDirectShow is not dead, it is promoted from DirectX to the Platform SDK.http://stackoverflow.com/questions/375263/when-should-you-leave-your-day-job-to-open-a-start-up/375452#375452Comment by Guge on When should you leave your day job to open a start-up?Guge2008-12-17T20:01:36Z2008-12-17T20:01:36ZMaybe you could come and live and work here in Norway. We have a national health system, unemployment benefits, 5 weeks of vacation, 9 months paid maternity leave, strong unions, high salaries, social democracy. But according to some, this is a socialist hell with no incentives.http://stackoverflow.com/questions/370073/whats-your-best-and-or-funniest-data-loss-story/370089#370089Comment by Guge on What's your best and/or funniest data loss story?Guge2008-12-16T00:16:21Z2008-12-16T00:16:21ZThe question is for critical data. This sounds like it happened during a course.http://stackoverflow.com/questions/370073/whats-your-best-and-or-funniest-data-loss-storyComment by Guge on What's your best and/or funniest data loss story?Guge2008-12-15T23:40:21Z2008-12-15T23:40:21Zmake it wiki, I thinkhttp://stackoverflow.com/questions/340298/why-are-so-many-web-languages-interpreted-rather-than-compiled/340475#340475Comment by Guge on Why are so many web languages interpreted rather than compiled?Guge2008-12-15T23:01:36Z2008-12-15T23:01:36ZA friend of mine has a search engine for phonebooks and other short strings. He uses SSE3 instructions to brute force compare strings 16 at a time per core. 3 million strings are done in subsecond time on a desktop. Result table with dB fitness! It can't be done in PHP. It's either C, or noware!http://stackoverflow.com/questions/369603/you-are-or-will-be-a-laid-off-programmer-what-do-you-do-a-year-ago-right-now/369651#369651Comment by Guge on You are or will be a laid off programmer - what do you do a year ago, right now, tomorrow, and next week?Guge2008-12-15T21:08:50Z2008-12-15T21:08:50ZI've seen this too, and usually they were the last ones to come in. A sure sign that the recession is coming is when the marginally competent are being hired. It was like this in 2001. In a matter of weeks I had so many new colleagues that understood nothing, then the dotcom bubble burst.http://stackoverflow.com/questions/260511/russian-peasant-multiplication/260572#260572Comment by Guge on Russian Peasant Multiplication Guge2008-12-15T20:31:01Z2008-12-15T20:31:01Z...and ztunning?http://stackoverflow.com/questions/368371/performance-comparison-of-winforms-and-wpf/368466#368466Comment by Guge on Performance comparison of Winforms and WPFGuge2008-12-15T14:48:52Z2008-12-15T14:48:52ZI'm curious and a bit pessimistic about performance on terminal server.http://stackoverflow.com/questions/365904/alternatives-to-stock-options-as-a-way-to-motivate-software-engineers/365913#365913Comment by Guge on Alternatives to stock options as a way to motivate software engineersGuge2008-12-15T00:27:49Z2008-12-15T00:27:49ZThis does not answer the question. Question is about models for profit and revenue sharing.http://stackoverflow.com/questions/231753/microsoft-and-the-windows-api-war/232090#232090Comment by Guge on Microsoft and the Windows API WarGuge2008-12-14T21:15:38Z2008-12-14T21:15:38ZAren't you trying to change the question here? The text of the question is "no dependencies". This could be new kiosk systems for all we know. Otherwise, I agree totally with your concluding paragraph.http://stackoverflow.com/questions/366566/how-do-i-prepare-myself-for-working-with-other-programmers/366569#366569Comment by Guge on How do I prepare myself for working with other programmers?Guge2008-12-14T20:14:20Z2008-12-14T20:14:20ZLatte doesn't count.