User Groxx - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T20:36:06Zhttp://stackoverflow.com/feeds/user/16295http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1774009/os-specific-css/1774024#17740240Answer by Groxx for OS-Specific CSS?Groxx2009-11-21T00:18:07Z2009-11-21T00:18:07Z<p>I don't know of any CSS-specific tricks, but you could select stylesheets to load with Javascript. You can use navigator.appVersion to get the OS type, along with more info.</p>
<p>For instance, I get:</p>
<p><code>5.0 (Macintosh; U; Intel Mac OS X 10_6_2; en-us) AppleWebKit/532.5+ (KHTML, like Gecko) Version/4.0.4 Safari/531.21.10</code></p>
<p>( from: <a href="http://www.javascripter.com/faq/operatin.htm" rel="nofollow">http://www.javascripter.com/faq/operatin.htm</a> )</p>
http://stackoverflow.com/questions/460929/whats-your-favorite-programming-drink/461035#4610352Answer by Groxx for What's your favorite programming drink?Groxx2009-01-20T12:03:18Z2009-01-20T12:03:18Z<p>Green tea.</p>
<p>No no no, not the bagged stuff. Good stuff. Looseleaf and fresh. The flavor is smooth, creamy, and wonderful. Brewing it also necessitates taking a brief break from whatever I'm doing, giving me a different environment to think in.</p>
<p>More often than not, I find that relaxing solves more problems (and almost always more 'correctly') than caffeinating.</p>
<p>(correctly being defined as an efficient and easy to read algorithm, because this is much more important to me than most other measures of correctness (aside from works-or-not))</p>
http://stackoverflow.com/questions/459764/newbie-installing-rails-on-debian-gem-fetch-error/460988#4609881Answer by Groxx for Newbie: Installing Rails on Debian (Gem Fetch Error?)Groxx2009-01-20T11:50:33Z2009-01-20T11:50:33Z<p>I just had this problem myself, and discovered this site:
<a href="http://www.typeoneerror.com/updating-rails-error/" rel="nofollow">http://www.typeoneerror.com/updating-rails-error/</a></p>
<p>Which recommends using the -p switch (it worked for me for both <code>install</code> and <code>update</code> commands).</p>
<p>I don't see how or why (maybe someone else can explain it?), but it did work for me. Sometimes, if it fails, just try running it again, it seems to get past it after a second try at a particular gem.</p>
http://stackoverflow.com/questions/344026/differences-in-building-ui-between-web-and-desktop-applications/344761#3447612Answer by Groxx for Differences in building UI between Web and Desktop ApplicationsGroxx2008-12-05T18:37:50Z2008-12-05T18:44:38Z<p>A big design difference that a lot of people overlook is the structure of the window itself. </p>
<ul>
<li>A desktop app tends to be built for a minimum height & width resolution (often 800*600), and tries as hard as it can to fit all the relevant information into a size smaller than that, because scroll bars are generally very bad practice for non-tabular/list data. Where more space is needed, the information is generally split into either new windows or sub-window panes/tabs.</li>
<li>A web app, on the other hand, has essentially infinite vertical height, as most people are used to scrolling in their web browser. The scroll bar is no longer a bad thing; in fact, using a scroll bar <em>anywhere</em> where the main one could be used is usually considered bad form (with a few exceptions, of course). Information is typically portrayed in one 'window', as splitting it up would require both separate page loads, and re-loading identical data (styles, menus, etc. yes, there's a cache, but it's not as fast as not loading a single page). More loads are always slower, and cause feelings of discontinuity. Sometimes they're inescapable, but you should almost never constrain your app to only the visible size of the browser window.</li>
<li>A lot of what people use a web browser for is reading. News, blogs, comments on youtube, etc. When you make a web app, it should reflect this habit, because you will otherwise jar people's brains through wildly different layouts if they're switching between web pages and your app (and you know that some will). It may seem like you're just copying the big players, but consistency is much more important than it immediately seems.</li>
<li>Columns of text shouldn't be super-wide, because the wider a line gets, the harder it is to jump to the next line to continue reading. Stick to something similar to what books have; they've been refined for <em>centuries</em>. This is part of the reason why a lot of web pages are fixed-width, and favor columns over rows.</li>
<li>White space is <em>important</em>. It helps separate information, and makes it easier to process. Imagine reading this reply without any spaces, new lines, or bullets.</li>
</ul>
<p>A pet peeve of mine are text links that perform frequent actions. Unless you're actually 'linking' to a separate page, <em>do not make it look like a link</em>. Make it a control, or an image, or <em>something</em>. Links are for <em>moving</em> in websites, buttons <em>do</em> things. Most people will actively ignore blue, underlined text when they want to do something, because they're used to a "submit form" button, or something similar. Links are also quite small and comparatively difficult to click for repeated actions, and for me <em>reek</em> of incomplete design/coding when used extensively.</p>
<p>A lot of web apps that I've seen that have generally failed try to duplicate a desktop app in a browser window... which is fitting a round peg into a square hole. It can be done, but they are <em>not</em> the same thing, and should not be treated as such under almost any circumstance.<br />
A partial exception is when the web app duplicates the function of a desktop app (ie, Google docs). Then, the layout should still reflect a web page more than an app in most circumstances, but the controls should probably mimic a desktop application to help people transition.
<br><br></p>
<p>Most people use programs on their desktop to <em>do</em> something. Most people use their browsers to <em>see</em> something (read, watch, etc). Of course, there's crossover, but think about most people's daily habits, and remember that <em>other</em> people will be using something you design; it's not just you (and your clones) out there.</p>
<p>And, though it's repeating others, the back button is <em>critical</em>. If you break it, users will want to break you. Overriding the right-click menu or behavior is also usually a bad idea, and mostly annoys users (and some will actively prevent javascript that does this because it annoys them so much (myself included)).</p>
http://stackoverflow.com/questions/215885/using-the-aftersave-callback-to-modify-the-same-object-without-triggering-the-ca/216050#2160503Answer by Groxx for Using the after_save callback to modify the same object without triggering the callback again (recursion)Groxx2008-10-19T05:25:32Z2008-10-19T05:25:32Z<p>One workaround is to set a variable in the class, and check its value in the after_save. </p>
<ol>
<li>Check it first. (if var)</li>
<li>Assign it to a 'false' value before calling update_attribute.</li>
<li>call update_attribute.</li>
<li>Assign it to a 'true' value.</li>
<li>end</li>
</ol>
<p>This way, it'll only attempt to save twice. This will likely hit your database twice, which may or may not be desirable.</p>
<p>I have a vague feeling that there's something built in, but this is a fairly foolproof way to prevent a specific point of recursion in just about any application.
I would also recommend looking at the code again, as it's likely that whatever you're doing in the after_save should be done in before_save. There are times that this isn't true, but they're fairly rare.</p>
http://stackoverflow.com/questions/184071/when-if-ever-is-number-of-lines-of-code-a-useful-metric/185910#1859100Answer by Groxx for When, if ever, is "number of lines of code" a useful metric?Groxx2008-10-09T04:09:50Z2008-10-09T04:09:50Z<p>Functionally never, aside from the previously-mentioned "bragging" purpose.</p>
<p>Lines != effectiveness. Often the relationship is inverse, in my experience (though not strictly, especially for the extreme, for obvious reasons)</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/185891#1858910Answer by Groxx for How do you advance beyond being an 'advanced' programmer?Groxx2008-10-09T04:02:14Z2008-10-09T04:02:14Z<p>I'd recommend reading up on different design patterns (as most people gloss over this area of programming), and then toying with some 'exotic' programming. Neural Networks. Adaptive algorithms. Compression logic (build a better .zip!). That sort of thing.</p>
<p>If in doubt, contribute to an open source project. There's a nigh-infinite realm of learning there, as it's being written more quickly than you can possibly read.</p>
http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/185865#1858655Answer by Groxx for What are some funny loading statements to keep users amused?Groxx2008-10-09T03:42:42Z2008-10-09T03:42:42Z<p><code>Computing 6 x 9...</code></p>
http://stackoverflow.com/questions/184071/when-if-ever-is-number-of-lines-of-code-a-useful-metric/184078#184078Comment by Groxx on When, if ever, is "number of lines of code" a useful metric?Groxx2009-08-05T03:13:23Z2009-08-05T03:13:23ZI have to agree with Eli. If going strictly by removing, you end up with code that looks like a Perl guru wrote it. It may even make the project run better, but you just sacrificed a bit of speed for a LOT of later development time / headaches if something needs changing.http://stackoverflow.com/questions/1086886/html-5-video-tag-vs-flash-video-what-are-the-pros-and-cons/1095116#1095116Comment by Groxx on HTML 5 <video> tag vs Flash video. What are the pros and cons?Groxx2009-08-05T03:05:55Z2009-08-05T03:05:55ZI would argue that the same people that are using IE6 are likely using Flash 6. I've run across dozens of people with computers with ancient Java / Flash / horrible codec packs installed, and nothing else. Users upgrade, not the company that makes the product. Your note on subtitles is a good point, though to my knowledge both competing video formats allow subtitle streams, and <video> would allow users to have a system-wide preference for subtitle displays, without waiting for Adobe to add that feature.http://stackoverflow.com/questions/1086886/html-5-video-tag-vs-flash-video-what-are-the-pros-and-cons/1086958#1086958Comment by Groxx on HTML 5 <video> tag vs Flash video. What are the pros and cons?Groxx2009-08-05T02:59:35Z2009-08-05T02:59:35ZIME, Open Source == significantly faster code in a few specific areas, and worse elsewhere. An enormous amount can be learned from a few lines of expert-contributed code, but OS projects often have 90% of their code utterly lacking in elegance / efficiency. (large projects are a frequent exception here)http://stackoverflow.com/questions/146505/can-someone-recommend-a-reliable-cvs-or-svn-hosting-service/146545#146545Comment by Groxx on Can someone recommend a reliable CVS or SVN hosting service?Groxx2009-07-19T06:25:49Z2009-07-19T06:25:49ZA couple rather important notes about Unfuddle (may I request that you update your reply?):
1) It also hosts Git.
2) It offers <i>private</i> Git/SVN for <i>free</i>. I have yet to find another that does this.
I'm personally using it after finding it from this answer. Interface is a bit slow, but Git interaction has no delays, and it has very beginner-friendly help documentation in the interface.http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/384675#384675Comment by Groxx on What are some funny loading statements to keep users amused?Groxx2009-07-19T06:19:05Z2009-07-19T06:19:05Z"Placating Publishers" is my personal favorite.http://stackoverflow.com/questions/255813/free-personal-source-control-system/255833#255833Comment by Groxx on Free "Personal" source control system?Groxx2009-05-23T18:26:38Z2009-05-23T18:26:38ZThe only problems I have with GitHub though is that their free hosting only allows public repositories, and they get far more expensive than even owning a server/virtualized server somewhere when you go higher (though no need to set it up yourself, of course).http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/236716#236716Comment by Groxx on What is your best programmer joke?Groxx2009-05-20T01:15:32Z2009-05-20T01:15:32ZI'd just shorten it to "privates".http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/235619#235619Comment by Groxx on What is your best programmer joke?Groxx2009-05-20T01:02:14Z2009-05-20T01:02:14Z4 and 5 are definitely my favorites. I'll never release software again, and I'll never use parameters either.http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234732#234732Comment by Groxx on What is your best programmer joke?Groxx2009-05-20T00:57:30Z2009-05-20T00:57:30ZObjective-C / Smalltalk: You point the gun at something that looks like a foot, and pull the trigger. If the something or the thing it is connected to is not bulletproof (has no "shot" method), it is shot. Otherwise, the bullet travels into space and is forgotten.http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/255698#255698Comment by Groxx on What is your best programmer joke?Groxx2009-05-20T00:49:52Z2009-05-20T00:49:52ZI love the hardware sales part. Where can I get a desktop elephant?http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/245307#245307Comment by Groxx on What is your best programmer joke?Groxx2009-05-20T00:44:47Z2009-05-20T00:44:47ZThe worst part of this is that it'll keep making temporary sheep, only to destroy them immediately...http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234599#234599Comment by Groxx on What is your best programmer joke?Groxx2009-05-20T00:33:05Z2009-05-20T00:33:05Z@titaniumdecoy: it's not judgement on the poster, it's a remark about Deus Ex, and it's actually quite accurate. Your "user requirements" change quite regularly as you play through the game. That said, I love the root joke here, especially as my last summer was FULL of changes to requirements. I learned to program flexible code quite quickly.http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234114#234114Comment by Groxx on What is your best programmer joke?Groxx2009-05-20T00:24:24Z2009-05-20T00:24:24ZThat is absolutely amazing. And yes, s/1s/1/g and it compiles and runs correctly xD
Brilliant. Many thanks for the links.http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234419#234419Comment by Groxx on What is your best programmer joke?Groxx2009-05-20T00:02:52Z2009-05-20T00:02:52ZA philosopher walks past, wonders what field they're talking about, and resumes pondering the nature of "up".http://stackoverflow.com/questions/450835/how-do-you-stop-scripters-from-slamming-your-website-hundreds-of-times-a-second/450973#450973Comment by Groxx on How do you stop scripters from slamming your website hundreds of times a second?Groxx2009-02-09T23:53:10Z2009-02-09T23:53:10ZEntertaining (and nigh-foolproof) idea, but I'd be irritated (especially during a Bag Of Canaries frenzy), and that would require massively more processing on their servers to perform checking (which is a big part of the problem).
Also, bots can burst bubbles. You'd have to frequently change rules.