User Adrian Dunston - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T07:45:05Z http://stackoverflow.com/feeds/user/8344 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1097950/mysql-query-excluding-a-set-of-data-but-includindg-certain-items-from-the-set-if/1098196#1098196 1 Answer by Adrian Dunston for mysql query excluding a set of data but includindg certain items from the set if item contains value in a specific column Adrian Dunston 2009-07-08T13:49:07Z 2009-07-08T13:55:55Z <h2>Actual Answer</h2> <p>I want all info about all products that have a product line other than 10. I also want the ones that have a product line of 10 but also have an option of "option1" or "option2". Here's how I express that:</p> <pre><code>select part_name, product_line, option from products where product_line &lt;&gt; 10 or option = "option1" or option = "option2"; </code></pre> <p>The &lt;> means not equal to. I say it's not equal to 10 or it's option 1 or it's option 2. If a row matches any of this criteria, it's accepted.</p> <p><hr /></p> <h2>One step further...</h2> <p>Let's try something more complicated. Let's say you want all products with a product line less than 10. But you also want all the products with a line of exactly 10 (not 11 or 12, etc) that have an option of "option1" or "option2". In this example, the fact that the product line = 10 becomes important for option1 and option2.</p> <pre><code>select part_name, product_line, option from products where product_line &lt; 10 or (product_line = 10 and (option = "option1" or option = "option2")); </code></pre> <p>With a combination of ands, ors, and parentheses, you can be very specific about what you are selecting from the database.</p> http://stackoverflow.com/questions/1092286/scope-of-variables-in-perl/1092353#1092353 0 Answer by Adrian Dunston for Scope of variables in perl. Adrian Dunston 2009-07-07T13:30:58Z 2009-07-08T13:43:14Z <p>Its scope is limited to the do_something subroutine where it's created until it's returned and stored in $ref. Once it's stored in $ref in file2.pl, it is in scope anywhere in file2.pl.</p> http://stackoverflow.com/questions/1019857/what-is-a-good-response-to-best-viewed-in-x/1019890#1019890 11 Answer by Adrian Dunston for What is a Good Response to "Best Viewed in x"? Adrian Dunston 2009-06-19T20:24:43Z 2009-06-19T20:24:43Z <p>You are losing 33% of your viewing audience simply because you have not taken the time to ensure your site is compatible with more browsers. <a href="http://marketshare.hitslink.com/report.aspx?qprid=0" rel="nofollow">(browser statistics)</a> A policy of "best viewed on IE" tells a third of your customers they are not wanted here. Please reconsider whether or not this is the way you wish to do business.</p> <p>Cheers!</p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/64218#64218 24 Answer by Adrian Dunston for Learning Ruby on Rails Adrian Dunston 2008-09-15T16:01:41Z 2009-05-18T17:16:47Z <p>Path of least resistance:</p> <ul> <li>Have a simple web project in mind.</li> <li>Go to <strong>rubyonrails.org</strong> and look at their "Blog in 15 minutes" screencast to get excited.</li> <li>Get a copy of O'Reilly Media's <strong>Learning Ruby</strong></li> <li>Get a Mac or Linux box.<br /> (Fewer early Rails frustrations due to the fact that Rails is generally developed on these.)</li> <li>Get a copy of <strong>Agile Web Development with Rails</strong>.</li> <li>Get the version of Ruby and Rails described in that book.</li> <li>Run through that book's first section to get a feel for what it's like.</li> <li>Go to <strong>railscasts.com</strong> and view at the earliest videos for a closer look.</li> <li>Buy <strong>The Rails Way</strong> by Obie Fernandez to get a deeper understanding of Rails and what it's doing.</li> <li>Then upgrade to the newest production version of Rails, and view the latest railscasts.com videos.</li> </ul> http://stackoverflow.com/questions/852705/sort-a-list-of-objects-by-using-their-attributes-in-ruby/852740#852740 1 Answer by Adrian Dunston for Sort a list of objects by using their attributes in Ruby Adrian Dunston 2009-05-12T13:19:57Z 2009-05-12T15:27:15Z <p>Let's assume that your basket is an Array or a subclass thereof.</p> <h2>The Fast Way</h2> <p><a href="http://www.ruby-doc.org/core/classes/Enumerable.html#M003151" rel="nofollow">Enumerable.sort_by</a></p> <p>As <a href="http://stackoverflow.com/users/31582/gareth">Gareth</a> pointed out, Enumerable (included by Array) has a sort_by method that runs through each list item once. This is faster to run and faster to write once you get the hang of it.</p> <pre><code># -f.calories to sort descending # name.downcase to do a case-insensitive sort basket = basket.sort_by { |f| [-f.calories, f.name.downcase] } </code></pre> <h2>The Perl Way</h2> <p><a href="http://www.ruby-doc.org/core/classes/Array.html#M002208" rel="nofollow">Array.sort</a></p> <p>Coming from a Perl background, my first impulse is to grab the spaceship operator &lt;=>. Cheeky little devil. Array has the sort and sort! methods that make it very useful. This solution is slower, and because it's longer it is more likely to introduce bugs. The only reason to use it is if you're dealing with people unfamiliar with Ruby and unwilling to find the <strong>right</strong> way on StackOverflow.</p> <pre><code>baseket.sort! { |a,b| if a.calories == b.calories a.name.downcase &lt;=&gt; b.name.downcase else # Reverse the result to sort highest first. -(a.calories &lt;=&gt; b.calories) end } </code></pre> http://stackoverflow.com/questions/658909/how-do-i-record-sound-and-send-it-to-a-server-from-a-web-application 1 How do I record sound and send it to a server from a web application? Adrian Dunston 2009-03-18T15:59:51Z 2009-03-18T22:52:39Z <p>I'm developing a web application. It will allow people to link written phrases with spoken phrases. In order for this application to be useful, random users must be able to record their own voices and send the sounds to the server. If I just have an "upload wav" form, no one will use it. <strong>If I have a "record" button that streams or packages up audio to the server, people will use it.</strong></p> <p>I'd be happy to use Flash to do this. I'd be happy to use Java to do this. I'd be <em>willing</em> to use .NET to do this ;) I could use an external service API if there is one available. The format of the audio is not important as long as I could replay it on other web pages.</p> <p>How do I put a record button on my website?</p> http://stackoverflow.com/questions/489069/how-to-start-real-programming/489149#489149 10 Answer by Adrian Dunston for How to start REAL programming? Adrian Dunston 2009-01-28T20:21:27Z 2009-01-28T20:28:15Z <p>When you're talking about securing a job, what you really mean is <strong>"What can I put on my resume?"</strong></p> <p>The answer is: <strong>Any programming project about which your current boss would say, "Yeah, I remember him doing that."</strong></p> <p>If you can put it on your resume, it's real. It doesn't matter if you're new to the language or not. It doesn't matter if the project was complicated or important. You did it, you got paid, you can prove it. That's all.</p> <h2>Jobless</h2> <p>If you don't have a job, you're just about screwed. Anything you do that a company doesn't pay you for looks like a hobby on a resume. I would recommend making little apps that you can sell to the general public for a few bucks, creating a web page to market them, and list that on your resume. You can also contribute to an open-source project. It still kind of looks like a hobby, but at least future employers can sample your work.</p> <h2>Non-Programming Job</h2> <p>If you work at a non-programming job, there's no reason you can't write code for your workplace. I sold treadmills at Sears. It was difficult to keep track of what was in the stock room. I created a system to help us keep track. Technically, they paid me to do it, so it was professional work. It looks kind of weird because the job title is "sales associate," but if you asked my boss about it, he'd remember it, and say I did a good job. The crappier your current job, the more little bits of software can help. Any shift manager at a restaurant or store would LOVE to have an app to help schedule people's shifts. Doing that by hand is a nightmare, but in code, it's just an overlapping series of rules.</p> <h2>Programming Job</h2> <p>If you currently have a programming job, figure out what technology you want to work with next. (I would suggest the language with the most open positions in your area.) Figure out a side-project you could do in that technology, and do it. If you don't think your boss would approve that project, do it in your own time, and present it as a gift. Your resume will not care if your manager really wanted it or not, and as long as he remembers you did it, it will be real to potential employers.</p> http://stackoverflow.com/questions/453762/nomethoderror-when-trying-to-invoke-helper-method-from-rails-controller/481583#481583 2 Answer by Adrian Dunston for NoMethodError when trying to invoke helper method from Rails controller Adrian Dunston 2009-01-26T22:08:09Z 2009-01-27T15:33:52Z <h2>Helper Methods from Controllers</h2> <p>One way to get at your helper methods is simply to include your helper file.</p> <pre><code>include LoginHelper cool_login_helper_method(x,y,z) </code></pre> <p>This brings all the methods from that helper module into scope in your controller. That's not always a good thing. To keep the scope separate, create an object, imbue it with the powers of that helper, and use it to call the methods:</p> <pre><code>login_helper = Object.new.extend(LoginHelper) login_helper.cool_login_helper_method(x,y,z) </code></pre> <p><hr /></p> <h2>Helper :all</h2> <p><code>helper :all</code> makes all of your helper methods from all of your helper modules available to all of your <strong>views</strong>, but it does nothing for your controllers. This is because helper methods are designed for use in views and generally shouldn't be accessed from controllers. <em>In newer versions of Rails, this option is always on for every controller by default.</em></p> http://stackoverflow.com/questions/302782/rails-how-do-i-check-if-a-column-has-a-value/302868#302868 1 Answer by Adrian Dunston for Rails: How do I check if a column has a value? Adrian Dunston 2008-11-19T18:23:40Z 2009-01-10T01:42:40Z <p>This is what you asked for:</p> <pre><code>&lt;% for agent in @broker.agents %&gt; &lt;% unless agent.cell.blank? %&gt; &lt;span class="cell-number"&gt;Cell: &lt;%= agent.cell %&gt;&lt;/span&gt; &lt;% end %&gt; &lt;% end %&gt; </code></pre> <p>The cell? method works whether cell is nil or an empty string. Rails adds similar functions for all ActiveRecord attributes. This will look a little nicer:</p> <pre><code>&lt;% for agent in @broker.agents %&gt; &lt;span class="cell-number"&gt; Cell: &lt;%= agent.cell? ? "none given" : agent.cell %&gt; &lt;/span&gt; &lt;% end %&gt; </code></pre> <p>The question mark and colon form a quick "if ? then : else" statement. There are two question marks in the code above because one is part of the method name cell? and the other is a part of the if/then/else construction.</p> http://stackoverflow.com/questions/66770/why-is-rspec-so-slow-under-rails 10 Why is RSpec so slow under Rails? Adrian Dunston 2008-09-15T20:46:06Z 2008-11-12T00:16:41Z <p>Whenever I run rspec tests for my Rails application it takes forever and a day of overhead before it actually starts running tests. Why is rspec so slow? Is there a way to speed up Rails' initial load or single out the part of my Rails app I need (e.g. ActiveRecord stuff only) so it doesn't load absolutely everything to run a few tests?</p> http://stackoverflow.com/questions/272764/what-is-the-quickest-path-to-writing-a-lightweight-gui-program-on-windows 2 What is the quickest path to writing a lightweight GUI program on Windows? Adrian Dunston 2008-11-07T17:06:43Z 2008-11-07T19:36:36Z <p>I want a small (&lt; 30MB) standalone Windows executable (a single file) that creates a window which asks the user for the location of a directory and then launches a different program in that directory. </p> <p>This executable has to run on XP, Vista, Server 2003, and Server 2008 versions of Windows in 32-bits and 64 bits on x86-64 architecture as well as Itanium chips. </p> <p>It would be spectacular if we only had to build it once in order to run it on all these platforms, but that is not a requirement. This is for a proprietary system, so GPL code is off-limits.</p> <p>What is the fastest way to put this together?</p> <p>These are some things I'm looking into, so if you have info about their viability, I'm all about it:</p> <ul> <li>Perl/Tk using perl2exe to get the binary.</li> <li>Ruby with wxruby</li> <li>Learn MFC programming and do it the right way like everybody else.</li> </ul> http://stackoverflow.com/questions/229851/overcoming-it-is-being-used-by-another-person-or-program 3 Overcoming "It is being used by another person or program." Adrian Dunston 2008-10-23T14:08:54Z 2008-10-24T15:32:14Z <p>Is there a way to unlock Windows files without downloading a utility?</p> <p>I have a few files on my Windows XP C: drive that are very old and very useless. When I try to delete these files I get the following message:</p> <pre> Cannot delete FILENAME.zip: It is being used by another person or program Close any programs that might be using the file and try again. </pre> <p>No one is accessing this file. No program is using it currently. Windows has screwed up the file locking mechanism. </p> <p>Is there a way to delete this file without downloading someone's unlocking utility? I find the sites offering these programs to be a tad sketchy.</p> <p>How could you force the file to unlock from within a program? I'm competent in Java, Perl, and Ruby, but I haven't seen anything among their libraries that would aid me here.</p> http://stackoverflow.com/questions/209495/best-ruby-idiom-for-nil-or-zero/209575#209575 6 Answer by Adrian Dunston for Best ruby idiom for "nil or zero" Adrian Dunston 2008-10-16T17:45:23Z 2008-10-16T18:01:58Z <p>You can use the Object.nil? to test for nil specifically (and not get caught up between false and nil). You can monkey-patch a method into Object as well. </p> <pre><code>class Object def nil_or_zero? return (self.nil? or self == 0) end end my_object = MyClass.new my_object.nil_or_zero? ==&gt; false </code></pre> <p>This is not recommended as changes to Object are difficult for coworkers to trace, and may make your code unpredictable to others.</p> http://stackoverflow.com/questions/87330/numbering-regex-submatches/87358#87358 2 Answer by Adrian Dunston for Numbering Regex Submatches Adrian Dunston 2008-09-17T20:35:24Z 2008-10-09T13:36:42Z <p>In Perl 5 regular expressions, answer b is correct. Submatch groupings are stored in order of open-parentheses.</p> <p>Many other regular expression engines take their cues from Perl, but you would have to look up individual implementations to be sure. I'd suggest the book <a href="http://books.google.com/books?id=ucwR4KIvExMC&amp;dq=mastering+regular+expressions&amp;pg=PP1&amp;ots=QLvzs24_Ik&amp;sig=wUON6Y-GbGfHClq73nJNbdhQecQ&amp;hl=en&amp;sa=X&amp;oi=book_result&amp;resnum=1&amp;ct=result" rel="nofollow">Mastering Regular Expressions</a> for a deeper understanding.</p> http://stackoverflow.com/questions/87551/how-do-you-respond-when-an-it-manager-asks-you-what-is-firefox/87560#87560 2 Answer by Adrian Dunston for How do you respond when an IT manager asks you, "What is Firefox?" Adrian Dunston 2008-09-17T20:53:35Z 2008-09-17T20:53:35Z <p>Elevator speech:</p> <p>Firefox is an advanced web browser with all the features of Internet Explorer plus some additional features -- like ad blocking -- available as plugins. Many of the features in the newest Internet Explorer were copied from Firefox, and the next version of IE will likely copy more of them.</p> http://stackoverflow.com/questions/86992/how-do-you-manage-pick-lists-in-a-database/87070#87070 1 Answer by Adrian Dunston for How do you manage "pick lists" in a database. Adrian Dunston 2008-09-17T20:06:14Z 2008-09-17T20:06:14Z <p>Create one table for lists and one table for list_options.</p> <pre><code> # Put in the name of the list insert into lists (id, name) values (1, "Country in North America"); # Put in the values of the list insert into list_options (id, list_id, value_text) values (1, 1, "Canada"), (2, 1, "United States of America"), (3, 1, "Mexico"); </code></pre> http://stackoverflow.com/questions/67097/is-there-any-mandatory-certification-a-programmer-should-have/67139#67139 21 Answer by Adrian Dunston for Is there any mandatory certification a programmer should have? Adrian Dunston 2008-09-15T21:25:53Z 2008-09-15T21:25:53Z <p>The only certification companies take very seriously in actual developers is a Bachelor of Science in Computer Science (or related field).</p> <p>Most other forms of certification are only good for the people charging you to take their exams.</p> <p>That piece of paper (a degree from an accredited college) is often a first requirement to getting a programming job. It rarely matters which college you get the degree from.</p> <p>If you are specializing in a certain kind of programming (e.g. for drug manufacturers, or defense contractors, or banks) there may be industry-specific certifications that are helpful.</p> http://stackoverflow.com/questions/66964/how-do-i-create-a-link-to-a-footnote-in-html/67014#67014 2 Answer by Adrian Dunston for How do I create a link to a footnote in HTML? Adrian Dunston 2008-09-15T21:11:26Z 2008-09-15T21:11:26Z <p>First you go in and put an anchor tag with a name attribute in front of each footnote.</p> <pre><code> &lt;a name="footnote1"&gt;Footnote 1&lt;/a&gt; &lt;div&gt;blah blah about stuff&lt;/div&gt; </code></pre> <p>This anchor tag will not be a link. It will just be a named section of the page. Then you make the footnote marker a tag that refers to that named section. To refer to a named section of a page you use the # sign.</p> <pre><code> &lt;p&gt;So you can see that the candidate lied &lt;a href="#footnote1"&gt;[1]&lt;/a&gt; in his opening address&lt;/p&gt; </code></pre> <p>If you want to link into that section from another page, you can do that too. Just link the page and tack the section name onto it.</p> <pre><code> &lt;p&gt;For more on that, see &lt;a href="mypaper.html#footnote1"&gt;footnote 1 from my paper&lt;/a&gt; , and you will be amazed.&lt;/p&gt; </code></pre> http://stackoverflow.com/questions/65205/linked-list-in-sql/65238#65238 9 Answer by Adrian Dunston for Linked List in SQL Adrian Dunston 2008-09-15T18:06:31Z 2008-09-15T18:06:31Z <p>Store an integer column in your table called 'position'. Record a 0 for the first item in your list, a 1 for the second item, etc. Index that column in your database, and when you want to pull your values out, sort by that column.</p> <pre><code> alter table linked_list add column position integer not null default 0; alter table linked_list add index position_index (position); select * from linked_list order by position; </code></pre> <p>To insert a value at index 3, modify the positions of rows 3 and above, and then insert:</p> <pre><code> update linked_list set position = position + 1 where position &gt;= 3; insert into linked_list (my_value, position) values ("new value", 3); </code></pre> http://stackoverflow.com/questions/64653/mysql-lock-wait-timeout-exceeded 0 MySQL: "lock wait timeout exceeded" Adrian Dunston 2008-09-15T16:53:54Z 2008-09-15T17:08:29Z <p>I am trying to delete several rows from a MySQL 5.0.45 database:</p> <pre><code>delete from bundle_inclusions; </code></pre> <p>The client works for a while and then returns the error:</p> <pre><code>Lock wait timeout exceeded; try restarting transaction </code></pre> <p>It's possible there is some uncommitted transaction out there that has a lock on this table, but I need this process to trump any such locks. How do I break the lock in MySQL?</p> http://stackoverflow.com/questions/59968/best-editor-or-ide-for-ruby/64329#64329 2 Answer by Adrian Dunston for Best Editor or IDE for Ruby? Adrian Dunston 2008-09-15T16:15:22Z 2008-09-15T16:15:22Z <p>Emacs has syntax highlighting and code completion for Ruby and Rails. It is also rad. </p> <p>If you want to be a programmer for the rest of your life, and you want to have an editor you can take to any platform, vi and emacs are for you. VI is easy to learn and simple to use. Emacs is difficult to learn, but incredibly powerful to use.</p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/64235#64235 0 Answer by Adrian Dunston for Learning Ruby on Rails Adrian Dunston 2008-09-15T16:03:18Z 2008-09-15T16:03:18Z <p>Wait a couple of months for <a href="http://oreilly.com/catalog/9780596518776/?CMP=AFC-ak_book&amp;ATT=Learning+Rails" rel="nofollow">Learning Rails by Simon St. Laurent, Edd Dumbill</a> to come out in November. That series of books is stupendous, and this book will cover the latest version of Rails.</p> http://stackoverflow.com/questions/1097950/mysql-query-excluding-a-set-of-data-but-includindg-certain-items-from-the-set-if Comment by Adrian Dunston on mysql query excluding a set of data but includindg certain items from the set if item contains value in a specific column Adrian Dunston 2009-07-08T13:46:20Z 2009-07-08T13:46:20Z &lt;&gt; is the same thing as != in SQL. http://stackoverflow.com/questions/229851/overcoming-it-is-being-used-by-another-person-or-program Comment by Adrian Dunston on Overcoming "It is being used by another person or program." Adrian Dunston 2008-10-23T18:48:35Z 2008-10-23T18:48:35Z Thanks for re-opening/editing. I understand that this is not a programming question per se. But fiddling with Windows processes and file locks has a lot more to do with development work than questions about &quot;What is your favorite (programmer cartoon|keyboard|t-shirt)?&quot; http://stackoverflow.com/questions/87551/how-do-you-respond-when-an-it-manager-asks-you-what-is-firefox/87560#87560 Comment by Adrian Dunston on How do you respond when an IT manager asks you, "What is Firefox?" Adrian Dunston 2008-09-17T20:59:00Z 2008-09-17T20:59:00Z I agree that this indicates deeper problems, but the question is how do you respond. You don't respond by saying, &quot;Sorry, can't talk. Must look for new job.&quot; You give the person what they wanted and THEN re-evaluate your life. http://stackoverflow.com/questions/66770/why-is-rspec-so-slow-under-rails/66783#66783 Comment by Adrian Dunston on Why is RSpec so slow under Rails? Adrian Dunston 2008-09-15T20:53:23Z 2008-09-15T20:53:23Z Thanks for this answer. I've clarified the question to be Rails-specific.