User Max - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T15:28:12Zhttp://stackoverflow.com/feeds/user/16034http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/235151/game-programming-how-to-avoid-reinventing-the-wheel10Game programming - How to avoid reinventing the wheelMax2008-10-24T20:30:24Z2009-12-16T20:47:50Z
<p>Summary: </p>
<blockquote>
<p><strong>Can I program a "thick
client" game in C without reinventing
wheels</strong>, or should I just bite the
bullet and use some library or SDK?
I'm a moderate C programmer and am not
afraid to work with pointers, data
structures, memory locations, etc. if
it will give me the control I need to
make a great "thick-client" game.
However, I'm thinking of eschewing
high-level languages & frameworks for
the sake of power and control, <em>not</em>
ease of use.</p>
</blockquote>
<p>I'm interesting in tinkering with a 2D fighting/platforming game as a side project sometime. I'm primarily a Linux server-side programmer with experience in Python, Ruby and PHP. I know that there are excellent frameworks in some of these languages, like <a href="http://www.pygame.org/news.html" rel="nofollow">PyGame</a>. I am also aware of the success people have had with stuff like Air and .NET... but I have some concerns:</p>
<ul>
<li><strong>Performance</strong>: Scripting languages are notoriously slow. If I'm making a real-time game, I want it to be as snappy as possible.</li>
<li><strong>Huge binaries</strong>: Using frameworks like .NET or scripting languages like Ruby often result in big CLRs or libraries that you wouldn't otherwise need. The game I want to make will be small and simple--I don't want its CLR to be bigger than the game itself!</li>
<li><strong>Extra stuff</strong>: Honestly, I just don't like the idea of inheriting some big game library's baggage if I can wrap my head around my own code better.</li>
</ul>
<p>I'm asking this question because I know I'm very susceptible to Not Invented Here Syndrome. I always want to program it myself, and I'm sure it wastes a lot of time. However, this works out for me remarkably often--for example, instead of using <a href="http://www.rubyonrails.org/" rel="nofollow">Rails</a> (a very big web project framework with an ORM and GUI toolkit baked in), I used an array of smaller Ruby tools like <a href="http://rack.rubyforge.org/" rel="nofollow">rack</a> and <a href="http://sequel.rubyforge.org/" rel="nofollow">sequel</a> that fit together beautifully.</p>
<p>So, I turn to you, SO experts. Am I being naive? Here's how I see it:</p>
<ul>
<li><strong>Use C</strong>
<ul>
<li><strong>Cons</strong>
<ul>
<li>Will probably make me hate programming</li>
<li>High risk of reinventing wheels</li>
<li>High risk of it taking so long that I lose interest</li>
</ul></li>
<li><strong>Pros</strong>
<ul>
<li>Tried & true - most A-list games are done in C (is this still true today?)</li>
<li>High level of control over memory management, speed, asset management, etc., which I trust myself to learn to handle</li>
<li>No cruft</li>
</ul></li>
</ul></li>
<li><strong>Use framework or SDK</strong>
<ul>
<li><strong>Cons</strong>
<ul>
<li>Risk of oversized deliverable</li>
<li>Dependent on original library authors for all facets of game development--what if there isn't a feature I want? I'll have to program it myself, which isn't bad, but partially defeats the purpose of using a high-level framework in the first place</li>
<li>High risk of performance issues</li>
</ul></li>
<li><strong>Pros</strong>
<ul>
<li>MUCH faster development time</li>
<li>Might be easier to maintain</li>
<li>No time wasted reinventing common paradigms</li>
</ul></li>
</ul></li>
</ul>
<p>What else can I add to this list? Is it a pure judgment call, or can someone seal the deal for me? Book suggestions welcome.</p>
http://stackoverflow.com/questions/189988/inline-class-instantiation-in-php-for-ease-of-method-chaining5"Inline" Class Instantiation in PHP? (For Ease of Method Chaining)Max2008-10-10T02:57:57Z2009-09-15T21:43:16Z
<p>An idiom commonly used in OO languages like Python and Ruby is instantiating an object and chaining methods that return a reference to the object itself, such as:</p>
<pre><code>s = User.new.login.get_db_data.get_session_data
</code></pre>
<p>In PHP, it is possible to replicate this behavior like so:</p>
<pre><code>$u = new User();
$s = $u->login()->get_db_data()->get_session_data();
</code></pre>
<p>Attempting the following results in <code>syntax error, unexpected T_OBJECT_OPERATOR</code>:</p>
<pre><code>$s = new User()->login()->get_db_data()->get_session_data();
</code></pre>
<p>It seems like this could be accomplished using static methods, which is probably what I'll end up doing, but I wanted to check the lazyweb: <strong>Is there actually a clean, simple way to instantiate PHP classes "inline" (as shown in the above snippet)</strong> for this purpose?</p>
<p>If I do decide to use static methods, <strong>is it too sorcerous to have a class's static method return an instantiation of the class itself</strong>? (Effectively writing my own constructor-that-isn't-a-constructor?) It feels kind of dirty, but if there aren't too many scary side effects, I might just do it.</p>
<p>I guess I could also pre-instantiate a UserFactory with a get_user() method, but I'm curious about solutions to what I asked above.</p>
http://stackoverflow.com/questions/168423/why-does-subversion-chown-recreate-files-on-checkin2Why does subversion chown/recreate files on checkin?Max2008-10-03T19:12:45Z2009-04-07T16:08:46Z
<p>I have a personal wiki that I take notes on. The wiki's pages are in a subversion working copy directory, "pages", and I set their permissions to 664, owned by www-data:www-data. My username is in the "www-data" group, so I can checkin and mess with the pages manually.</p>
<p>For a while, I had an issue because every time I ran a checkin, the files would be owned by me:www-data instead of www-data:www-data, and I would no longer be able to change the wiki files through my web interface! I solved the issue by flipping the setgid bit on the "pages" directory, but I'm still confused as to why this happened in the first place:</p>
<p>Every time I check something into subversion, it appears as if svn deletes it and recreates it. Why? Does this behavior support some functionality that I'm not aware of? Is there a way to change it?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/639949/validating-oracle-dates-in-python1Validating Oracle dates in PythonMax2009-03-12T18:41:20Z2009-03-12T19:33:41Z
<p>Our Python CMS stores some date values in a generic "attribute" table's <em>varchar</em> column. Some of these dates are later moved into a table with an actual <em>date</em> column. If the CMS user entered an invalid date, it doesn't get caught until the migration, when the query fails with an "Invalid string date" error.</p>
<p>How can I use Python to make sure that all dates put into our CMS are valid Oracle string date representations?</p>
http://stackoverflow.com/questions/95106/vim-shortcut-for-adding-arguments-to-a-function1Vim shortcut for adding arguments to a functionMax2008-09-18T18:09:21Z2009-01-08T20:01:52Z
<p>Is there a Vim shortcut for jumping to the argument list of the current function? I often find myself needing to mess with the argument list of a function, and it's kind of annoying to have to do ?def or ?function or 10k or what-have-you until I finally get to it, then /( or t( or 5e to get to the right position in the argument list, and so on. It would be great if I could just hit ,a for example and instantly get put into insert mode at the end/beginning of the argument list.</p>
<p>Possible approaches:</p>
<ul>
<li>Folding</li>
<li>Tag support (ctags)</li>
</ul>
<p>Also, I'm using Python, so solutions based on curly braces unfortunately won't work.</p>
<p>If no such shortcut exists, I'll just write one and post it here as an answer. :-)</p>
http://stackoverflow.com/questions/414111/how-do-i-push-a-file-from-a-linux-box-to-a-windows-box/414132#4141321Answer by Max for How do I push a file from a Linux box to a Windows Box?Max2009-01-05T19:04:40Z2009-01-05T19:04:40Z<p>You could also pull the file with <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html" rel="nofollow">PSCP</a>.</p>
http://stackoverflow.com/questions/163887/sql-query-simulating-an-and-over-several-rows-instead-of-sub-querying5SQL query: Simulating an "AND" over several rows instead of sub-queryingMax2008-10-02T18:36:59Z2008-11-20T04:17:36Z
<p>Suppose I have a "tags" table with two columns: <strong>tagid</strong> and <strong>contentid</strong>. Each row represents a tag assigned to a piece of content. I want a query that will give me the contentid of every piece of content which is tagged with tagids 334, 338, and 342.</p>
<p>The "easy" way to do this would be (<em>pseudocode</em>):</p>
<pre><code>select contentid from tags where tagid = 334 and contentid in (
select contentid from tags where tagid = 338 and contentid in (
select contentid from tags where tagid = 342
)
)
</code></pre>
<p>However, my gut tells me that there's a better, faster, more extensible way to do this. For example, what if I needed to find the intersection of 12 tags? This could quickly get horrendous. Any ideas?</p>
<p><strong>EDIT</strong>: Turns out that this is also covered in <a href="http://weblogs.sqlteam.com/jeffs/jeffs/archive/2007/06/12/60230.aspx" rel="nofollow">this excellent blog post</a>.</p>
http://stackoverflow.com/questions/247792/splitting-log-files-by-date-or-file-size-in-lighttpd0Splitting log files by date or file size in Lighttpd.Max2008-10-29T18:01:01Z2008-10-31T18:43:20Z
<p>So far the only way I've found to do this is by telling Lighty to pipe its logs through an app called "vlogger". Is there a way to break out log files by date without introducing any external dependencies or cron jobs? I feel like there might be a way to do it with config file variables, but my Lighty-fu just isn't strong enough.</p>
<p><strong>Edit</strong>: Looks like <a href="http://www.debian-administration.org/articles/117" rel="nofollow">logrotate</a> may be my best bet.</p>
http://stackoverflow.com/questions/235826/learning-about-low-level-graphics-programming5Learning about low-level graphics programmingMax2008-10-25T03:15:38Z2008-10-30T12:46:42Z
<p>I'm interesting in learning about the different layers of abstraction available for making graphical applications.</p>
<p>I see a lot of terms thrown around: At the highest level of abstraction, I hear about things like C#, .NET, pyglet and pygame. Further down, I hear about DirectX and OpenGL. Then there's DirectDraw, SDL, the Win32 API, and still other multi-platform libraries like WxWidgets.</p>
<p>How can I get a good sense of where one of these layers ends and where the next one begins? What is the "lowest possible level" way of creating a window in Windows, in C? What about C++? (A code sample would be divine.) What about in X11? Are the Windows implementations of OpenGL and DirectX built on top of the Win32 API? Where can I begin to learn about these things?</p>
<p>There's another question on SO where <a href="http://www.charlespetzold.com/pw5/" rel="nofollow">Programming Windows</a> is suggested. What about for Linux? Is there an equivalent such book?</p>
<p>I'm aware that this is very low-level, and that there are many friendlier tools available, but I would like to at least learn the basics of what's going on beneath the surface. As much as I'd like to begin slinging windows and vectors right off the bat, starting with something like pygame is too high-level for me; I really need to make the full conceptual circuit of <em>how you draw stuff on a computer</em>.</p>
<p>I will certainly appreciate suggestions for books and resources, but I think it would be stupendously cool if the answers to this question filled up with lots of different ways to get to "Hello world" with different approaches to graphics programming. C? C++? Using OpenGL? Using DirectX? On Windows XP? On Ubuntu? Maybe I ask for too much.</p>
http://stackoverflow.com/questions/234721/what-are-the-biggest-differences-between-python-and-ruby-from-a-philosophical-per/234850#23485012Answer by Max for What are the biggest differences between Python and Ruby from a philosophical perspectiveMax2008-10-24T18:54:36Z2008-10-24T18:54:36Z<p>I've been closely working with both Ruby and Python for over a year now. In my (still non-expert) opinion, these two languages solve the same problem in wildly different ways. Except for some esoteric features of each language, there is nothing you can do in one that cannot be done in the other with some syntactic or conceptual changes, sometimes trivial, sometimes not.</p>
<p>I think the most salient difference between each language is that Python is extremely syntactically simple, and Pythonistas live in the "there is only one way to do it" camp, whereas Rubyists prefer their language's syntactic quirks, and believe that "there is more than one way to do it". Both languages have thriving communities with varying degrees of friendliness.</p>
<p>My suggestion is to get yourself vaguely familiar with both languages--just take a day or week for each of them--and then decide which one fits the cut of your jib more closely.</p>
http://stackoverflow.com/questions/196791/how-do-i-set-up-my-ubuntu-vps-to-send-outgoing-mail5How do I set up my Ubuntu VPS to send outgoing mail?Max2008-10-13T05:37:11Z2008-10-13T22:07:02Z
<p>My VPS provider (Slicehost) doesn't provide an SMTP server. I use Google Apps to send and receive mail for my domains, but I want to be able to programmatically send e-mail.</p>
<p>I've been Googling this issue on and off for many months, and I just can't seem to get a clear picture of what I need to do. Do I just need an MTA like postfix? Do I configure it as a "satellite", or an "internet" site? Do I need to make any DNS changes? If I want to programmatically receive e-mail someday, are there any configuration options I should be careful about tinkering with? Also, if my VPS host <strong>did</strong> provide an SMTP server, what <em>wouldn't</em> I need to do, that I'm doing now?</p>
<p>Thank you!</p>
<p><strong>Edit</strong>: A quick synopsis of my findings:</p>
<ul>
<li>Update <code>/etc/hosts</code> and <code>/etc/hostname</code> to reflect the FQDN (for example, <code>mail.domain.com</code> or <code>sub.domain.com</code> instead of <code>slicename</code>)
<ul>
<li>Reboot and verify with <code>hostname -f</code></li>
</ul></li>
<li>Set up reverse DNS (which is owned by whoever owns the IP pool) to point at the same FQDN
<ul>
<li>Check that the RDNS has propogated with <code>dig -x server.ip.address</code></li>
</ul></li>
<li><code>sudo aptitude install postfix telnet mailx</code>
<ul>
<li>Use <strong>internet site</strong> setting</li>
<li>Set FQDN to whatever was chosen above</li>
</ul></li>
<li>Test with <code>mail whateveryouremailis@gmail.com</code></li>
</ul>
http://stackoverflow.com/questions/196841/how-do-i-emulate-pythons-named-printf-parameters-in-ruby2How do I emulate Python's named printf parameters in Ruby?Max2008-10-13T06:25:29Z2008-10-13T19:47:39Z
<p>In Python, you can do this:</p>
<pre><code>print "Hi! I'm %(name)s, and I'm %(age)d years old." % ({"name":"Brian","age":30})
</code></pre>
<p>What's the closest, simplest Ruby idiom to replicate this behavior? (No monkeypatching the String class, please.)</p>
<p><strong>EDIT:</strong> One of the really excellent benefits of this is that you can store the pre-processed string in a variable and use it as a "template", like so:</p>
<pre><code>template = "Hi! I'm %(name)s, and I'm %(age)d years old."
def greet(template,name,age):
print template % ({"name":name,"age":age})
</code></pre>
<p>This is obviously a trivial example, but there is a lot of utility in being able to store such a string for later use. Ruby's <code>"Hi! I'm #{name}"</code> convention is cursorily similar, but the immediate evaluation makes it less versatile.</p>
<p>Please don't downvote answers suggesting the <code>#{var}</code> technique, as they came from before this edit. (Random idea kernel: Perhaps answers should be protected from votes if a question author marks them as "outdated"...?)</p>
http://stackoverflow.com/questions/188208/whats-the-difference-between-foo-and-foo-217What's the difference between "&> foo" and "> foo 2>&1"?Max2008-10-09T17:01:48Z2008-10-13T15:50:27Z
<p>There seem to be two bash idioms for redirecting STDOUT and STDERR to a file:</p>
<pre><code>fooscript &> foo
</code></pre>
<p>... and ...</p>
<pre><code>fooscript > foo 2>&1
</code></pre>
<p>What's the difference? It seems to me that the first one is just a shortcut for the second one, but my coworker contends that the second one will produce no output even if there's an error with the initial redirect, whereas the first one will spit redirect errors to STDOUT.</p>
<p><strong>EDIT</strong>: Okay... it seems like people are not understanding what I am asking, so I will try to clarify:</p>
<p>Can anyone give me an example where the two <em>specific lines</em> lines written above will yield different behavior?</p>
http://stackoverflow.com/questions/188437/programmer-vs-architect/188520#1885201Answer by Max for Programmer vs Architect?Max2008-10-09T18:20:28Z2008-10-09T18:20:28Z<p>You couldn't design a car without knowing its inner workings... nor could you design a house without understanding the limitations of the tools that the construction workers will eventually be using to build it. Similarly, how could you hope to design software without knowing the technical details that comprise the act of programming it?</p>
http://stackoverflow.com/questions/167371/how-do-i-see-what-files-were-changed-between-2-revisions/167378#1673785Answer by Max for How do I see what files were changed between 2 revisions?Max2008-10-03T15:17:55Z2008-10-03T15:23:43Z<pre><code>svn log -v -rX:Y .
</code></pre>
<p>The -v for "verbose" switch will give you detailed output on which files were affected on that revision.</p>
<p>Note that "." assumes you are currently in a working copy directory, but you can also use a URL such as "http://svn.myawesomesoftwareproject.com/trunk/lib/foo.c".</p>
<p>This information can be found by typing "svn help log", or by reading the <a href="http://svnbook.red-bean.com/" rel="nofollow">SVN Book</a>, available free online. Don't forget to <strong>R</strong>ead <strong>T</strong>he <strong>F</strong>riendly <strong>M</strong>anual!</p>
http://stackoverflow.com/questions/159597/how-to-convince-people-to-comment-their-code/159603#15960317Answer by Max for How to convince people to comment their codeMax2008-10-01T20:43:21Z2008-10-01T20:43:21Z<p>Show them their own code from 6 months ago. If they can't understand and outline exactly what it does within 2 to 4 minutes, your point has probably been made.</p>
http://stackoverflow.com/questions/158124/best-way-to-count-file-downloads-on-a-website/158132#1581320Answer by Max for Best way to count file downloads on a websiteMax2008-10-01T15:13:49Z2008-10-01T15:13:49Z<p>Use the logs--each GET request for the file is another download (unless the visitor stopped the download partway through for some reason).</p>
http://stackoverflow.com/questions/158044/how-to-use-find-to-search-for-files-created-on-a-specific-date/158109#1581094Answer by Max for How to use 'find' to search for files created on a specific date?Max2008-10-01T15:08:24Z2008-10-01T15:08:24Z<p>You can't. The -c switch tells you when the permissions were last changed, -a tests the most recent access time, and -m tests the modification time. The filesystem used by most flavors of Linux (ext3) doesn't support a "creation time" record. Sorry!</p>
http://stackoverflow.com/questions/154853/how-do-you-remove-subversion-control-for-a-folder/154949#1549491Answer by Max for How do you remove subversion control for a folder?Max2008-09-30T20:35:05Z2008-09-30T20:35:05Z<p>On Linux, this will work:</p>
<pre><code> find . -iname ".svn" -print0 | xargs -0 rm -r
</code></pre>
http://stackoverflow.com/questions/128529/ideas-for-a-scary-programming-halloween-costume/128697#12869725Answer by Max for Ideas for a scary programming Halloween costume?Max2008-09-24T17:54:28Z2008-09-24T19:21:41Z<p>You could go as...</p>
<p><strong>PHP</strong>: Have a friend follow you around with a giant fake syringe reading "SQL" and occasionally stab you with it. Get really offended if anyone points it out.</p>
<p><strong>Ruby</strong>: Speak in incomprehensible six-word sentences that contain the hidden secrets of the universe if you think about them for long enough, or drive you mad. Or just insist that your Halloween costume is JUST AS GOOD AS PYTHON'S. Get really offended if anyone disagrees.</p>
<p><strong>Python</strong>: Neurotically insist that everyone stay four feet away from each other at any given time. Get really offended if anyone stops talking to you because of it.</p>
<p><strong>Steve Ballmer</strong>: Dress business casual. Carry a bottle of water so you can regularly douse yourself and maintain the illusion of being the sweatiest CEO on earth. Whenever someone gives you candy, hurl their lawn gnome into the heavens and scream "ALMOND JOY, ALMOND JOY, ALMOND JOY!!!"</p>
http://stackoverflow.com/questions/128381/including-many-rewrite-directives-in-lighttpd0Including many rewrite directives in lighttpdMax2008-09-24T17:02:11Z2008-09-24T17:14:37Z
<p>I have a bunch of projects in parallel subdirectories that all have etc/lighttpd.conf files. The files are very simple; they just include a directive that looks like this:</p>
<pre><code>url.rewrite-once = ("^/project(.*)$"=>"project/router.php?args=$1")
</code></pre>
<p>Unfortunately, I just discovered that I can't simply loop through them, because I'll get a "duplicate config variable" error. I see that the way I'm supposed to use it is like this:</p>
<pre><code>url.rewrite-once = (
"^/project1(.*)$"=>"project1/router.php?args=$1"
,"^/project2(.*)$"=>"project2/router.php?args=$1"
)
</code></pre>
<p>However, if I make my per-directory config files just include the rewrites, and have a shell script build them, I can't really put any OTHER lighty directives in the per-directory files. Then again, I'm new to lighty, so maybe I don't need to and just don't realize it.</p>
<p>What's "the right way" to do this?</p>
http://stackoverflow.com/questions/122313/how-do-you-include-exclude-a-certain-type-of-files-under-subversion/122330#1223303Answer by Max for How do you include/exclude a certain type of files under Subversion?Max2008-09-23T17:05:25Z2008-09-23T17:05:25Z<p>This can be achieved using the <a href="http://svnbook.red-bean.com/en/1.1/ch07s02.html#svn-ch-7-sect-2.3.3" rel="nofollow">svn:ignore</a> property, or the global-ignores property in your ~/.subversion/config file. (Scroll to the top of that first link to see instructions on editing properties.)</p>
<p>By using svn propset or svn propedit on a directory, you will be able to make subversion ignore all files matching that pattern within the specific directory. If you change global-ignores in ~/.subversion/config's miscellany section, however, subversion will ignore such files no matter where they are located.</p>
http://stackoverflow.com/questions/121662/implementing-user-controlled-style-changes-in-asp-net/121698#1216980Answer by Max for Implementing User-Controlled Style Changes in ASP.NETMax2008-09-23T15:23:23Z2008-09-23T15:23:23Z<p>I've done stuff like this in PHP before, and I used ImageMagick and GD libraries. I'm not sure if ASP and C# can plug into that using the .NET framework, but it's a start.</p>
http://stackoverflow.com/questions/106481/javascript-with-embedded-ruby-how-to-make-sure-the-string-does-not-break/106518#1065181Answer by Max for Javascript with embedded ruby - How to make sure the string does not break?Max2008-09-20T00:13:10Z2008-09-20T00:13:10Z<pre><code>@ruby_var.gsub(/[']/, '\\\\\'')
</code></pre>
<p>That will escape the single quote with an apostrophe, keeping your Javascript safe!</p>
<p>Also, if you're in Rails, there are a bunch of <a href="http://rails.rubyonrails.com/classes/ActionView/Helpers/JavaScriptHelper.html#M000440" rel="nofollow">Javascript-specific tools</a>.</p>
http://stackoverflow.com/questions/102759/database-safety-intermediary-tobedeleted-column-table0Database safety: Intermediary "to_be_deleted" column/table?Max2008-09-19T15:21:56Z2008-09-19T21:55:48Z
<p>Everyone has accidentally forgotten the WHERE clause on a DELETE query and blasted some un-backed up data once or twice. I was pondering that problem, and I was wondering if the solution I came up with is practical.</p>
<p>What if, in place of actual DELETE queries, the application and maintenance scripts did something like:</p>
<pre><code>UPDATE foo SET to_be_deleted=1 WHERE blah = 50;
</code></pre>
<p>And then a cron job was set to go through and actually delete everything with the flag? The downside would be that pretty much every other query would need to have "WHERE to_be_deleted != 1" appended to it, but the upside would be that you'd never mistakenly lose data again. You could see "2,349,325 rows affected" and say, "Hmm, looks like I forgot the WHERE clause," and reset the flags. You could even make the to_be_deleted field a DATE column, so the cron job would check to see if a row's time had come yet.</p>
<p>Also, you could remove DELETE permission from the production database user, so even if someone managed to inject some SQL into your site, they wouldn't be able to remove anything.</p>
<p>So, my question is: Is this a good idea, or are there pitfalls I'm not seeing? </p>
http://stackoverflow.com/questions/103669/what-makes-you-a-c-programming-expert/103764#10376416Answer by Max for What makes you a C programming expert?Max2008-09-19T17:10:52Z2008-09-19T17:10:52Z<p>I think the trouble with this question is that the answer is kind of meaningless. I see people talking about experience, and that's good, and I see people talking about understanding the intricacies of the language, and that's good. However, if I were hiring someone to work on my C project, and I had a magic 8-ball that would give me an accurate answer to any one (and only one) question, I would never ask it, "Are they a C expert".</p>
<p>Why?</p>
<p>Just because someone is a C expert doesn't mean that they're a good software developer. Experience and language familiarity are good, but I think they are both trumped by that intangible, un-quantifiable property that makes someone a "good software developer". What I'm trying to say is, "What makes you a C programming expert?" is not a useful question, because there are more important questions. If someone is a <strong>G</strong>ood <strong>P</strong>rogrammer, they will rise to the occasion.</p>
<p>As an example: You can be a C programming expert and be horrible on a team. You can be a C programming expert and refuse to use version control. You can be a C programming expert without knowing how to actually <strong>DO</strong> anything with C. </p>
<p>The "without" clauses in those sentences are equally important questions: What makes you a good team programmer? What's the best way to use SCM <em>x</em> or <em>y</em>? How do you approach programming a client/server game, or billing application, or web browser, or operating system, or compiler, in C? If a candidate told me "No, I am not a C expert", but gave me great answers to these other questions, I would hire them in a heartbeat over the guy who the magic 8-ball said was a C expert, but doesn't know how to check his code into subversion and hasn't learned a new language in 12 years.</p>
http://stackoverflow.com/questions/99161/how-do-you-make-vim-unhighlight-what-you-searched-for/101756#1017561Answer by Max for How do you make vim unhighlight what you searched for?Max2008-09-19T13:21:26Z2008-09-19T13:21:26Z<p>I have this in my .vimrc:</p>
<pre><code>nnoremap ; :set invhlsearch<CR>
</code></pre>
<p>This way, ; will toggle search highlighting. Normally, the ; key repeats the latest t/T/f/F command, but I never really used that functionality. I find this setting much more useful, because I can change search highlighting on and off very quickly, and easily get a sense of where my search results are, at a glance.</p>
http://stackoverflow.com/questions/96501/perks-for-new-programmers/96723#96723445Answer by Max for Perks for new programmersMax2008-09-18T20:41:49Z2008-09-19T13:17:55Z<p>In my experience, good programmers want to program with as few distractions as possible. Some of these are more relevant to big companies, and I'm not sure where you work, but here are some examples:</p>
<ul>
<li><strong>Casual dress code</strong>: Young programmers in particular will have a tough time avoiding resentment of a strict dress code. "I'm just going to sit at my desk all day--why do I need to wear slacks/polos/other uncomfortable business clothes?" In my opinion, this is half rebellion and half honest productivity-seeking: It really is much easier to program in jeans and a t-shirt than slacks and a formal button-down. The question you probably need to ask yourself is if the potential productivity gain and morale boost is worth the potential loss of "professional" atmosphere. It all depends on your situation... there are startups <em>and</em> Fortune 500 companies out there which allow jeans & t-shirts.</li>
<li><strong>Few meetings</strong>: Almost nothing is more distracting than a constant stream of meetings. Try to avoid team-wide "status meetings" that could be carried out via individual e-mails or conversations. Programmers like it when their employer lets them program.</li>
<li><strong>Experienced coworkers</strong>: Good programmers want to improve. If any of your other employees have contributed to big open source projects, or have worked individually on some particularly successful internal projects, let your prospectives know!</li>
<li><strong>Private offices</strong>: This is rarely practical anywhere but venture-capitalized startups, but if you can offer candidates their own offices, they'll leave the interview with hearts in their eyes. Programming is so much easier when you aren't distracted by foot traffic and people singing happy-birthday one cube over.</li>
<li><strong>Cool stuff</strong>: If you can afford it, subsidize games for lunch breaks and post-work hang out sessions.</li>
<li><strong>Best practices</strong>: This will ensnare good programmers and intimidate less experienced ones: Show that your candidates will be working with reliable, sane version control, and that there are coding standards about unit tests or inheritance or anything. Organization is important.</li>
<li><strong>Don't nickel-and-dime</strong>: If you can be flexible with hours, do it! No one likes having to clock out every time they go to the restroom; it feels like you're not being valued as an employee.</li>
<li><strong>Dual monitors</strong>: Instant win for almost any programmer who's worked with dual monitors before.</li>
</ul>
http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/99026#990260Answer by Max for What are your favorite Vim tricks?Max2008-09-19T02:39:58Z2008-09-19T02:39:58Z<p><a href="http://dotfiles.org/.vimrc" rel="nofollow">http://dotfiles.org/.vimrc</a></p>
<p>This one's mine: <a href="http://dotfiles.org/~maxcantor/.vimrc" rel="nofollow">http://dotfiles.org/~maxcantor/.vimrc</a></p>
http://stackoverflow.com/questions/93279/how-to-create-a-fast-php-library/93305#933053Answer by Max for How to create a fast PHP library ?Max2008-09-18T14:55:59Z2008-09-18T15:09:27Z<p>If you've done your programming in an object-oriented way, you can make use of the <a href="http://us2.php.net/autoload" rel="nofollow">autoload</a> function, which will load classes from their source files on-demand as you call them.</p>
<p><strong>Edit</strong>: I noticed that someone downvoted both answers that referred to autoloading. Are we wrong? Is the overhead of the __autoload function too high to use it for performance purposes? If there is something I'm not realizing about this technique, I'd be really interested to know what it is.</p>
http://stackoverflow.com/questions/502492/i-was-recently-asked-for-my-stackoverflow-rep-score-in-a-job-interview-is-that-a/502508#502508Comment by Max on I was recently asked for my stackoverflow rep score in a job interview. Is that appropriate?Max2009-02-02T14:33:11Z2009-02-02T14:33:11ZWow, Jon... it's too bad you can't upvote comments.http://stackoverflow.com/questions/242996/dealbreakers-for-new-programming-jobs/366572#366572Comment by Max on Dealbreakers for new programming jobs?Max2008-12-23T17:47:53Z2008-12-23T17:47:53ZHow can they trust you when they've never met you before...?http://stackoverflow.com/questions/226951/favorite-vps-host/226985#226985Comment by Max on Favorite VPS host?Max2008-10-22T19:15:52Z2008-10-22T19:15:52ZI've been very happy with slicehost. Totally awesome provider.http://stackoverflow.com/questions/58482/ruby-get-a-variables-nameComment by Max on Ruby - Get a Variable's NameMax2008-10-21T18:42:41Z2008-10-21T18:42:41ZThis is irrelevant to your question, but it isn't very Ruby-ish to test against the class name (Array). You should instead test against the FUNCTIONALITY of the class that you want it to have--in this case, probably enumerability.http://stackoverflow.com/questions/168423/why-does-subversion-chown-recreate-files-on-checkin/178038#178038Comment by Max on Why does subversion chown/recreate files on checkin?Max2008-10-13T23:32:04Z2008-10-13T23:32:04Z@David: I don't think this is something subversion "wasn't designed" for... there's just a small discrepancy (solved by setting the sticky permissions bit) with permissions that I was curious about.http://stackoverflow.com/questions/189988/inline-class-instantiation-in-php-for-ease-of-method-chaining/190014#190014Comment by Max on "Inline" Class Instantiation in PHP? (For Ease of Method Chaining)Max2008-10-10T04:07:40Z2008-10-10T04:07:40ZThank you! I accepted the other fellow's answer, but if I could accept two, I would accept yours as well. tobyhede's point about bending PHP to do something it wasn't designed to do just felt particularly salient to me.http://stackoverflow.com/questions/189988/inline-class-instantiation-in-php-for-ease-of-method-chaining/190052#190052Comment by Max on "Inline" Class Instantiation in PHP? (For Ease of Method Chaining)Max2008-10-10T04:06:00Z2008-10-10T04:06:00ZI prefer Ruby, then Python, then PHP, but I regularly program in all three.http://stackoverflow.com/questions/188208/whats-the-difference-between-foo-and-foo-21/188217#188217Comment by Max on What's the difference between "&> foo" and "> foo 2>&1"?Max2008-10-09T17:20:50Z2008-10-09T17:20:50ZYes, but what's the difference between those two things? Is there one? Can you give an example of a situation where they would yield different behavior?http://stackoverflow.com/questions/188208/whats-the-difference-between-foo-and-foo-21/188217#188217Comment by Max on What's the difference between "&> foo" and "> foo 2>&1"?Max2008-10-09T17:06:01Z2008-10-09T17:06:01ZThank you, but I was asking about the difference between "> foo 2>&1" and "&> foo", not "2>&1 foo" and "&> foo".http://stackoverflow.com/questions/140270/humor-in-code/140342#140342Comment by Max on Humor in codeMax2008-10-08T21:34:59Z2008-10-08T21:34:59Zvocab nazi slude++http://stackoverflow.com/questions/168423/why-does-subversion-chown-recreate-files-on-checkin/178038#178038Comment by Max on Why does subversion chown/recreate files on checkin?Max2008-10-07T19:23:03Z2008-10-07T19:23:03ZIsak, this would work, but the problem here is that my working copy IS my /var/www! When I access files through <a href="http://localhost/wiki" rel="nofollow">localhost/wiki</a>, it is viewing the files in /var/www and editing them, too.http://stackoverflow.com/questions/160633/why-do-we-still-program-with-flat-filesComment by Max on Why do we still program with flat files?Max2008-10-07T15:45:55Z2008-10-07T15:45:55ZThere's a multimedia-based programming language called Max/MSP that uses visual nodes instead of text.http://stackoverflow.com/questions/172013/what-was-the-most-productive-improvement-suggestion-you-ever-made-for-your-team/172048#172048Comment by Max on What was the most productive improvement suggestion you ever made for your teamMax2008-10-05T14:31:05Z2008-10-05T14:31:05ZThis sounds like it could either result in a perfectly balanced product without feature-creep, OR a really frustrated customer!http://stackoverflow.com/questions/171964/stick-with-php-or-learn-ruby-on-rails/171984#171984Comment by Max on Stick with PHP or learn Ruby (on rails)Max2008-10-05T14:29:46Z2008-10-05T14:29:46ZI would strongly suggest learning Ruby first, and learning how to use some basic Ruby CGI tools, before using Rails.http://stackoverflow.com/questions/164597/how-can-i-setup-the-permissions-in-linux-so-that-two-users-can-update-the-same-sv/164654#164654Comment by Max on How can I setup the permissions in Linux so that two users can update the same SVN working copy on the server?Max2008-10-02T21:19:17Z2008-10-02T21:19:17ZI thought that without this, every user has read/write access to every file. Will this really resolve a permission denied error...?