User MattW. - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T13:51:44Zhttp://stackoverflow.com/feeds/user/4494http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/139621/merit-of-screencasts-vs-text-based-documentation29Merit of screencasts vs text-based documentation? [closed]MattW.2008-09-26T13:52:40Z2009-10-20T08:01:12Z
<p>There seems to be a growing trend of presenting information in videos instead of text. It was highly annoying when I got started with <a href="http://en.wikipedia.org/wiki/Ruby%5Fon%5FRails" rel="nofollow">Ruby on Rails</a> (though they seem to have improved) and now I just stumbled upon <a href="http://drupal.org/videocasts/upgrading-to-6" rel="nofollow">an upgrade tutorial</a> for <a href="http://en.wikipedia.org/wiki/Drupal" rel="nofollow">Drupal</a> vers. 5 to 6. Now, the same information in text is available, but it's hidden a few links away and harder to find. </p>
<p>Question: why do you prefer videos, or prefer text-based tutorials? What are the advantages/disadvantages of each?</p>
<p>I can understand videos for <a href="http://en.wikipedia.org/wiki/Adobe%5FPhotoshop" rel="nofollow">Photoshop</a> tutorials, and maybe marketing purposes. But a command-line video hasn't been exciting since <a href="http://en.wikipedia.org/wiki/The%5FMatrix" rel="nofollow">The Matrix</a>.</p>
http://stackoverflow.com/questions/1528459/getting-starting-with-parallel-programming/1530272#15302720Answer by MattW. for Getting starting with Parallel programming.MattW.2009-10-07T08:27:59Z2009-10-07T08:27:59Z<p>You don't need special hardware like graphic cards and Cells to do parallel programming. Your simple multi-core CPU will also profit from parallel programming. If you have experience with C/C++ and objective-c, start with one of those and learn to use threads. Start with simple examples like matrix multiplication or maze solving and you'll learn about those pesky problems (parallel software is non-deterministic and full of Heisenbugs). </p>
<p>If you want to go into the massive multiparallelism, I'd choose openCL as it's the most portable one. Cuda still has a larger community, more documentation and examples and is a bit easier, but you'd an nvidia card.</p>
http://stackoverflow.com/questions/47468/a-well-designed-web-app-gui-framework4A Well-Designed Web App GUI Framework?MattW.2008-09-06T13:47:54Z2009-06-17T22:30:26Z
<p>As one of those people that never got around to properly learning design (or having no talent for it), the design seems to be the step always holding me back. It's not a problem for rich-clients, as the standard GUI toolkits provide some acceptable ways to design a good-looking interface, but the web is another story. </p>
<p>Question: Does anyone know of a high-quality framework for designing the interface of web applications? I'm thinking of standard snippets of html for an adequate set of controls (the standard html controls plus maybe navigations, lists, forms) and style sheets to give it an acceptable, modern look. If such a thing existed, it could even support themes in the way wordpress, drupal etc. allow it.</p>
<p>I know of the yahoo yui, but that's mostly javascript, though their grid css is a step in the right direction. </p>
http://stackoverflow.com/questions/62153/reasons-not-to-build-your-own-bug-tracking-system/62179#6217910Answer by MattW. for Reasons not to build your own bug tracking systemMattW.2008-09-15T11:12:32Z2009-06-12T14:43:01Z<p>Programmers like to build their own ticket system because, having seen and used dozens of them, they know everything about it. That way they can stay in the comfort zone. </p>
<p>It's like checking out a new restaurant: it might be rewarding, but it carries a risk. Better to order pizza again.</p>
<p>There's also a great fact of decision making buried in there: there are always two reasons to do do something: a good one and the right one. We make a decision ("Build our own"), then justify it ("we need full control"). Most people aren't even aware of their true motivation.</p>
<p>To change their minds, you have to attack the <strong>real</strong> reason, not the justification. </p>
http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/64256#64256134Answer by MattW. for Confessions of your worst WTF Moment. (What not to do.)MattW.2008-09-15T16:05:51Z2008-12-22T05:14:47Z<p>I had just imported a bunch of old data into a new system, had taken about 5 hours and was due to go live two hours later, this was around 4 in the morning.</p>
<p>For some reason I tried to delete something:</p>
<p>DELETE from important_table; where id=4</p>
<p>Yeah, I didn't notice the semicolon either. And no, there was no safety net.</p>
http://stackoverflow.com/questions/301750/404-hijacking/301868#3018683Answer by MattW. for 404 HijackingMattW.2008-11-19T13:21:30Z2008-11-19T13:21:30Z<p>Yes, the protection racket that is Antivirus software highjacks 404 pages. That's not a reason to abandon the status code, though. Let the user suffer until he learns.</p>
<p>Some software, such as google's chrome only highjack the 404 pages if they are under a certain size, so make sure to create a somewhat meaning- and helpful error page.</p>
http://stackoverflow.com/questions/238684/subtract-n-hours-from-a-datetime-in-ruby/238690#2386900Answer by MattW. for Subtract n hours from a DateTime in RubyMattW.2008-10-26T21:52:36Z2008-10-26T21:57:38Z<p>DateTime can't do this, but time can:</p>
<pre><code>t = Time.now
t = t-hours*60
</code></pre>
<p>Note that Time also stores date information, it's all a little strange.</p>
<p>If you have to work with DateTime</p>
<pre><code>DateTime.commercial(date.year,date.month,date.day,date.hour-x,date.minute,date.second)
</code></pre>
<p>might work, but is ugly. The doc says DateTime is immutable, so I'm not even sure about - and <<</p>
http://stackoverflow.com/questions/212193/why-can-i-only-leave-a-comment-every-30-seconds/212196#2121965Answer by MattW. for Why can I only leave a comment every 30 seconds?MattW.2008-10-17T13:49:12Z2008-10-17T13:49:12Z<p>It encourages thinking and weeds out bots and users running amok.</p>
http://stackoverflow.com/questions/209255/traversing-a-unidirectional-tree-efficiently/209285#2092850Answer by MattW. for Traversing a unidirectional tree efficientlyMattW.2008-10-16T16:17:39Z2008-10-16T16:17:39Z<p>Your question is a little abstract, but <a href="http://dev.mysql.com/tech-resources/articles/hierarchical-data.html" rel="nofollow">nested sets</a> (scroll down, might be a little too mysql-specific) might be an option for you. It's extremely fast for read operations, though any modifications are quite complex (and have to modify half the tree on average).</p>
<p>That requires the ability to modify your data structure, though. And I guess if you can modify the structure, you could just as well add references to child objects. If you can't modify the structure, I doubt there's anything faster than your ideas.</p>
http://stackoverflow.com/questions/198994/whats-the-best-way-to-offer-credit-card-payment-on-your-website/199003#1990030Answer by MattW. for Whats the best way to offer credit card payment on your website?MattW.2008-10-13T20:54:46Z2008-10-13T20:54:46Z<p>IF I were in the US, I'd use google checkout. It's quite cheap and it's a brand I (and many customers) trust.</p>
<p>Other than that, there's a bunch of possibilities. <strong>Stay away from anything owned by Digital River</strong>, though. Seems that FastSpring is relatively good, but expensive.</p>
http://stackoverflow.com/questions/198831/activerecord-association-question-getting-hasmany-through-to-work/198971#1989712Answer by MattW. for Activerecord association question: getting has_many :through to workMattW.2008-10-13T20:44:33Z2008-10-13T20:50:47Z<p>It's more of a many-to-many-to-even-more-relationship. I'd just write some sql:</p>
<pre><code>has_many :coaches, :finder_sql => 'SELECT * from coaches, teams_users WHERE
coaches.team_id=teams_users.team_id
AND teams_users.user_id=#{id}'
</code></pre>
http://stackoverflow.com/questions/195740/how-do-you-do-relative-time-in-rails/195894#1958946Answer by MattW. for How do you do relative time in Rails?MattW.2008-10-12T19:29:42Z2008-10-12T19:29:42Z<p>I've written this, but have to check the existing methods mentioned to see if they are better.</p>
<pre><code>module PrettyDate
def to_pretty
a = (Time.now-self).to_i
case a
when 0 then return 'just now'
when 1 then return 'a second ago'
when 2..59 then return a.to_s+' seconds ago'
when 60..119 then return 'a minute ago' #120 = 2 minutes
when 120..3540 then return (a/60).to_i.to_s+' minutes ago'
when 3541..7100 then return 'an hour ago' # 3600 = 1 hour
when 7101..82800 then return ((a+99)/3600).to_i.to_s+' hours ago'
when 82801..172000 then return 'a day ago' # 86400 = 1 day
when 172001..518400 then return ((a+800)/(60*60*24)).to_i.to_s+' days ago'
when 518400..1036800 then return 'a week ago'
end
return ((a+180000)/(60*60*24*7)).to_i.to_s+' weeks ago'
end
end
Time.send :include, PrettyDate
</code></pre>
http://stackoverflow.com/questions/183987/how-do-you-divide-time-between-different-projects/184029#1840294Answer by MattW. for How do you divide time between different projects?MattW.2008-10-08T18:03:22Z2008-10-08T18:03:22Z<p>Important: never complete all projects or you will divide by 0, which will throw a life-threatening exception.</p>
http://stackoverflow.com/questions/183972/best-or-favorite-website-navigation-examples/183978#1839781Answer by MattW. for Best or favorite website navigation examplesMattW.2008-10-08T17:52:01Z2008-10-08T17:52:01Z<p>Avoid dropdown-menus. For some reason, they just don't feel right on the web. </p>
<p>I quite like the context-sensitive navigation (and keyboard shortcuts) that <a href="http://www.rememberthemilk.com" rel="nofollow">RTM</a> uses.</p>
http://stackoverflow.com/questions/183914/how-do-i-get-the-key-values-from-post/183917#1839170Answer by MattW. for How do I get the key values from $_POST?MattW.2008-10-08T17:33:41Z2008-10-08T17:48:44Z<pre><code>array_keys($_POST)
</code></pre>
<p><a href="http://de.php.net/array_keys" rel="nofollow">Manual</a></p>
http://stackoverflow.com/questions/183841/what-are-the-best-tutorials-about-caching-with-php/183893#1838930Answer by MattW. for What are the best tutorials about caching with PHP?MattW.2008-10-08T17:26:33Z2008-10-08T17:26:33Z<p>Zend Cache and APC are a different form of caching than what you're thinking about. These systems cache the bytecode generated after loading and "compiling" your scripts. In that regard, they only lift php to a standard that is common with almost any other scripting language.</p>
<p>The next, quite efficient, step is to enable query caching. In my experience with mySQL it has made quite a difference. Look at the mysql docs on how to enable it, it's one or two lines in my.cnf.</p>
<p>You're probably thinking more about caching HTML output. If your page is reasonably static, you could just use a reverse proxy such as squid. If the pages are dynamic, it gets harder. You can generate pages or fragments of pages, save them in the file system and expire them either after a certain amount of time or whenever the underlying data changes. I have been out of the php-loop for too long to know any existing packages, though.</p>
http://stackoverflow.com/questions/183462/what-does-it-mean-for-a-programming-language-to-be-on-rails/183513#1835130Answer by MattW. for What does it mean for a programming language to be "on rails"?MattW.2008-10-08T15:56:54Z2008-10-08T15:56:54Z<p>It's a metaphor, and I'm almost said that needs explaining. Anyway, it's an extremely good metaphor for what Ruby on Rails does. It makes it extremely easy to do (go to) the common stuff, i. e. testing, validation, deployment, MVC.</p>
http://stackoverflow.com/questions/175462/places-where-computers-are-used-correctly-in-movies/175593#17559314Answer by MattW. for Places where computers are used correctly in moviesMattW.2008-10-06T18:30:39Z2008-10-06T18:30:39Z<p>Obviously, the use of NMAP and a real, existing remote exploit in Matrix in a real existing bash was a highlight.</p>
http://stackoverflow.com/questions/174461/why-is-stack-overflow-so-microsoft-centric/174474#17447446Answer by MattW. for Why is Stack Overflow so Microsoft-centric?MattW.2008-10-06T14:23:59Z2008-10-06T14:23:59Z<p>Microsoft technology needs more questions answered :-)</p>
http://stackoverflow.com/questions/174248/what-strategy-would-you-use-for-tracking-user-recent-activity/174269#1742690Answer by MattW. for What strategy would you use for tracking user recent activity?MattW.2008-10-06T13:24:52Z2008-10-06T13:24:52Z<p>If you have session data just use that. Most session systems already have timestamps so they can expire sessions not used for x minutes. </p>
http://stackoverflow.com/questions/174129/whats-the-best-way-to-use-ms-word-to-write-a-60-page-technical-document/174151#1741513Answer by MattW. for What's the best way to use MS Word to write a 60 page technical documentMattW.2008-10-06T12:59:24Z2008-10-06T12:59:24Z<p>Uninstallation is supposed to work fine. Followed by installing a LaTeX package, such as Lyx (to get started)</p>
<p>Edit: just saw you have to use word. Well, make sure you work with styles as much as possible, don't go around randomly formatting parts of text. Make sure you do backups. Try to find a job where you can use the best tools.</p>
http://stackoverflow.com/questions/174121/syntax-highlighting-what-colors-do-you-like/174141#1741413Answer by MattW. for Syntax Highlighting - What colors do you like?MattW.2008-10-06T12:55:57Z2008-10-06T12:55:57Z<p>Dark on light works better (if you're talking about the whole screen, not just highlights). The light background means there's more light reaching your eye. Your eye responds by closing the iris. Now, if you've ever done photography, you'll know that a smaller aperture makes for a longer depth of field. Your eye doesn't have to refocus as much, which avoids strain.</p>
http://stackoverflow.com/questions/173839/what-is-your-demand-for-a-working-software-development-environment/173867#1738671Answer by MattW. for What is your demand for a working software development environment? MattW.2008-10-06T10:59:56Z2008-10-06T10:59:56Z<p>If you have the space: a library, with comfortable sitting/reading space and an absolute quite policy. Needs a small Mac mini or netbook with software like Delicious Library to manage loans.</p>
http://stackoverflow.com/questions/173839/what-is-your-demand-for-a-working-software-development-environment/173853#1738534Answer by MattW. for What is your demand for a working software development environment? MattW.2008-10-06T10:51:12Z2008-10-06T10:51:12Z<p>A shower would be great, if there's any possibility to ride a bike to work.</p>
http://stackoverflow.com/questions/173814/mysql-alter-syntax-to-drop-a-column-if-it-exists/173820#1738203Answer by MattW. for MySQL Alter syntax to drop a column if it exists MattW.2008-10-06T10:31:22Z2008-10-06T10:31:22Z<p>There is none: <a href="http://bugs.mysql.com/bug.php?id=10789" rel="nofollow">MySQL Feature Request</a>. Simply check for existence first in the client or catch the error.</p>
http://stackoverflow.com/questions/173642/how-do-i-get-a-list-of-files-that-have-been-added-to-the-svn-since-a-certain-date/173665#1736654Answer by MattW. for How do I get a list of files that have been added to the SVN since a certain date?MattW.2008-10-06T09:23:57Z2008-10-06T09:58:05Z<pre><code>svn log -v -r{2008-10-1}:HEAD | grep "^ A"
</code></pre>
http://stackoverflow.com/questions/162542/performing-ajax-delete-operations-restfully-in-rails/162590#1625902Answer by MattW. for Performing AJAX delete operations restfully in railsMattW.2008-10-02T14:28:45Z2008-10-04T17:55:46Z<p>Try </p>
<pre><code>:url => employee_url(@employee)
</code></pre>
<p>IIRC, *_path is a named route generated by the :resource directive which includes the method, thus overwriting your :method => :delete</p>
http://stackoverflow.com/questions/26845/do-you-use-distributed-version-control/170089#170089-3Answer by MattW. for Do you use distributed version control?MattW.2008-10-04T10:25:47Z2008-10-04T10:25:47Z<p>No </p>
http://stackoverflow.com/questions/167302/non-db-attraccessor-attribute-persistence-in-rails/168174#168174-3Answer by MattW. for non-DB attr_accessor attribute persistence in RailsMattW.2008-10-03T18:17:36Z2008-10-03T18:17:36Z<p>Of course it'll be lost, where do you think data goes when it dies? To a data h(e)aven from where it can always return?</p>
<p>I'd like to know what you need the data for, but the ultimate answer is probably that the data belongs into the db, unless it's large binary data such as images, where you should save it in the filesystem.</p>
http://stackoverflow.com/questions/163367/error-updating-a-record/163422#1634220Answer by MattW. for Error Updating a recordMattW.2008-10-02T16:55:49Z2008-10-02T16:55:49Z<p>Maybe it's this bug: <a href="http://bugs.mysql.com/bug.php?id=10035" rel="nofollow">#1030 - Got error 139 from storage engine</a>, but it would help if you'd post the query which should come directly after the error message.</p>
http://stackoverflow.com/questions/139621/merit-of-screencasts-vs-text-based-documentationComment by MattW. on Merit of screencasts vs text-based documentation?MattW.2009-10-10T23:26:19Z2009-10-10T23:26:19ZI agree with dbr, thanks for defusing my rage-filled title. I still think it's a discussion worth having.http://stackoverflow.com/questions/1528459/getting-starting-with-parallel-programming/1530272#1530272Comment by MattW. on Getting starting with Parallel programming.MattW.2009-10-10T23:23:08Z2009-10-10T23:23:08ZFFT makes a lot of sense. See for example <a href="http://www.macresearch.org/cuda-quick-look-and-comparison-fft-performance" rel="nofollow">macresearch.org/cuda-quick-look-and-comparison-ff…</a>http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184673#184673Comment by MattW. on What is the best comment in source code you have ever encountered?MattW.2008-10-09T13:23:54Z2008-10-09T13:23:54Z+1 for the revert. We're all adultshttp://stackoverflow.com/questions/175462/places-where-computers-are-used-correctly-in-movies/175593#175593Comment by MattW. on Places where computers are used correctly in moviesMattW.2008-10-06T18:52:42Z2008-10-06T18:52:42ZWell, wasn't it essentially a government network?http://stackoverflow.com/questions/174121/syntax-highlighting-what-colors-do-you-like/174141#174141Comment by MattW. on Syntax Highlighting - What colors do you like?MattW.2008-10-06T13:08:42Z2008-10-06T13:08:42ZNo, nothing, sorry. I just wanted to add some logic to the argument. Maybe the fact that most layouts (books, operating systems etc.) favor dark-on-light is a hint. But maybe it's just cheaper to print.http://stackoverflow.com/questions/173642/how-do-i-get-a-list-of-files-that-have-been-added-to-the-svn-since-a-certain-date/173665#173665Comment by MattW. on How do I get a list of files that have been added to the SVN since a certain date?MattW.2008-10-06T09:57:26Z2008-10-06T09:57:26ZYes, but a capital A with spaces around it is rather rare. You could use "^ A"http://stackoverflow.com/questions/163367/error-updating-a-record/163422#163422Comment by MattW. on Error Updating a recordMattW.2008-10-02T17:14:39Z2008-10-02T17:14:39ZThe query should be in logs/development.loghttp://stackoverflow.com/questions/134253/how-many-of-you-do-3-tier-design/134300#134300Comment by MattW. on How many of you do 3-tier design?MattW.2008-09-25T16:18:40Z2008-09-25T16:18:40ZValidations belongs in the model. The UI can get that information and automatically replicate some validation to improve the user experience.http://stackoverflow.com/questions/128480/recovering-browser-textareasComment by MattW. on Recovering browser textareasMattW.2008-09-24T17:26:36Z2008-09-24T17:26:36ZI was going to suggest greping through temporary files, but then I remembered you already tried that.http://stackoverflow.com/questions/128443/net-currency-formatter-can-i-specify-the-use-of-bankers-roundingComment by MattW. on .NET currency formatter: can I specify the use of banker's rounding?MattW.2008-09-24T17:25:31Z2008-09-24T17:25:31Zwhat's banker's rounding? Up if in the bank's favor, down otherwise?http://stackoverflow.com/questions/122445/how-does-theming-for-ziya-charts-work/123123#123123Comment by MattW. on How does theming for ziya charts work?MattW.2008-09-24T08:15:44Z2008-09-24T08:15:44ZThanks for the idea, but I need polar (radar/spider) charts, which OFC doesn't have. Could add it I guess, but don't feel like learning flash right now.http://stackoverflow.com/questions/122445/how-does-theming-for-ziya-charts-work/122795#122795Comment by MattW. on How does theming for ziya charts work?MattW.2008-09-23T19:02:05Z2008-09-23T19:02:05ZNo, I got it working now. Already had the initialization in place, was just missing content for the themes directory. Now happily fiddling around with colors and font sizes. http://stackoverflow.com/questions/103184/best-way-to-prevent-duplicate-use-of-credit-cards/103227#103227Comment by MattW. on Best way to prevent duplicate use of credit cardsMattW.2008-09-19T16:02:19Z2008-09-19T16:02:19ZYes, but if you use a different random salt for each hash, you need to try every salt on the new value you want to compare. Use a long random but constant string + expiration date.http://stackoverflow.com/questions/76408/which-of-these-scripting-languages-is-more-appropriate-for-pen-testingComment by MattW. on Which of these scripting languages is more appropriate for pen-testing?MattW.2008-09-17T08:49:26Z2008-09-17T08:49:26ZPlease fix you punctuation, there's a space after dots and colons, not before. Spellchecking is also an option.http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/64374#64374Comment by MattW. on Confessions of your worst WTF Moment. (What not to do.)MattW.2008-09-15T16:52:07Z2008-09-15T16:52:07ZYou're concerned about typography in system files? I actually like that!