User Scott S. - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T21:48:58Zhttp://stackoverflow.com/feeds/user/9439http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1581202/css-container-not-growing-with-grid/1581402#15814020Answer by Scott S. for CSS Container not growing with grid?Scott S.2009-10-17T04:27:50Z2009-10-17T04:27:50Z<p>I think you need this in your CSS:</p>
<pre><code>overflow: auto;
</code></pre>
http://stackoverflow.com/questions/1581352/unable-to-execute-ruby-script-from-file-but-irb-works-fine/1581399#15813990Answer by Scott S. for Unable to execute Ruby script from file, but IRB works fine?Scott S.2009-10-17T04:24:22Z2009-10-17T04:24:22Z<p>Instead of having it be a shell script, make it a .rb ruby script, then call it with</p>
<pre><code>ruby <name_of_my_script>.rb
</code></pre>
<p>Then everything should work fine.</p>
http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1581392#15813920Answer by Scott S. for What coding mistakes are a telltale giveaway of an inexperienced programmer?Scott S.2009-10-17T04:20:15Z2009-10-17T04:20:15Z<p>I was always fond of</p>
<pre><code>if (x = 1) { ... }
</code></pre>
<p>But maybe that is more inexperienced than you were thinking.</p>
http://stackoverflow.com/questions/1581378/how-to-handle-different-scenarios-across-different-actions-in-a-rails-controller/1581389#15813890Answer by Scott S. for How to handle different scenarios across different actions in a Rails controller dried with inherited_resourcesScott S.2009-10-17T04:18:12Z2009-10-17T04:18:12Z<p>I typically went with a before filter along the lines of :lookup_foo. (calling it with :except => [:index,:new,:create]). Then I would have a line like @foo = current_user.foos.find(params[:id]).</p>
<p>A similar method can be used for the index action, and both can be adapted to give admin's more access.</p>
http://stackoverflow.com/questions/1581372/would-this-anti-spambot-method-work/1581373#15813731Answer by Scott S. for Would this anti-spambot method work?Scott S.2009-10-17T04:05:11Z2009-10-17T04:05:11Z<p>I would assume that if someone really wanted to mess with your site, they could build a bot to follow that link.</p>
<p>Furthermore, googlebot works by following links to help it index the entire internet, so it is 100% possible that a robot could be programmed to use a link like that.</p>
<p>As for using jQuery or any kind of JS, it might slow them down, but if someone really wants to get into your site, they will find a way past it.</p>
<p>Implementing something alone the lines of <a href="http://recaptcha.net/" rel="nofollow">http://recaptcha.net/</a> might be more worth your time in securing your website from robots.</p>
http://stackoverflow.com/questions/1580852/php-echo-concatenation/1580879#15808791Answer by Scott S. for Php Echo ConcatenationScott S.2009-10-16T23:19:22Z2009-10-16T23:33:12Z<p>Update:
You are missing a ')' on your second echo in the while loop.</p>
<p>The code you posted looks entirely valid to me. Maybe there is an issue or missing semicolon elsewhere in your file?</p>
http://stackoverflow.com/questions/67794/what-skills-are-worth-learning-for-a-programming-career-and-or-resume10What skills are worth learning for a programming career and/or resume?Scott S.2008-09-15T23:02:57Z2009-04-23T22:14:10Z
<p>What skills, languages, tools, etc. would you suggest someone interested in a career in programming learn?</p>
http://stackoverflow.com/questions/65971/what-is-the-best-resource-you-know-to-learn-dojo12What is the best resource you know to learn Dojo?Scott S.2008-09-15T19:29:40Z2009-01-13T01:49:08Z
<p>The Dojo toolkit looks like it is very useful, but the docs feel very incomplete and buggy. Can anyone suggest a book or other resource to help a javascript novice really learn to use Dojo?</p>
http://stackoverflow.com/questions/109027/what-is-the-best-way-to-paginate-results-in-php/109039#1090390Answer by Scott S. for What is the best way to paginate results in phpScott S.2008-09-20T19:08:48Z2008-09-20T19:08:48Z<p>Personally, I would use the query to do it. Obviously, that can change if your dealing with AJAX and such, but just doing a basic limit in the query and outputting the results is simple and efficient.</p>
http://stackoverflow.com/questions/107005/predict-next-auto-inserted-row-id-sqlite/107156#1071560Answer by Scott S. for Predict next auto-inserted row id (sqlite)Scott S.2008-09-20T04:55:11Z2008-09-20T04:55:11Z<p>Most of everything that needs to be said in this topic already has... <strong>However, be very careful of race conditions</strong> when doing this. If two people both open your application/webpage/whatever, and one of them adds a row, the other user will try to insert a row with the same ID and you will have lots of issues.</p>
http://stackoverflow.com/questions/102209/what-was-your-first-attempt-at-a-project-as-a-newbie/102897#1028970Answer by Scott S. for What was your first attempt at a project, as a newbie?Scott S.2008-09-19T15:30:47Z2008-09-19T15:30:47Z<p>I dabbled with setting up a chat room on a website (using HTML, MySQL and PHP) after my first hello world project. And this was way before the days of AJAX. Sadly, I never really finished because it ended up being too much of a pain.</p>
http://stackoverflow.com/questions/100084/what-is-a-good-gui-text-editor-for-the-mac/100094#1000944Answer by Scott S. for What is a good GUI text editor for the Mac?Scott S.2008-09-19T06:46:27Z2008-09-19T06:46:27Z<p>Xcode... its on your leopard DVD's, or can be downloaded from the apple dev site. (Free registration required)</p>
<p>I'd recommend the version on the website tho, since its been updated for 3.1 and your leopard install DVD probably has 3.0</p>
http://stackoverflow.com/questions/99853/how-many-of-you-prefer-full-screen/99865#998651Answer by Scott S. for How many of you prefer full screen?Scott S.2008-09-19T05:23:56Z2008-09-19T05:23:56Z<p>Yes (for voting)</p>
<p>I'm on a mac, so too many windows can get crazy. Keeping several things in one window keeps things nice and organized. :)</p>
http://stackoverflow.com/questions/97816/do-you-disable-selinux/97852#978520Answer by Scott S. for Do you disable SELinux?Scott S.2008-09-18T23:05:23Z2008-09-18T23:05:23Z<p>I don't have a lot to contribute here, but since its gone unanswered, I figured I would throw my two cents in.</p>
<p>Personally, I disable it on dev boxes and when I'm dealing with unimportant things. When I am dealing with anything production, or that requires better security, I leave it on and/or spend the time tweaking it to handle things how I need.</p>
<p>Weather or not you use it really comes down to your needs, but it was created for a reason, so consider using it rather than always shut it off.</p>
http://stackoverflow.com/questions/96501/perks-for-new-programmers/97836#978361Answer by Scott S. for Perks for new programmersScott S.2008-09-18T22:59:42Z2008-09-18T22:59:42Z<p>A decent manager, good training, and good motivation would be nice. In all of my past jobs, the training sucked, the managers didn't care, and they ended up "motivating" me right into a new job.</p>
<p>Treat your employees well, and the perks will matter less. (But free food never hurts, either :))</p>
http://stackoverflow.com/questions/93915/conferences-that-offer-videos-for-downloading/93966#939661Answer by Scott S. for Conferences that offer videos for downloading?Scott S.2008-09-18T16:07:03Z2008-09-18T16:07:03Z<p>Apple posts a <em>few</em> videos on their dev site, but all of the latest ones (WWDC07) require you to be a paying member.</p>
http://stackoverflow.com/questions/88736/cpan-gem-like-repository-for-objective-c-and-cocoa/88882#888820Answer by Scott S. for CPAN/gem-like repository for Objective-C and Cocoa? Scott S.2008-09-18T00:20:32Z2008-09-18T00:20:32Z<p>I might be confused or missing something here... But doesn't apple provide all the Foundation / Cocoa / AppKit / CoreAudio / Qtkit / etc libraries that should provide all of the very basic functions you are looking for?</p>
<p>Other than what xcode comes with or is on the apple dev site, there are no centralized repo's for Cocoa.</p>
http://stackoverflow.com/questions/79896/what-else-does-one-need-on-top-of-programming-skills-to-be-a-good-technical-lead/79921#799210Answer by Scott S. for What else does one need on top of programming skills to be a good Technical Lead?Scott S.2008-09-17T04:17:36Z2008-09-17T04:17:36Z<p>People and management skills for a start? Spelling ("Skills" does NOT end in a "Z"...) for another.</p>
<p>Honestly, this is a very subjective question. There are a ton of management styles and any can work differently for different people.</p>
<p>I would recommend picking up "Collins: Best Practices: Managing People" (ISBN 978-0-06-114556-8) by Barry Silverstien. It costs less than $10, can be read in an hour or two, and is a great primer for managing and motivating employees.</p>
http://stackoverflow.com/questions/79764/wildcard-subdomains/79885#798850Answer by Scott S. for Wildcard SubdomainsScott S.2008-09-17T04:09:33Z2008-09-17T04:09:33Z<p>From what I have seen on many webhosts, they setup a virtual host on apache.</p>
<p>So if your www.mysite.com is served from /var/www, you could create a folder for each user. Then map the virtual host to that folder.</p>
<p>With that, both mysite.com/user and user.mysite.com works.</p>
<p>As for your test enviroment, if you are on windows, I would suggest editing your HOSTS file to map mysite.com to your local PC (127.0.0.1), as well as any subdomains you set up for testing.</p>
http://stackoverflow.com/questions/78570/which-javascript-library-is-recommended-for-neat-ui-effects/78730#787301Answer by Scott S. for Which JavaScript library is recommended for neat UI effects?Scott S.2008-09-17T00:46:59Z2008-09-17T00:46:59Z<p>Take a look at Dojo/Dijit/Dojox (<a href="http://dojotoolkit.org" rel="nofollow">http://dojotoolkit.org</a>). They have a lot of cool special effects, and a lot more that will come in handy to anyone working with Javascript.</p>
<p>They also keep docs and related articles at <a href="http://dojocampus.org/" rel="nofollow">http://dojocampus.org/</a></p>
http://stackoverflow.com/questions/77639/when-is-it-right-for-a-constructor-to-throw-an-exception/78356#783560Answer by Scott S. for When is it right for a constructor to throw an exception?Scott S.2008-09-16T23:31:44Z2008-09-16T23:31:44Z<p>I'm just learning Objective C, so I can't really speak from experience, but I did read about this in apple's docs. </p>
<p><a href="http://developer.apple.com/documentation/Cocoa/Conceptual/CocoaFundamentals/CocoaObjects/chapter_3_section_6.html" rel="nofollow">http://developer.apple.com/documentation/Cocoa/Conceptual/CocoaFundamentals/CocoaObjects/chapter_3_section_6.html</a></p>
<p>Not only will it tell you how to handle the question you asked, but it does a good job of explaining it as well.</p>
http://stackoverflow.com/questions/77891/what-emails-clients-are-being-used-out-there/78320#783201Answer by Scott S. for What emails clients are being used out there?Scott S.2008-09-16T23:25:26Z2008-09-16T23:25:26Z<p>I have outlook and gmail, but also a blackberry Curve...</p>
<p>The curve is HORRIBLE at dealing with anything other than plain/text emails. Please have a link near the top to view the email on a website, and consider sending a multipart email that also has a text only section for clients that don't support HTML and such.</p>
http://stackoverflow.com/questions/78108/is-there-a-difference-between-apache-module-vs-cgi-concerning-security/78271#782711Answer by Scott S. for Is there a difference between apache module vs cgi (concerning security)?Scott S.2008-09-16T23:16:22Z2008-09-16T23:16:22Z<p><strong>From the PHP install.txt doc for PHP 5.2.6:</strong></p>
<p>Server modules provide significantly better performance and additional
functionality compared to the CGI binary.
<br /><br /></p>
<p><strong>For IIS/PWS:</strong></p>
<p>Warning</p>
<p>By using the CGI setup, your server is open to several possible
attacks. Please read our CGI security section to learn how to defend
yourself from those attacks.</p>
http://stackoverflow.com/questions/69837/what-about-a-web-site-or-a-web-pages-structure-would-cause-a-visitor-to-return-t/69858#698583Answer by Scott S. for What about a web site or a web page's structure would cause a visitor to return to the top of the previous page, instead of to the point in the page where the link resides?Scott S.2008-09-16T06:40:01Z2008-09-16T06:40:01Z<p>Many sites have a text box (for searching the site, or something) that is set to automatically take focus when the page loads (using javascript or something). In many browsers, the page will jump to that text box when it gets focus.</p>
<p>It really is very annoying :(</p>
http://stackoverflow.com/questions/69564/php-propertys-scope-overridden-by-passing-as-reference/69707#697070Answer by Scott S. for PHP property's scope overridden by passing as reference?Scott S.2008-09-16T06:03:43Z2008-09-16T06:03:43Z<p>Forgive me, but use a public variable and lose the need to "hack" access to a protected variable? What you are doing seems like a fairly bad idea... Perhaps if you told us more of what you were trying to accomplish, we could find a good way to go about it...</p>
http://stackoverflow.com/questions/68165/javascript-to-scroll-long-page-to-div/68188#681882Answer by Scott S. for JavaScript to scroll long page to DIVScott S.2008-09-16T00:19:04Z2008-09-16T00:19:04Z<p>The property you need is location.hash. For example:<br /><br/>
location.hash = 'top'; //would jump to named anchor "top</p>
<p>I don't know how to do the nice scroll animation without the use of dojo or some toolkit like that, but if you just need it to jump to an anchor, location.hash should do it.</p>
<p>(tested on FF3 and Safari 3.1.2)</p>
http://stackoverflow.com/questions/68150/how-long-do-you-keep-your-code/68161#681611Answer by Scott S. for How Long Do You Keep Your Code?Scott S.2008-09-16T00:15:01Z2008-09-16T00:15:01Z<p>I keep backups of all of my code for as long as possible. The important things are backed up on my web server and external hdd. You can always delete things later, but if you think you might find a use for it, why not keep it?</p>
http://stackoverflow.com/questions/68079/order-of-unanswered-questions-page-counterproductive/68107#681070Answer by Scott S. for Order Of Unanswered Questions Page Counterproductive?Scott S.2008-09-16T00:05:36Z2008-09-16T00:05:49Z<p>I have to agree with everything you said so far. It might also be nice to have a section for older questions that are inactive or haven't had an answer chose yet. This way they have a chance to be revived instead of just dying after a day or two of not being popular.</p>
http://stackoverflow.com/questions/68020/where-did-my-motivation-go/68054#680540Answer by Scott S. for Where did my motivation go?Scott S.2008-09-15T23:53:50Z2008-09-15T23:53:50Z<p>Short answer: just call ls on /dev/null and you should see your motivation hanging out in there...</p>
<p>Long answer:
I got into coding (PHP specifically) during high school and loved to mess around with things for a number of years, but never managed to complete a single thing.</p>
<p>I found that when I branched out into non-programming things, I found more inspiration to program things. For example, I recently started a small sales company. We are using outlook to keep track of leads and contact information, quickbooks to handle accounting, inventory and track customers, and various text files / spread sheets to handle random statistics and more. Given all of the issues in dealing with all of this, I started working on our own app to handle everything for us. Now I have plenty of inspiration of what to program, and incentive to finish it.</p>
<p>There really is no magic motivation solution, but once you find something you need, or something you are passionate about, things will take care of themselves. </p>
http://stackoverflow.com/questions/68015/folder-with-extension/68023#680230Answer by Scott S. for Folder with Extension Scott S.2008-09-15T23:48:07Z2008-09-15T23:48:07Z<p>You can have an "extension" on your folder, but as far as I know, windows just treats it all as the folder name and opens the folder like normal when you click on it.</p>
<p>The few times I messed with opening a .app on my windows system, it acted like it was a normal folder.</p>
http://stackoverflow.com/questions/1917204/if-statement-question-in-php/1917214#1917214Comment by Scott S. on If statement question in phpScott S.2009-12-16T20:28:33Z2009-12-16T20:28:33ZThe last codeblock here seems to do what the OP is looking for without being overly convoluted. It gets my vote.http://stackoverflow.com/questions/26280/favorite-web-host/530148#530148Comment by Scott S. on Favorite web host.Scott S.2009-12-03T08:07:06Z2009-12-03T08:07:06ZI use them as well and would suggest them hands down. Check out my review on webhostingtalk.com, or search for the many, many other reviews you will find there.http://stackoverflow.com/questions/1580805/how-to-set-the-default-value-for-a-datetime-column-in-migration-script/1580836#1580836Comment by Scott S. on How to set the default value for a datetime column in migration script?Scott S.2009-10-17T06:58:10Z2009-10-17T06:58:10ZWhat about using a proc or lambda in conjunction with this idea? (I'm not sure if it would work, so just asking.)http://stackoverflow.com/questions/1581202/css-container-not-growing-with-grid/1581402#1581402Comment by Scott S. on CSS Container not growing with grid?Scott S.2009-10-17T04:29:02Z2009-10-17T04:29:02Z<a href="http://www.w3schools.com/Css/pr_pos_overflow.asp" rel="nofollow">w3schools.com/Css/pr_pos_overflow.asp</a> has other options and info related to this.http://stackoverflow.com/questions/1581340/rails-app-first-form-submit-after-application-restartComment by Scott S. on Rails app first form submit after application restartScott S.2009-10-17T04:10:43Z2009-10-17T04:10:43ZI ran into issues like this, try exiting the browser completely and then reopening the page after the restart.
I found in most cases, I was still using the old auth token that was no longer valid after a restart. Visiting the page again (without refreshing) should give you a new, working token.http://stackoverflow.com/questions/1580852/php-echo-concatenationComment by Scott S. on Php Echo ConcatenationScott S.2009-10-16T23:37:57Z2009-10-16T23:37:57ZAlso missing a </tr>http://stackoverflow.com/questions/1580852/php-echo-concatenation/1580879#1580879Comment by Scott S. on Php Echo ConcatenationScott S.2009-10-16T23:26:12Z2009-10-16T23:26:12Z@Joe Post the entire file so we can take a look.http://stackoverflow.com/questions/219323/php-mysql-login-works-on-one-server-php-5-0-2-but-does-not-work-on-the-other-pComment by Scott S. on php/mysql login works on one server (php 5.0.2) but does not work on the other (php 5.1.6)Scott S.2009-10-16T23:24:13Z2009-10-16T23:24:13ZWhat does mysql_error() say the issue with the connection is?http://stackoverflow.com/questions/1580852/php-echo-concatenation/1580861#1580861Comment by Scott S. on Php Echo ConcatenationScott S.2009-10-16T23:17:49Z2009-10-16T23:17:49ZThe code looks valid to me.http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/38443#38443Comment by Scott S. on What non-programming books should programmers read?Scott S.2008-09-19T05:21:56Z2008-09-19T05:21:56ZHis second book, the art of intrusion was also good, but not as good as the first one (Deception)http://stackoverflow.com/questions/79896/what-else-does-one-need-on-top-of-programming-skills-to-be-a-good-technical-lead/79921#79921Comment by Scott S. on What else does one need on top of programming skills to be a good Technical Lead?Scott S.2008-09-17T04:46:50Z2008-09-17T04:46:50ZYeah, when I hear about my managers "skillz," l337ness, etc, I know I am in for a bad time. 1337speak is not professional and should be used sparingly in a professional environment.http://stackoverflow.com/questions/79753/recommended-reading-list-for-a-relativenewbieComment by Scott S. on Recommended reading list for a (relative)newbie?Scott S.2008-09-17T04:01:32Z2008-09-17T04:01:32ZMan, there is a part of me that wants to post an answer: "Stack Overflow.com, of course!"http://stackoverflow.com/questions/64400/is-there-any-aim-api-for-php-that-would-allow-a-user-to-set-their-status-from-a-w/66162#66162Comment by Scott S. on Is there any AIM API for PHP that would allow a user to set their status from a website?Scott S.2008-09-17T00:41:01Z2008-09-17T00:41:01ZGlad it worked out. Best of luck to you.http://stackoverflow.com/questions/69564/php-propertys-scope-overridden-by-passing-as-reference/69707#69707Comment by Scott S. on PHP property's scope overridden by passing as reference?Scott S.2008-09-17T00:38:24Z2008-09-17T00:38:24ZIsn't that why we have these things called getters?
For example:
class Foo {
private int bar;
int getBar() { return this.bar; }
}http://stackoverflow.com/questions/77639/when-is-it-right-for-a-constructor-to-throw-an-exception/77698#77698Comment by Scott S. on When is it right for a constructor to throw an exception?Scott S.2008-09-17T00:36:27Z2008-09-17T00:36:27ZI have no idea why anyone rated this down... To me it seems like this is a pretty good thing to consider when throwing an exception in a constructor. I'm sure there is more than a few projects out there with memory leaks because the destructor wasn't called after throwing an exception.