active questions tagged tips - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T23:20:58Z http://stackoverflow.com/feeds/tag/tips http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/54929/hidden-features-of-asp-net 109 Hidden Features of ASP.NET Vaibhav 2008-09-10T18:20:47Z 2009-11-27T22:59:22Z <p>There are always features that would be useful in fringe scenarios, but for that very reason most people don't know them. I am asking for features that are not typically taught by the text books.</p> <p>What are the ones that you know?</p> http://stackoverflow.com/questions/157192/php-development-lot-of-newbie-questions 5 PHP Development - lot of (newbie) questions Joum 2008-10-01T11:31:48Z 2009-11-27T14:02:58Z <p>Hi!</p> <p>I'm a Engineering student and I'm attending a Database and Information Systems class this semester. It's required that I produce a website/application that uses a database, using PHP/PGSQL. My questions are:</p> <ul> <li>which IDE would you recommend?</li> <li>does anyone have good tips and advices for a new developer?</li> <li>it would help me (a lot) to develop this project attending some more "academic" aspects of the subject, such as the Entity/Association Model, etc. Are there any good tools to help structure my work?</li> </ul> <p>Thanks!</p> <p>EDIT: A few notes:</p> <ul> <li>I forgot to ask one last thing, I tried installing BitNami's WAPP Stack. Does anyone know how good and/or reliable it is?</li> <li>I'm actually working under Windows Vista Business (new laptop :S ). Would you recommend develloping under Linux for any specific reason?</li> </ul> http://stackoverflow.com/questions/1799341/transitioning-from-net-to-lisp-has-anybody-here-done-it 1 Transitioning from .NET to Lisp. Has anybody here done it? Andy West 2009-11-25T19:19:24Z 2009-11-26T20:44:38Z <p>I use ASP.NET during my day job, but I'm always looking to expand my programming knowledge. I've tinkered with everything from Ruby to 6502 assembly language, and now I want to learn Lisp. I guess I have Paul Graham to blame for that.</p> <p>I've heard about "Practical Common Lisp" and I know how to Google, but I'm curious if there are any .NET developers who have taken the plunge who can give me some pointers. What are some of the pitfalls? Are there things I'll need to "unlearn" when making the transition? Did you have any "aha!" moments?</p> <p>I'm also interested in how the Lisp libraries stack up to .NET, and if anyone has any examples of Web applications created in Lisp that they can share.</p> http://stackoverflow.com/questions/1787945/tips-for-quick-web-app-prototyping 0 Tips for quick web-app prototyping aubreyrhodes 2009-11-24T05:13:48Z 2009-11-24T18:17:38Z <p>I've got the upcoming month of December off and with graduation and a job search looming, I've decided to work on some projects to show off my skills to potential employers. For every week in December I'm aiming to churn out a prototype, and so I'm looking for some tips for getting an idea up and running in a short time frame. I know that I'll be relying heavily on frameworks and libraries, but are there any tips from experience anyone can offer these types of projects. Finally, does this sound like a reasonable way of building up a base of examples for a job search for a candidate with limited experience?</p> http://stackoverflow.com/questions/1781067/how-to-code-startup-tips-to-be-easily-localized 3 How to code startup tips to be easily localized ssakl 2009-11-23T04:16:19Z 2009-11-23T06:14:53Z <p>I'm writing a new Java 6 Swing application and want to have a "Show tips at start-up" feature. I've done this before, but never with localization in mind. </p> <p>In the past, my tips dialog used an XML file to hold the tips, but I'm afraid this will make things difficult when it comes time to translate these tips into different languages. I've thought about using a .properties file like with other strings in the application, but wonder if this is a maintainable approach. I would like to give the user the ability to add their own tips which will also display in the same dialog.</p> <p>Is the properties approach the way to go? If I allow users to add their own tips, I'll need some way to make sure the keys (for text retrieval) are unique.</p> http://stackoverflow.com/questions/1779521/javascript-dialog-script-feedback-needed 0 Javascript dialog script feedback needed richard 2009-11-22T18:30:52Z 2009-11-22T20:28:42Z <p>Hello,</p> <p>I am writing a Javascript dialog script which is seen in a lot of typical Role Playing Games.<img src="http://www.dailynintendo.com/wp-content/uploads/2008/12/luminous-arc-2-dialogue.jpg" alt="alt text"></p> <p>At the moment I got an array with text strings which you can skip trough. I got at the point where you can make a decision and based on the input a different string will show.</p> <p>However I don't think this is the right way to do it. These are the requirements for the script:</p> <ul> <li>Support for multiple dialog scripts</li> <li>multiple characters</li> <li>user decision input ("Do you like me?" -yes -no)</li> </ul> <p>This is my code at the moment:</p> <pre><code>// Intro script var script_intro = []; script_intro[0] = 'Hello how are you?'; script_intro[1] = 'So I heard..'; script_intro[2] = 'This is a cool game!'; script_intro[3] = []; script_intro[3][0] = 'Do you like me?'; script_intro[3][1] = []; script_intro[3][1][0] = 'Jah'; script_intro[3][1][1] = 4; script_intro[3][2] = []; script_intro[3][2][0] = 'Nah'; script_intro[3][2][1] = 5; // Intro script: variation I var script_intro_1 = []; script_intro_1[0] = 'I love you too!'; // Intro script: variation II var script_intro_2 = []; script_intro_2[0] = 'Damn you...'; function initDialog() { // This is where the text will be shown var dialog = document.getElementById('dialog'); var content = document.getElementById('content'); var nextButton = document.getElementById('nextButton'); var optionButton_1 = document.getElementById('optionButton_1'); var optionButton_2 = document.getElementById('optionButton_2'); // How fast the characters will appear after each other (milliseconds) var scrollSpeed = 50; } // Scroll text per line, character function scrollText(script, line) { var char = 0; // If this line contains a question that requires user input if(typeof(script[line]) == 'object') { var textScroller = setInterval( function() { // Add the string char for char content.innerHTML += script[line][0][char]; char ++; if(char &gt;= script[line][0].length) { clearInterval(textScroller); // Show options options(script, line); } }, scrollSpeed); } else { var textScroller = setInterval( function() { content.innerHTML += script[line][char]; char++; if(char &gt;= script[line].length) { clearInterval(textScroller); // Show next line next(script, line); }; }, scrollSpeed); } } function next(script, line) { line = line + 1; // Last line has been shown if(script[line] == undefined) { //alert('End of dialog'); } else { nextButton.style.visibility = 'visible'; nextButton.onclick = function() { nextButton.style.visibility = 'hidden'; content.innerHTML = ''; scrollText(script, line); } } } function options(script, line) { optionButton_1.innerHTML = script[line][1][0]; optionButton_2.innerHTML = script[line][2][0]; optionButton_1.style.visibility = 'visible'; optionButton_2.style.visibility = 'visible'; optionButton_1.onclick = function() { optionButton_1.style.visibility = 'hidden'; optionButton_2.style.visibility = 'hidden'; content.innerHTML = ''; scrollText('script_intro_1', 0); } optionButton_2.onclick = function() { optionButton_1.style.visibility = 'hidden'; optionButton_2.style.visibility = 'hidden'; content.innerHTML = ''; scrollText('script_intro_2', 0); } } </code></pre> <p>html</p> <pre><code>&lt;body onload="scrollText(script_intro, 0)"&gt; &lt;h1&gt;rpg&lt;/h1&gt; &lt;a id="reset" href="#"&gt;Reset&lt;/a&gt; &lt;div id="device"&gt; &lt;div id="dialog"&gt; &lt;strong&gt;NPC:&lt;/strong&gt; &lt;div id="content"&gt;&lt;/div&gt; &lt;a id="nextButton" href="#"&gt;Next&lt;/a&gt; &lt;a id="optionButton_1" href="#"&gt;&lt;/a&gt; &lt;a id="optionButton_2" href="#"&gt;&lt;/a&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> <p>I could really use some feedback. What is the best way to write such script with the requirements above? Is using JSON or XML a better option than an Array for the dialog scripts? I especially need some hints on how to implement multiple choices in the script.</p> <p>Thank you!</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl 65 Hidden features of Perl? Adam Bellaire 2008-10-02T11:49:22Z 2009-11-19T12:21:56Z <p>What are some really useful but esoteric language features in Perl that you've actually been able to employ to do useful work?</p> <p>Guidelines:</p> <ul> <li>Try to limit answers to the Perl core and not CPAN</li> <li>Please give an example and a short description</li> </ul> <p><hr /></p> <h2>Hidden Features also found in other languages' Hidden Features:</h2> <p>(These are all from <a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162257">Corion's answer</a>)</p> <ul> <li><a href="http://stackoverflow.com/questions/132241/hidden-features-of-c#">C#</a> <ul> <li>Duff's Device</li> <li>Portability and Standardness</li> <li>Quotes for whitespace delimited lists and strings</li> <li>Aliasable namespaces</li> </ul></li> <li><a href="http://stackoverflow.com/questions/15496/hidden-features-of-java">Java</a> <ul> <li>Static Initalizers</li> </ul></li> <li><a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript">JavaScript</a> <ul> <li>Functions are First Class citizens</li> <li>Block scope and closure</li> <li>Calling methods and accessors indirectly through a variable</li> </ul></li> <li><a href="http://stackoverflow.com/questions/63998/hidden-features-of-ruby">Ruby</a> <ul> <li>Defining methods through code</li> </ul></li> <li><a href="http://stackoverflow.com/questions/61401/hidden-features-of-php">PHP</a> <ul> <li>Pervasive online documentation</li> <li>Magic methods</li> <li>Symbolic references</li> </ul></li> <li><a href="http://stackoverflow.com/questions/101268/hidden-features-of-python">Python</a> <ul> <li>One line value swapping</li> <li>Ability to replace even core functions with your own functionality</li> </ul></li> </ul> <h2>Other Hidden Features:</h2> <p>Operators:</p> <ul> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094">The bool quasi-operator</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162058">The flip-flop operator</a> <ul> <li>Also used for <a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#205627">list construction</a></li> </ul></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162004">The <code>++</code> and unary <code>-</code> operators work on strings</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162075">The repetition operator</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#161943">The spaceship operator</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162239">The || operator (and // operator) to select from a set of choices</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162152">The diamond operator</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162249">Special cases of the <code>m//</code> operator</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162060">The tilde-tilde "operator"</a></li> </ul> <p>Quoting constructs:</p> <ul> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163416">The qw operator</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094">Letters can be used as quote delimiters in q{}-like constructs</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163374">Quoting mechanisms</a></li> </ul> <p>Syntax and Names:</p> <ul> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094">There can be a space after a sigil</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094">You can give subs numeric names with symbolic references</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163416">Legal trailing commas</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601">Grouped Integer Literals</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#168925">hash slices</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#195254">Populating keys of a hash from an array</a></li> </ul> <p>Modules, Pragmas, and command-line options:</p> <ul> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440">use strict and use warnings</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440">Taint checking</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162085">Esoteric use of -n and -p</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163541">CPAN</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601"><code>overload::constant</code></a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#164255">IO::Handle module</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163725">Safe compartments</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#310083">Attributes</a></li> </ul> <p>Variables:</p> <ul> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162357">Autovivification</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#161985">The <code>$[</code> variable</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#168947">tie</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#172118">Dynamic Scoping</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#205627">Variable swapping with a single statement</a></li> </ul> <p>Loops and flow control:</p> <ul> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440">Magic goto</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163481"><code>for</code> on a single variable</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#169592">continue clause</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#205104">Desperation mode</a></li> </ul> <p>Regular expressions:</p> <ul> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162565">The <code>\G</code> anchor</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#161976"><code>(?{})</code> and '(??{})` in regexes</a></li> </ul> <p>Other features:</p> <ul> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440">The debugger</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162206">Special code blocks such as BEGIN, CHECK, and END</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163700">The <code>DATA</code> block</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601">New Block Operations</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601">Source Filters</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601">Signal Hooks</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#167309">map</a> (<a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#167809">twice</a>)</li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162842">Wrapping built-in functions</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#189883">The <code>eof</code> function</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#194796">The <code>dbmopen</code> function</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#205104">Turning warnings into errors</a></li> </ul> <p>Other tricks, and meta-answers:</p> <ul> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163532">cat files, decompressing gzips if needed</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162271">Perl Tips</a></li> </ul> <p><hr /></p> <p><strong>See Also:</strong></p> <ul> <li><a href="http://stackoverflow.com/questions/132241/hidden-features-of-c">Hidden features of C</a></li> <li><a href="http://stackoverflow.com/questions/9033/hidden-features-of-c">Hidden features of C#</a></li> <li><a href="http://stackoverflow.com/questions/75538/hidden-features-of-c">Hidden features of C++</a></li> <li><a href="http://stackoverflow.com/questions/15496/hidden-features-of-java">Hidden features of Java</a></li> <li><a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript">Hidden features of JavaScript</a></li> <li><a href="http://stackoverflow.com/questions/63998/hidden-features-of-ruby">Hidden features of Ruby</a></li> <li><a href="http://stackoverflow.com/questions/61401/hidden-features-of-php">Hidden features of PHP</a></li> <li><a href="http://stackoverflow.com/questions/101268/hidden-features-of-python">Hidden features of Python</a></li> </ul> http://stackoverflow.com/questions/724826/javascript-tips-and-tricks-javascript-best-practices 7 JavaScript Tips and Tricks; JavaScript Best Practices Koistya Navin 2009-04-07T09:34:29Z 2009-11-19T02:45:44Z <p>Please, share your tips and tricks related to JavaScript coding. The ones which make code more elegant and faster.</p> <p><strong>See also:</strong> </p> <ul> <li><a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript">http://stackoverflow.com/questions/61088/hidden-features-of-javascript</a></li> </ul> http://stackoverflow.com/questions/1529298/whats-your-modus-operandi-to-solving-a-programming-problem 7 What's your Modus Operandi to solving a (programming) problem? Ravi 2009-10-07T03:12:39Z 2009-11-13T16:54:09Z <p>While solving any programming problem, what is your <em><a href="http://en.wikipedia.org/wiki/Modus%5Foperandi" rel="nofollow">modus operandi</a></em>? How do you fix a problem?<br> Write everything you can about the observable behaviors of the bug or problem? </p> <p>Take me through the mental checklist of actions you take.</p> http://stackoverflow.com/questions/89523/lua-patterns-tips-and-tricks 23 Lua Patterns,Tips and Tricks Robert Gould 2008-09-18T02:37:17Z 2009-11-13T14:45:27Z <p>This is a Tips &amp; Tricks question with the purpose of letting people accumulate their patterns, tips and tricks for Lua. </p> <p>Lua is a great scripting language, however there is a lack of documented patterns, and I'm sure everyone has their favorites, so newcomers and people wondering if they should use it or not can actually appreciate the language's beauty.</p> http://stackoverflow.com/questions/1208205/project-ideas-for-discrete-mathematics-course-using-matlab 7 Project ideas for discrete mathematics course using MATLAB? Daniel Moura 2009-07-30T17:49:34Z 2009-11-13T10:34:36Z <p>A professor asked me to help making a specification for a college project. By the time the students should know the basics of programming.</p> <p>The professor is a mathematician and has little experience in other programming languages, so it should really be in MATLAB.</p> <p>I would like some projects ideas. The project should</p> <ol> <li>last about 1 to 2 months</li> <li>be done individually</li> <li>have web interface would be great</li> <li>doesn't necessary have to go deep in maths, but some would be great</li> <li>use a database (or store data in files)</li> </ol> <p>What kind of project would make the students excited? </p> <p>If you have any other tips I'll appreciate.</p> <p><strong>UPDATE:</strong> The students are sophomores and have already studied vector calculus. This project is for an one year Discrete Mathematics course.</p> <p><strong>UPDATE 2:</strong> The topics covered in the course are</p> <ol> <li>Formal Logic</li> <li>Proofs, Recursion, and Analysis of Algorithms</li> <li>Sets and Combinatorics</li> <li>Relations, Functions, and Matrices</li> <li>Graphs and Trees</li> <li>Graph Algorithms</li> <li>Boolean Algebra and Computer Logic</li> <li>Modeling Arithmetic, Computation, and Languages</li> </ol> <p>And it'll be based on this book <a href="http://rads.stackoverflow.com/amzn/click/071676864X" rel="nofollow">Mathematical Structures for Computer Science: A Modern Approach to Discrete Mathematics by Judith L. Gersting</a></p> http://stackoverflow.com/questions/132241/hidden-features-of-c 56 Hidden features of C bernardn 2008-09-25T09:02:06Z 2009-11-11T13:42:11Z <p>I know there is a standard behind all C compiler implementations, so there should be no hidden features. Despite that, I am sure all C developers have hidden/secret tricks they use all the time.</p> http://stackoverflow.com/questions/1295955/what-is-the-most-useful-r-trick 14 What is the most useful R trick? Dirk Eddelbuettel 2009-08-18T19:26:27Z 2009-11-07T17:09:10Z <p>In order to share some more tips and tricks for <a href="http://www.r-project.org" rel="nofollow"><strong>R</strong></a>, what is you single-most useful feature or trick? Clever vectorization? Data input/output? Visualization and graphics? Statistical analysis? Special functions? The interactive environment itself? </p> <p>One item per post, and we will see if we get a winner by means of votes.</p> <p>[Edit 25-Aug 2008]: So after one week, it seems that the simple <code>str()</code> won the poll. As I like to recommend that one myself, it is an easy answer to accept.</p> http://stackoverflow.com/questions/1201361/3d-game-development-tips-especially-game-architecture 7 3D Game Development tips (especially game architecture) Ricket 2009-07-29T16:07:21Z 2009-11-04T22:31:31Z <p><strong>tl;dr version:</strong> What is the best advice (that you learned by experience and not from books) that you can give me, with regards to 3D game architecture? (as in, how to design and connect the components of a 3D game)</p> <p><hr /></p> <p>When it comes to programming, there is only so much you can learn from books. It seems to me, many of the things learned are learned from other people, or by <strong>experience</strong>. Even learning something in a classroom has its advantages over books; the professor might slip in a little tidbit of knowledge that he learned from his experience, and it can make all the difference.</p> <h2>I'm looking for those tidbits here.</h2> <p>Books on game development only go so far. There's a big difference about a book that explains the logic and syntax of a programming language, and a book that tries to tell you how to make a game. The latter doesn't work so well (at least for me); but the former is the whole reason I'm studying computer science.</p> <p>I am going into my second year of college, and I'm 19 years old. <strong>I don't have experience</strong>, I have book knowledge. So I'm trying to piggyback off of you and your knowledge that you've gained from experience.</p> <h2>My current topic of interest is game architecture.</h2> <p>(or "engine design" if you prefer, though I'm not looking to create a everything-but-the-kitchen-sink game engine)</p> <p>I recently asked a question, <a href="http://stackoverflow.com/questions/1189236/data-structures-for-message-passing-within-a-program">Data structures for message passing within a program?</a> and it resulted in a long, <a href="http://stackoverflow.com/questions/1189236/data-structures-for-message-passing-within-a-program/1191261#1191261">excellent answer</a> from <a href="http://stackoverflow.com/users/103258/haffax">haffax</a>. To him, he was just rattling off his experience and the knowledge he's gained from it; to me, it gave me many new things to think about that I had never read in a book before, and haven't experienced for myself. Go check out the answer, and up it if you like it.</p> <p>From it, I thought more about message passing within a program. I thought about how perhaps MVC is not a good fit for game architecture. His concepts of all game objects being equal and not a hierarchy, where instead you add "Features" to a game object, is something I've never heard before, and I really like it. And right at the beginning of the question he gave simple bits of advice:</p> <blockquote> <p>Before starting to design any of the packages and classes, start with an analysis</p> </blockquote> <p>...</p> <blockquote> <p>And for motivation, <strong>I speak from experience here</strong>, don't think of your task as writing a game engine, write a game!</p> </blockquote> <h2>I want more answers like that.</h2> <p>What are the most important game architecture concepts and tricks that you've taken from your experience as a game developer? When you sit down to write a game, how do you organize things? Do you separate your view and your model, or do you intertwine them and refactor later? What do you want to say about the effectiveness of MVC as a game architecture pattern? How do you keep track of so many things (graphics, audio, file loading, collision, AI, network) and make them all work together to create a finished game? How do you use design patterns and preserve the object oriented-ness of your game? How do you write automated tests for your game?</p> <p>I can come up with a million questions, but right now I just want to hear in general, whatever sticks out in your mind. What sort of experiences have you been through that changed your thinking? What is your philosophy when writing your games? How do you stay organized amidst the confusion and the massive-ness of the task of 3D game creation?</p> <h2>What game development tricks have you learned from experience?</h2> <p>Thank you for taking the time to read &amp; respond!!</p> http://stackoverflow.com/questions/1663313/hidden-features-of-dos-command 0 Hidden features of DOS command [closed] Nadir SOUALEM 2009-11-02T19:55:31Z 2009-11-02T19:55:31Z <p>What are the lesser-known but useful features of the DOS command line ?</p> http://stackoverflow.com/questions/1599792/what-are-unusual-and-creative-usages-of-html5-canvas 1 What are unusual and creative usages of html5 canvas stej 2009-10-21T09:52:38Z 2009-10-31T20:04:35Z <p>Canvas from html5 was introduced some time ago. Currently it's used (almost) only for demonstrations how cool it is - it's mainly related to painting, games and charts. Many of them can be found at <a href="http://www.canvasdemos.com/" rel="nofollow">Canvas demos</a>.</p> <p>How <strong>creatively / unusually can canvas be used</strong>?</p> <p>Some examples: </p> <ul> <li><a href="http://blog.nihilogic.dk/2008/03/jsascii.html" rel="nofollow">jsAscii - ASCII art from images with Javascript and Canvas</a> (yea, I know, it's painting but not the classic one)</li> <li><a href="http://www.nihilogic.dk/labs/canvascompress/" rel="nofollow">Javascript compression using PNG and Canvas </a></li> </ul> http://stackoverflow.com/questions/1643500/best-command-line-you-use-in-unix-linux-shell 2 Best command line you use in Unix/Linux shell ? [closed] Nadir SOUALEM 2009-10-29T12:51:57Z 2009-10-29T13:04:37Z <p>What is the best command line you use or you have ever seen in Unix/Linux shell ?</p> http://stackoverflow.com/questions/1637945/mootools-tooltip-open 0 mootools Tooltip Open Pedro 2009-10-28T15:19:14Z 2009-10-29T12:00:12Z <p>Hi,</p> <p>How Can i force one Mootools ToolTip (Tip) to Open?</p> <p>Regards,<p> Pedro</p> http://stackoverflow.com/questions/71985/emacs-equivalent-of-vims-yy10p 3 Emacs equivalent of Vim's yy10p ? Sard 2008-09-16T13:06:39Z 2009-10-29T03:12:41Z <p>How can I copy a line 10 times easily in Emacs? I can't find a copy-line shortcut or function. I can use C-aC-spcC-eM-w to laboriously copy the line but how can I then paste it more than once?</p> <p>Any ideas before I go and write my own functions.</p> http://stackoverflow.com/questions/709429/asp-net-mvc-best-practices-tips-and-tricks 40 ASP.NET MVC Best Practices, Tips and Tricks Koistya Navin 2009-04-02T12:03:55Z 2009-10-27T13:54:10Z <p>Please, share your ideas which could serve as <strong>best practices</strong> or <strong>guidelines</strong> for creating <strong>ASP.NET MVC</strong> web applications. These ideas and/or coding samples should be relevant to ASP.NET MVC application creation itself and not to TDD or similar practices.</p> <h3>Other resources:</h3> <ul> <li><a href="http://weblogs.asp.net/rashid/archive/2009/04/01/asp-net-mvc-best-practices-part-1.aspx" rel="nofollow">ASP.NET MVC Best Practices (Part 1)</a> by Kazi Manzur Rashid</li> <li><a href="http://weblogs.asp.net/rashid/archive/2009/04/03/asp-net-mvc-best-practices-part-2.aspx" rel="nofollow">ASP.NET MVC Best Practices (Part 2)</a> by Kazi Manzur Rashid</li> </ul> http://stackoverflow.com/questions/306252/how-to-align-checkboxes-and-their-labels-consistently-cross-browsers 28 How to align checkboxes and their labels consistently cross-browsers One Crayon 2008-11-20T18:02:01Z 2009-10-24T08:34:10Z <p>This is one of the minor CSS problems that plagues me constantly. How do folks around StackOverflow vertically align checkboxes and their labels consistently cross-browser? Whenever I align them right in Safari (usually using <code>vertical-align: baseline</code> on the input), they're completely off in Firefox and IE. Fix it in Firefox, and Safari and IE are inevitably messed up. I waste time on this every time I code a form.</p> <p>Here's the standard code that I work with:</p> <pre><code>&lt;form&gt; &lt;div&gt; &lt;label&gt;&lt;input type="checkbox" /&gt; Label text&lt;/label&gt; &lt;/div&gt; &lt;/form&gt; </code></pre> <p>I usually use Eric Meyer's reset, so form elements are relatively clean of overrides. Looking forward to any tips or tricks that you have to offer!</p> http://stackoverflow.com/questions/1294666/rules-of-thumb-in-gdi 3 Rules of Thumb in GDI+ Agnel Kurian 2009-08-18T15:33:11Z 2009-10-20T09:35:11Z <p>I have been working on some GDI+ code in .NET and have been learning my lessons the hard way. Simple things like:</p> <ul> <li>What looks good on screen may not look nice on paper and vice versa</li> <li>Caching too many objects can result in an OutOfMemoryException</li> <li>Floats aren't exact</li> </ul> <p>...and so on. I'm sure there is a lot more that experienced folk can add to this.</p> <p>What are some good rules to follow when using GDI+ or any graphics library in general?</p> <p>One useful tip per post will be nice. Thanks.</p> http://stackoverflow.com/questions/1577826/dealing-with-word-spell-check-in-technical-documents 1 Dealing with Word spell check in technical documents? [closed] Robert MacLean 2009-10-16T12:41:09Z 2009-10-16T13:45:24Z <p>I have waste millions of hours clicking the <em>Ignore Once</em> button in Word, while trying to spell check a document related to development. Be that something light on terms like a proposal or something worse like technical specs.</p> <p>I'm beginning to think that this is a huge waste and someone may have developed a dictionary for Word with common development terms that I could add and no longer have this problem. </p> <p>Does such a dictionary exist or is there some other tricks to use to improve this process?</p> <p><img src="http://img200.imageshack.us/img200/7914/clipboard01jn.png" alt="alt text" /> </p> http://stackoverflow.com/questions/1555825/im-an-experienced-c-developer-what-things-should-i-know-to-code-effectively-in 5 I'm an experienced C# developer, what things should I know to code effectively in c/c++? Arron 2009-10-12T17:20:11Z 2009-10-13T10:37:09Z <p>I have a little bit of experience in c/c++ from college but have not worked in it for years. What sorts of things do I need to know to even be considered for a c/c++ job position?</p> http://stackoverflow.com/questions/1144480/what-is-the-most-under-valued-part-of-net 22 What is the most under-valued part of .NET? Jan Bannister 2009-07-17T16:50:03Z 2009-10-09T18:53:38Z <p>The .NET framework is massive. I've used it for years and I've still not used most of it. </p> <p>I'd like to expand my knowledge of the Framework's backwaters but just reading thought it seems daunting. So I thought I'd tap up the Stack Overflow community first.</p> <p>What part have you found to be the most surprisingly useful? What's your favourite obscure namespace? And conversely are there any shiny bits that are best avoided?</p> http://stackoverflow.com/questions/51180/how-do-i-stop-visual-studio-from-automatically-inserting-asterisk-during-a-block 0 How do I stop visual studio from automatically inserting asterisk during a block comment? tgeros 2008-09-09T03:41:23Z 2009-10-08T20:59:07Z <p>I'm tearing my hair out with this one. If I start a block comment ( /* ) in VS.NET 2005+ then carriage return, VS insists that I have another asterisk ( * ). I know there's an option to turn this off but I just can't find it. Anyone know how to turn this feature off?</p> http://stackoverflow.com/questions/1451216/how-to-recruit-great-developers 13 How to Recruit Great Developers? opc 2009-09-20T14:59:46Z 2009-10-02T15:49:33Z <p>A question for all you interviewers/recruiters out there. How do you evaluate candidates at job interviews? How do you differentiate the good from the bad? (please, no "FizzBuzz" answers...)<br /> Which kind of questions do you feel that have the best results? Personally, I find that asking about all kind of .Net internals subjects usually provide some good results. Usually I also like to push the limits on the candidate's knowledge, to really see what he's capable of.</p> <p>So which kind of questions (or some other techniques) work best for you?</p> <ul> <li>Basic Programming Problems (Recursion, Simple Sorting)</li> <li>Knowledge in various .Net capabilities (Which parts of the framework the candidate had experienced with).</li> <li>Advanced Topics/.Net Internals (I always tend to favor candidates that find it fun to experiment with the SSCLI etc.)</li> <li>Software Design</li> <li>Experience with Development Tools (Source Control, Team System)</li> <li>Performance (Write a function that does X, in the most efficient, fastest way)</li> <li>General Development Questions (What's the candidate's opinion regarding code readability vs performance, code comments vs self documenting code etc.)</li> </ul> <p>I'd also like to hear about more ideas, not necessarily relating to <em>question</em>, but just how to find the really good developers out there.</p> <p>Thanks.</p> http://stackoverflow.com/questions/535785/preparing-for-a-cs-degree-and-college-any-tips 13 Preparing for a CS degree and college. Any tips? ieatpencils 2009-02-11T07:33:47Z 2009-10-01T07:03:58Z <p>I will be attending college in the near future and would love to be prepared and ahead of of the curve.</p> <p>Will be attending to get a BS in Computer Science. Are there any recommendations on what to read/study before starting classes? I already started reading some books on C++ and will be starting with some java books next along with python.</p> <p>I already have some experience with ruby, building my own little set of programs to help me with tasks I do often, I can read some code in different languages and will most likely port my existing programs in ruby to different languages as I learn them.</p> <p>Is there anything you can recommend me learning/doing to make college easier and/or more enjoyable?</p> http://stackoverflow.com/questions/57776/how-to-add-existing-item-an-entire-directory-structure-in-visual-studio 7 How to "Add Existing Item" an entire directory structure in Visual Studio Ian Patrick Hughes 2008-09-11T22:09:48Z 2009-09-29T12:53:25Z <p>I feel ridiculous for asking this because it seems like it should be so simple, however I have been unable to discover an answer to this question.</p> <p>I have a free standing set of files not affiliated with any C# project at all that reside in a complicated nested directory structure. I want to add them in that format to a different directory in an ASP.NET web application I am working on; while retaining the same structure. So, I copied the folder into the target location of my project and I tried to “add existing item” only to lose the previous folder hierarchy. Usually I have re-created the directories by hand, copied across on a one-to-one basis, and then added existing items. There are simply too many directories/items in this case. </p> <p><strong>So how do you add existing directories and files in Visual Studio 2008?</strong> </p> http://stackoverflow.com/questions/1466020/how-to-get-productid-for-blackberry-phones 0 How to get productID for BlackBerry Phones? AJPRA23 2009-09-23T13:31:17Z 2009-09-24T01:23:55Z <p>Trying to establish the combination of <code>vendorid + productid + deviceid</code> <br></p> <p><code>DeviceInfo.getDeviceID()</code> to unique identify the deviceID of the device.</p> <p><code>Branding.getVendorID()</code> to identify the Vendor ID </p> <p>Is there a way to get the product ID programmatically?</p>