User mwilliams - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T20:11:47Z http://stackoverflow.com/feeds/user/23909 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1133501/how-to-make-html-written-by-users-on-a-site-not-conflict-with-the-sites-stylesh 2 How to make HTML written by users on a site, not conflict with the site's stylesheets? mwilliams 2009-07-15T19:36:47Z 2009-11-08T13:50:29Z <p>I have a website that allows a user to create blog posts. There are some backlisted tags but most standard HTML tags are acceptable.</p> <p>However, I'm having issues with how the pages get displayed.</p> <p>I keep the HTML wrapped in its own div.</p> <p>I would ultimately like to keep the HTML from the user separate from the main sites stylesheets so it can avoid inheriting styles and screwing up the layout of the originating site where the HTML is being displayed.</p> <p>So in the end, is there anything I can apply to a div so its contents are quarantined from the rest of the site?</p> <p>Thanks!</p> http://stackoverflow.com/questions/179849/best-solution-for-migration-from-oracle-forms-6i-to-the-web 3 Best solution for migration from Oracle Forms 6i to the web? mwilliams 2008-10-07T18:55:33Z 2009-11-01T14:18:15Z <p>I work in an Oracle shop. There's a toolset that consists of roughly 1000 Oracle Forms (using the Forms builder from 6i, early 90's software) with Oracle 10g on the back end. It's serving roughly 500 unique people a month, with 200 concurrent connections at any given time during the work day.</p> <p>Obviously this is something that needs to be addressed to get rid of the Forms runtime and move to a web based solution. The tools need to be accessed from Windows, Linux, various UNIX's, VMS and Solaris.</p> <p>What options out there exist that would be feasible to migrate to? Not only does it need to be feasible for migration but the development will need to be done by 8 or so engineers who support the tool set (and many of which who would prefer to stay put and not modernize this tool set).</p> <p>Oracle offers a few solutions that convert Oracle Forms into a crappy Java Applet (it's a very terrible temporary solution).</p> <p>My solution of choice has been migrating to Ruby on Rails (which I'm a big proponent of Rails) but this will involve a learning curve (which we'll hit with any solution) for other developers. Also, the other difficulty in this is converting some very complex forms to HTML forms.</p> <p>Has anyone tackled such a solution? Are there any packages offered by anyone outside of Oracle?</p> <p>Any specific Java Web frameworks?</p> <p>Would GWT, jQuery UI, ExtJS or any other JavaScript UI frameworks offer the rich user experience needed?</p> <p>.NET is a consideration but a last resort (mostly because of license costs, there's no room in the budget in addition to what we're paying for Oracle licenses).</p> http://stackoverflow.com/questions/1604415/modifying-a-custom-defun-to-not-conflict-with-magit 0 Modifying a custom defun to not conflict with Magit mwilliams 2009-10-22T00:32:08Z 2009-10-22T02:58:28Z <p>I use the following smart-tab defun in my .emacs for either completion on a word or just to do a standard tab:</p> <pre><code>(global-set-key [(tab)] 'smart-tab) (defun smart-tab () "This smart tab is minibuffer compliant: it acts as usual in the minibuffer. Else, if mark is active, indents region. Else if point is at the end of a symbol, expands it. Else indents the current line." (interactive) (if (minibufferp) (unless (minibuffer-complete) (dabbrev-expand nil)) (if mark-active (indent-region (region-beginning) (region-end)) (if (looking-at "\\_&gt;") (dabbrev-expand nil) (indent-for-tab-command))))) </code></pre> <p>However, when I'm using <code>magit-status</code> for git Git integration, I could previously select a file that has had a modification, hit tab, and instantly see a diff on that file to see what's been modified. However, whenever I attempt a tab now, I get the following error in my mini-buffer.</p> <p><code>indent-relative: Buffer is read-only: #&lt;buffer *magit: my_project*</code></p> <p>Any thoughts on approaching this and maybe applying smart-tab above to certain modes only?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1556523/ive-never-used-ido-mode-do-i-want-to/1576644#1576644 1 Answer by mwilliams for I've never used ido mode. Do I want to? mwilliams 2009-10-16T07:33:32Z 2009-10-16T07:33:32Z <p>I'm starting to work Emacs into my work life after spending much time outside of work getting my productivity levels up to snuff because I would start using it at work.</p> <p>But one great talk that opened my eyes about Emacs and ido was this talk:</p> <p><a href="http://vimeo.com/1013263" rel="nofollow">What You Can Learn From ido.el</a></p> <blockquote> <p>Rich, composable systems are the way to go--in programming languages, libraries, and interface metaphors. This short screencast looks at the latter, comparing TextMate and Emacs.</p> </blockquote> <p>Give it a look and good luck with your efforts of using ido!</p> http://stackoverflow.com/questions/1568987/getting-emacs-to-respect-my-default-shell-options 2 Getting Emacs to respect my default shell + options mwilliams 2009-10-14T21:03:07Z 2009-10-15T04:15:56Z <p>I'm trying to get my Emacs shell to mimic that of my standard terminal sessions. Basically I would like it to respect the same PATH as well as the command prompt.</p> <p>So far I have a few issues:</p> <ul> <li>PATH isn't found, below is the fix I'm using for that.</li> <li>I'm getting ascii color codes all over the place with another fix I tried.</li> </ul> <p>I have the following in my mwilliams.el file. The first few lines give me access to /usr/local/bin in M-x shell, which solves half the problem and the last few lines get me running with Zsh but my prompt is very screw.</p> <pre><code>(setenv "PATH" (concat (getenv "PATH") ":/usr/local/bin")) (setq exec-path (append exec-path '("/usr/local/bin"))) (defun shell () (interactive) (ansi-term "/bin/zsh")) </code></pre> <p>With the above I get the following all throughout when I M-x shell.</p> <pre><code>4m\342/236/234 </code></pre> <p>The modes being used are: (Term: char run yas) </p> <p>As far as I can tell it's not respecting some of the ascii color codes in my Zsh theme. I am however seeing a few colors coming through; so it's half way there. My best guess is that I need it to respect my .zshrc which contains information about my theme and PATH.</p> <p>I'm just getting my feet wet in Emacs and getting a solid shell is one of the last few things I need before I can start migrating my daily work (and everything else) over to Emacs.</p> <p>And finally I'm running Emacs 23.1 (9.0) in OSX Snow Leopard.</p> <p>Any thoughts? Thanks!</p> http://stackoverflow.com/questions/1546587/force-javascript-function-call-to-wait-until-previous-one-is-finished 0 Force Javascript function call to wait until previous one is finished mwilliams 2009-10-09T23:50:07Z 2009-10-10T00:07:12Z <p>I have a simple Javascript function:</p> <pre><code>makeRequest(); </code></pre> <p>It does a bunch of stuff and places a bunch of content into the DOM.</p> <p>I make a few calls like so:</p> <pre><code>makeRequest('food'); makeRequest('shopping'); </code></pre> <p>However, they both fire so quickly that they are stepping on each other's toes. Ultimately I need it to have the functionality of.</p> <pre><code>makeRequest('food'); wait.... makeRequest('shopping'); only if makeRequest('food') has finished </code></pre> <p>Thoughts on getting these to execute only one at a time?</p> <p>Thanks!</p> http://stackoverflow.com/questions/172380/programming-texts-and-reference-material-for-my-kindle-dx-creating-the-ultimate 19 Programming texts and reference material for my Kindle DX, creating the ultimate reference device? mwilliams 2008-10-05T18:14:06Z 2009-10-09T20:45:53Z <p>(Revisiting this topic with the release of the Kindle DX)</p> <p>Having owned both generation Kindle readers and now getting a Kindle DX; I'm very excited for true PDF handling on an e-ink device!</p> <p><a href="http://twitpic.com/entj" rel="nofollow">An image of _Why's book on my Kindle (from my iPhone)</a>.</p> <p>This gives me a device capable of storing hundreds of thousands of pages that are full text search capable in the form factor of a magazine.</p> <p>What references (preferably PDF to preserve things such as code samples) would you recommend? Ultimately I would like reference material for every modern and applicable programming language (C, C++, Objective-C, Python, Ruby, Java, .NET (C#, Visual Basic, ASP.NET), Erlang, SQL references) as well as general programming texts and frameworks (algorithms, design patterns, theory, Rails, Django, Cocoa, ORMs, etc) and anything else that could be thought of.</p> <p>With so many developers here using such a wide array of languages, as a professional in your particular field, what books or references would you recommend to me for my Kindle? Creative Commons material a plus (translate that to free) as well as the material being in the PDF file format. File size is not an issue.</p> <p>If this turns out to be a success, I will update with a follow-up with a compiled list generated from all of the answers. </p> <p>Thanks for the assistance and contributing!</p> <p><strong>UPDATE</strong></p> <p>I have been using the Kindle DX a lot now for technical books. Check out this blog post I did for high resolution photos of different material:</p> <p><a href="http://www.matthewdavidwilliams.com/2009/06/12/technical-document-pdfs-on-the-kindle-dx/" rel="nofollow">http://www.matthewdavidwilliams.com/2009/06/12/technical-document-pdfs-on-the-kindle-dx/</a></p> http://stackoverflow.com/questions/1545681/how-to-best-utilize-jquery-to-programmatically-generate-html-elements 1 How to best utilize jQuery to programmatically generate HTML elements mwilliams 2009-10-09T19:37:02Z 2009-10-09T20:09:09Z <p>I have a bunch of Javascript functions that look like the following:</p> <pre><code>function generateBusinessImage (business) { var business_image = document.createElement('img'); business_image.setAttribute('class','photo'); business_image.alt = business.name; business_image.title = business.name; business_image.align = 'right'; business_image.src = business.photo_url; return business_image; } </code></pre> <p>This seems like a good canidate for a refactor. From reviewing a few different jQuery docs, it would appear that I should be able to do something similar to this pseudo code:</p> <pre><code>return var business_image = document.createElement('img'). setAttribute('class','photo'). alt(business.name). title(business.title). align('right'). src(business.photo_url); </code></pre> <p>Am I on the right track?</p> <p>Thanks!</p> <p><strong>EDIT</strong></p> <p>I'm calling the function above with the following code and the line where I do appendChild on div with generateBusinessImage is where my errors are occurring with some of the answers below:</p> <pre><code>var div = document.createElement('div'); var div_class = document.createAttribute('class'); div.setAttribute('class','business'); div.appendChild(generateBusinessImage(business)); </code></pre> http://stackoverflow.com/questions/978270/reverse-engineering-a-statistics-data-file-from-my-insulin-pump-controller 5 Reverse engineering a statistics data file from my insulin pump controller mwilliams 2009-06-10T21:35:03Z 2009-09-18T03:22:40Z <p>This may or may not be a grey area subject, though my intentions are certainly not, so my intention is not to stir up an ethical debate on the topic of reverse engineering. </p> <p>I'm a type 1 diabetic currently undergoing pump therapy. I'm an <a href="http://myomnipod.com" rel="nofollow">OmniPod</a> user, it's a disposable pod that adheres to my body and dispenses insulin for 3 days. It's controlled by a personal diabetes manager [PDM] (seen below) which controls how much insulin to dispense during meals, bloor sugar readings, and it contains a food index for carb counting on the go.</p> <p><img src="http://www.myomnipod.com/images/pdm-200.jpg" alt="alt text" /></p> <p>The new PDM has a USB port for the downloading of data. The software is free for Windows users (a package called CoPilot), but there is no Mac support.</p> <p>Upon plugging the PDM into my Mac, it mounted like any other USB device would and presented me with a readable volume with a single file on it with an IBF extension. It weighs in at 16KB.</p> <p>My first instinct was to pass it through a text editor and was presented with a very binary looking file. I then passed it through strings (see below) and opened it up with a hex editor. Though I couldn't gain much information aside from the strings below; no compression format details or anything. </p> <pre><code>$ strings omnipoddata.ibf Insulet OmniPod basal 1 Post-meal e-meal Pre-meal e-bedtime Pre-bedtime .(@P .(@P .(@P </code></pre> <p>What should be my next step in this process? I'm a dynamic language guy, so any resources for Ruby would be great, or Python. Are there any test driven reverse engineering processes?</p> <p>As far as the data I'm looking to obtain, it's information I would like to chart to gain more information on my progress (insulin intake, blood sugar readings, timestamps); all of which is possible in the Windows software package.</p> http://stackoverflow.com/questions/349980/friendly-byte-formatting-in-rails/350083#350083 5 Answer by mwilliams for Friendly Byte Formatting in Rails mwilliams 2008-12-08T16:30:53Z 2009-09-15T07:11:57Z <p><a href="http://api.rubyonrails.com/classes/ActionView/Helpers/NumberHelper.html#M001468" rel="nofollow">Number to human size</a> is what you're looking for.</p> <pre><code>require 'actionview' include ActionView::Helpers::NumberHelper number_to_human_size(123) # =&gt; 123 Bytes number_to_human_size(1234) # =&gt; 1.2 KB number_to_human_size(12345) # =&gt; 12.1 KB number_to_human_size(1234567) # =&gt; 1.2 MB number_to_human_size(1234567890) # =&gt; 1.1 GB number_to_human_size(1234567890123) # =&gt; 1.1 TB number_to_human_size(1234567, :precision =&gt; 2) # =&gt; 1.18 MB number_to_human_size(483989, :precision =&gt; 0) # =&gt; 473 KB number_to_human_size(1234567, :precision =&gt; 2, :separator =&gt; ',') # =&gt; 1,18 MB </code></pre> http://stackoverflow.com/questions/1421806/using-willpaginate-without-totalentries-to-improve-a-lengthy-query 1 Using will_paginate without :total_entries to improve a lengthy query mwilliams 2009-09-14T14:11:24Z 2009-09-14T17:17:03Z <p>I have a current implementation of <strong>will_paginate</strong> that uses the <strong>paginate_by_sql</strong> method to build the collection to be paginated. We have a custom query for <strong>total_entries</strong> that's very complicated and puts a large load on our DB. Therefore we would like to cut total_entries from the pagination altogether. </p> <p>In other words, instead of the typical pagination display of 'previous 1 [2] 3 4 5 next', we would simply like a 'next - previous' button only. But we need to know a few things.</p> <ol> <li>Do we display the previous link? This would only occur of course if records existing prior to the ones displayed in the current selection</li> <li>Do we display the next link? This would not be displayed if the last record in the collection is being displayed</li> </ol> <p>From the <a href="http://gitrdoc.com/rdoc/mislav/will%5Fpaginate/b3b0f593ea9b1da13a64bc825dfe17b6bbc2828b/classes/WillPaginate/Finder/ClassMethods.html#M000140" rel="nofollow">docs</a></p> <blockquote> <p>A query for counting rows will automatically be generated if you don’t supply :total_entries. If you experience problems with this generated SQL, you might want to perform the count manually in your application.</p> </blockquote> <p>So ultimately the ideal situation is the following.</p> <ul> <li>Remove the total_entries count because it's causing too much load on the database</li> <li>Display 50 records at a time with semi-pagination using only next/previous buttons to navigate and not needing to display all page numbers available</li> <li>Only display the next button and previous button accordingly</li> </ul> <p>Has anyone worked with a similar issue or have thoughts on a resolution?</p> http://stackoverflow.com/questions/1416537/step-through-ruby-code-at-runtime-on-os-x/1416561#1416561 1 Answer by mwilliams for Step through Ruby code at runtime on OS X mwilliams 2009-09-13T00:54:03Z 2009-09-13T00:54:03Z <p>It seems many text editors for OSX play well with Ruby and in some instances, like TextMate, were built for Ruby.</p> <p>But if you're shopping for an IDE, check out Netbeans. Its Ruby support is fantastic. Lot's of nice little features that'll make you appreciate it.</p> <p>As for stepping through code:</p> <blockquote> <p>Single-step or run through Ruby code and ERB files. Set breakpoints, look at local variables, navigate the call stack, switch threads. Hover the mouse over a variable in the Editor to evaluate the expressions and show it in a tooltip. The NetBeans IDE supports the Fast Ruby Debugger, which also works with JRuby. You can even attach the debugger to any remote process started from the command line, and get all the advantages of a user-friendly debugger fronten</p> </blockquote> <p><a href="http://www.netbeans.org/features/ruby/index.html" rel="nofollow">http://www.netbeans.org/features/ruby/index.html</a></p> http://stackoverflow.com/questions/1300533/execute-commands-from-external-file-in-rails/1300553#1300553 0 Answer by mwilliams for Execute commands from external file in Rails mwilliams 2009-08-19T15:04:58Z 2009-08-19T15:04:58Z <p>Sounds like a job for script/runner.</p> <p><a href="http://www.ameravant.com/posts/recurring-tasks-in-ruby-on-rails-using-runner-and-cron-jobs" rel="nofollow">http://www.ameravant.com/posts/recurring-tasks-in-ruby-on-rails-using-runner-and-cron-jobs</a></p> http://stackoverflow.com/questions/1278281/traversing-to-a-specific-child-element-with-prototype 1 Traversing to a specific child element with Prototype mwilliams 2009-08-14T14:44:18Z 2009-08-14T15:06:41Z <p>Given the following markup.</p> <pre><code>&lt;div id="example"&gt; &lt;div&gt; &lt;div&gt; &lt;input type='hidden'&gt;&lt;/input&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>How can I quickly get the hidden input element given I have the ID for the top most div element with the ID 'example'? </p> <p>I can hack away at it so I can just iterate through each child element until I hit the input, however, I'd like to improve on that and utilize Prototype and simply jump to that hidden input given the div.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1252062/emacs-exercises-to-become-more-comfortable-and-familiar-with-the-editor-itself-as 10 Emacs exercises to become more comfortable and familiar with the editor itself as well as Lisp? mwilliams 2009-08-09T19:41:16Z 2009-08-13T22:30:25Z <p>There's a great project called the <a href="http://github.com/edgecase/ruby%5Fkoans/tree/master" rel="nofollow">Ruby Koans</a>, it's a series of tasks to exercise yourself in the Ruby language, stepping you through the standard library using the Ruby Unit Testing suite as a learning tool. It's a great project.</p> <p>I'd love to see something similar for Emacs. </p> <p>Can anyone recommend any Lisp exercises to be done inside of Emacs to both exercise Lisp and Emacs usage? Perhaps also while completing the Ruby Koans?</p> http://stackoverflow.com/questions/970542/uninitialized-constant-twitteroauth-overlooking-a-require-somewhere 0 uninitialized constant Twitter::OAuth - Overlooking a require somewhere? mwilliams 2009-06-09T14:54:52Z 2009-08-07T11:57:45Z <p>I'm looking to use the latest Twitter gem for a Rails app I'm working on.</p> <p>However, executing the following line:</p> <pre><code>oauth = Twitter::OAuth.new(ServiceAPIKeys.twitter['api_key'], ServiceAPIKeys.twitter['secret_key']) </code></pre> <p>Triggers the following exception:</p> <pre><code>uninitialized constant Twitter::OAuth </code></pre> <p>I do have the gem configured in my environment.rb using 'config.gem 'twitter'' and I have the gem unpacked into my vendor/gems directory. I've also tried tossing a 'require 'twitter'' inside the controller where I'm calling it.</p> <p>Am I missing something obvious or is this an issue with the current gem?</p> http://stackoverflow.com/questions/1225245/force-any-href-in-an-iframe-to-use-its-parent-as-the-target 0 Force any HREF in an IFrame to use its parent as the target mwilliams 2009-08-04T00:22:01Z 2009-08-04T01:09:43Z <p>I'm currently using an IFrame to sandbox user generated content on a website. This eliminates any styling issues with our main stylesheets.</p> <p>However, when a user generates a link using our rich text editor, we would like the link to open in the parent and not just open the link in the IFrame. I realize you can set a target to the parent, but we do not have control of the user and what they enter in their content.</p> <p>Is there any way to hijack the HREFs inside the IFrame so they all target parent without modifying them? Or use a bit of Javascript that could be injected universally so I do not need to scrape through all of the content and replace the target programatically? </p> <p>Ideally a simple script in one spot would be the best solution.</p> <p>Thoughts?</p> <p><strong>END SOLUTION</strong></p> <p>I used a variation of the answer I selected... It got me in the right direction.</p> <pre><code>&lt;script&gt; Event.observe(window, 'load', function() { $$('a').each(function(e) { e.writeAttribute('target', '_parent'); }); }); &lt;/script&gt; </code></pre> <p>That's inside the IFrame with the content. It ended up being the most simple solution for the task.</p> http://stackoverflow.com/questions/1217180/how-do-i-byte-compile-everything-in-my-emacs-d-directory/1218017#1218017 4 Answer by mwilliams for How do I byte-compile everything in my .emacs.d directory? mwilliams 2009-08-02T02:23:47Z 2009-08-02T02:23:47Z <p>This is swaying a bit from the question, but to solve the problem of loading slowly you can use the new daemon feature in Emacs 23.</p> <blockquote> <p>"If you have a lot of support packages, emacs startup can be a bit slow. However, emacs 23 brings emacs --daemon, which enables you to start emacs in the background (for example when you log in). You can instantly pop up new emacs windows (frames) with emacsclient. Of course, you could already have an emacs 'server' in older versions, but being able to start it in the background makes this a much nicer solution"</p> </blockquote> <p>From <a href="http://emacs-fu.blogspot.com/2009/07/emacs-23-is-very-near.html" rel="nofollow">http://emacs-fu.blogspot.com/2009/07/emacs-23-is-very-near.html</a></p> http://stackoverflow.com/questions/1096009/carbon-vs-aqua-vs-cocoa-emacs-builds 5 Carbon vs. Aqua vs. Cocoa Emacs builds mwilliams 2009-07-08T03:27:38Z 2009-07-09T13:30:50Z <p>There seem to be a few camps when it comes to Emacs on OSX; Carbon versus Aqua Emacs. It seems the argument is that Aqua is a bit too far from standard Emacs and if you get too comfortable then you will have trouble using any other build of Emacs.</p> <p>As a developer who has been trying to get into Emacs for a few months now, I have been using Carbon Emacs with the <a href="http://github.com/technomancy/emacs-starter-kit/tree/master" rel="nofollow">Emacs Starting Kit</a> and things are going OK.</p> <p>But with a Cocoa build of Emacs coming with Emacs 23 (and nightly builds), will this change anything? </p> <p>Should I consider using the nightly Cocoa builds in anticipation? I'm very curious to find out the benefits and if there will be significant changes or improvements over the two main OSX Emacs apps.</p> http://stackoverflow.com/questions/1075966/problem-with-xml-and-httparty/1083422#1083422 0 Answer by mwilliams for Problem with XML and HTTParty mwilliams 2009-07-05T03:59:19Z 2009-07-05T03:59:19Z <p>I would go ahead and post your problems on the issues page for their Github project.</p> <p><a href="http://github.com/jnunemaker/httparty/issues" rel="nofollow">http://github.com/jnunemaker/httparty/issues</a></p> <p>It already looks like there are some issues surrounding some XML issues. But it's definitely the best way to communicate directly with the developers and to provide them feedback.</p> http://stackoverflow.com/questions/158737/how-would-you-migrate-a-multi-site-clearcase-clearquest-environment-to-all-open-s 1 How would you migrate a multi-site ClearCase/ClearQuest environment to all Open Source? mwilliams 2008-10-01T17:28:09Z 2009-07-01T23:16:40Z <p>I work in an multi-site environment that's currently using Rational ClearCase for source control and Rational ClearQuest for issue tracking (I accept your condolences ahead of time). As a rough estimate I would say this is supporting 200 engineers.</p> <p>How would you effectively migrate this SCM methodology to a comparative, all Open Source tool suite? Not only would this save literally hundreds of thousands of dollars but I also believe it would improve developer productivity and very little downtime compared to the current system.</p> <p>Platforms in use include Windows, Linux, UNIX and Solaris.</p> http://stackoverflow.com/questions/1069899/consuming-non-rest-apis-in-rails-with-activeresource/1070560#1070560 1 Answer by mwilliams for Consuming non-REST APIs in Rails with ActiveResource mwilliams 2009-07-01T18:08:58Z 2009-07-01T18:08:58Z <p>I would recommend <a href="http://github.com/jnunemaker/httparty" rel="nofollow">HTTParty</a>, it's pretty flexible and I'm sure capable of handling what you need.</p> <p>Some examples from the project:</p> <pre><code>pp HTTParty.get('http://whoismyrepresentative.com/whoismyrep.php?zip=46544') pp HTTParty.get('http://whoismyrepresentative.com/whoismyrep.php', :query =&gt; {:zip =&gt; 46544}) @auth = {:username =&gt; u, :password =&gt; p} options = { :query =&gt; {:status =&gt; text}, :basic_auth =&gt; @auth } HTTParty.post('http://www.twitter.com/statuses/update.json', options) </code></pre> <p>And if you need to POST something in the body of the request, simply add :body => "text" to the options hash.</p> <p>It's very straightforward to work with and I'm currently using it in place of ActiveResource to consume some REST services from a Rails app.</p> http://stackoverflow.com/questions/1051465/using-a-duration-field-in-a-rails-model 0 Using a duration field in a Rails model mwilliams 2009-06-26T22:02:36Z 2009-06-26T22:40:25Z <p>I'm looking for the best way to use a duration field in a Rails model. I would like the format to be HH:MM:SS (ex: 01:30:23). The database in use is sqlite locally and Postgres in production. </p> <p>I would also like to work with this field so I can take a look at all of the objects in the field and come up with the total time of all objects in that model and end up with something like:</p> <blockquote> <p>30 records totaling 45 hours, 25 minutes, and 34 seconds.</p> </blockquote> <p>So what would work best for?</p> <ul> <li>Field type for the migration</li> <li>Form field for the CRUD forms (hour, minute, second drop downs?)</li> <li>Least expensive method to generate the total duration of all records in the model</li> </ul> http://stackoverflow.com/questions/1020344/how-can-i-run-a-rake-task-as-a-windows-scheduled-task/1020353#1020353 3 Answer by mwilliams for How can I run a Rake task as a Windows "scheduled task"? mwilliams 2009-06-19T22:42:39Z 2009-06-19T22:42:39Z <p>If you can build a batch file that can execute it properly I would do so, and then you can direct the batch file to run with the task.</p> <p>Something like this should work:</p> <pre><code>:: Run task every hour @call rake stats RAILS_ENV="production" </code></pre> http://stackoverflow.com/questions/1009381/the-string-test-3-displays-as-test-3-in-my-rails-app 2 The string "Test '<3'" displays as "Test '<3>" in my Rails app mwilliams 2009-06-17T20:31:46Z 2009-06-17T20:44:11Z <p>I'm having a strange problem where a user can enter the following text</p> <blockquote> <p>Test '&lt;3'</p> </blockquote> <p>and it outputs as</p> <blockquote> <p>Test '&lt;3></p> </blockquote> <p>On the output I'm using white_list, and the value stored in the database is:</p> <blockquote> <p>'testing ''&lt;3'''</p> </blockquote> <p>What could be causing the output to think it's a tag of some sort and trying to close it (which is what it looks like to me).</p> <p>Thanks!</p> http://stackoverflow.com/questions/991909/ruby-refactoring-cheatsheet/992075#992075 1 Answer by mwilliams for ruby refactoring cheatsheet? mwilliams 2009-06-14T03:27:28Z 2009-06-14T03:27:28Z <p>What kind of Ruby refactoring do you want to do? I think this question needs to be cleared up a little bit.</p> <p>Otherwise, for a Ruby refactoring tool, you can check out: <a href="http://github.com/fabiokung/rfactor/tree/master" rel="nofollow">Rfactor</a></p> http://stackoverflow.com/questions/990987/should-i-freak-out-about-rails-deprecation-warnings/990997#990997 1 Answer by mwilliams for Should I freak out about Rails deprecation warnings? mwilliams 2009-06-13T16:39:59Z 2009-06-13T16:39:59Z <p>After digging up this Lighthouse ticket, I wouldn't be too concerned; yet.</p> <p><a href="https://rails.lighthouseapp.com/projects/8994/tickets/1671-inappropriate-variable-will-no-longer-be-implicitly-assigned-to-variable-message" rel="nofollow">Inappropriate "@variable will no longer be implicitly assigned to variable" message</a></p> http://stackoverflow.com/questions/970542/uninitialized-constant-twitteroauth-overlooking-a-require-somewhere/970670#970670 1 Answer by mwilliams for uninitialized constant Twitter::OAuth - Overlooking a require somewhere? mwilliams 2009-06-09T15:10:33Z 2009-06-09T15:10:33Z <p>Problem found. There was another included gem, 'Twitter4r' that was using the Twitter namespace and it was taking precedence over the Twitter gem.</p> http://stackoverflow.com/questions/963868/in-ruby-should-i-use-or-if-defined-for-memoization/967810#967810 0 Answer by mwilliams for In Ruby, should I use ||= or if defined? for memoization? mwilliams 2009-06-09T01:49:59Z 2009-06-09T01:49:59Z <p>Rails does have memoization, check out the screencast below for a great introduction:</p> <p><a href="http://railscasts.com/episodes/137-memoization" rel="nofollow">http://railscasts.com/episodes/137-memoization</a></p> <pre><code>class Product &lt; ActiveRecord::Base extend ActiveSupport::Memoizable belongs_to :category def filesize(num = 1) # some expensive operation sleep 2 12345789 * num end memoize :filesize end </code></pre> http://stackoverflow.com/questions/172380/programming-texts-and-reference-material-for-my-kindle-dx-creating-the-ultimate/942801#942801 0 Answer by mwilliams for Programming texts and reference material for my Kindle DX, creating the ultimate reference device? mwilliams 2009-06-03T02:27:40Z 2009-06-03T02:27:40Z <p>Trying to bring this thread back to life with the release of the Kindle DX: <a href="http://www.humblelittlerubybook.com/book/" rel="nofollow">http://www.humblelittlerubybook.com/book/</a></p> http://stackoverflow.com/questions/1604415/modifying-a-custom-defun-to-not-conflict-with-magit/1604778#1604778 Comment by mwilliams on Modifying a custom defun to not conflict with Magit mwilliams 2009-10-22T04:56:22Z 2009-10-22T04:56:22Z Thank you and thanks your contributions! http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/312748#312748 Comment by mwilliams on The single most useful Emacs feature mwilliams 2009-10-19T19:21:49Z 2009-10-19T19:21:49Z I editing to what I believe is the correct link that I found on his site. http://stackoverflow.com/questions/1568987/getting-emacs-to-respect-my-default-shell-options/1570246#1570246 Comment by mwilliams on Getting Emacs to respect my default shell + options mwilliams 2009-10-16T01:21:15Z 2009-10-16T01:21:15Z Awesome, method #2 worked like a charm! Thanks! http://stackoverflow.com/questions/1546587/force-javascript-function-call-to-wait-until-previous-one-is-finished/1546600#1546600 Comment by mwilliams on Force Javascript function call to wait until previous one is finished mwilliams 2009-10-10T00:12:27Z 2009-10-10T00:12:27Z I was able to utilize the callback to avoid the toe stepping; thanks! http://stackoverflow.com/questions/1546587/force-javascript-function-call-to-wait-until-previous-one-is-finished/1546600#1546600 Comment by mwilliams on Force Javascript function call to wait until previous one is finished mwilliams 2009-10-09T23:59:53Z 2009-10-09T23:59:53Z Getting closer. I tried your first example and makeRequest with shopping isn't called. I can toss an alert and it's not getting triggered either http://stackoverflow.com/questions/1546587/force-javascript-function-call-to-wait-until-previous-one-is-finished/1546597#1546597 Comment by mwilliams on Force Javascript function call to wait until previous one is finished mwilliams 2009-10-09T23:55:22Z 2009-10-09T23:55:22Z Yes, you're correct. Is there anything I can do? http://stackoverflow.com/questions/1545681/how-to-best-utilize-jquery-to-programmatically-generate-html-elements/1545704#1545704 Comment by mwilliams on How to best utilize jQuery to programmatically generate HTML elements mwilliams 2009-10-09T19:59:28Z 2009-10-09T19:59:28Z I updated my question with how my method is being called; which might be able to be refactored as well. http://stackoverflow.com/questions/1545681/how-to-best-utilize-jquery-to-programmatically-generate-html-elements/1545704#1545704 Comment by mwilliams on How to best utilize jQuery to programmatically generate HTML elements mwilliams 2009-10-09T19:55:56Z 2009-10-09T19:55:56Z I'm throwing an error: &quot;ReferenceError: Can't find variable: $&quot;. And yeah, I thought about that too, just concatenating a long string. http://stackoverflow.com/questions/1479605/stub-out-call-to-view-helper-in-a-rails-functional-test/1479874#1479874 Comment by mwilliams on Stub out call to view helper in a Rails functional test mwilliams 2009-09-26T03:59:09Z 2009-09-26T03:59:09Z What I need to know is what 'Something' is. I had assumed @controller, but that failed. I just need to stub a call like &lt;%= helper_method %&gt; that's called in a view. I don't care what it does, I just need to know in my functional test that it gets called once. http://stackoverflow.com/questions/978270/reverse-engineering-a-statistics-data-file-from-my-insulin-pump-controller/1442444#1442444 Comment by mwilliams on Reverse engineering a statistics data file from my insulin pump controller mwilliams 2009-09-19T05:27:02Z 2009-09-19T05:27:02Z Nope, unfortunately not. Just a few strings when viewing with a hex editor or just a plain text editor. I also couldn't find many repeatable patterns. My best guess is because it's somewhat personal data, it's encrypted in one way or another so only their software can display it. http://stackoverflow.com/questions/1421806/using-willpaginate-without-totalentries-to-improve-a-lengthy-query/1422115#1422115 Comment by mwilliams on Using will_paginate without :total_entries to improve a lengthy query mwilliams 2009-09-14T15:46:31Z 2009-09-14T15:46:31Z Thanks for answer. Nice and simplistic and I looked way beyond such a simple solution. Most of my implementation is in place and seems much better already. Though I'm having issues with the next/previous buttons, but I'll get it hammered out soon enough. Thanks again! http://stackoverflow.com/questions/1421806/using-willpaginate-without-totalentries-to-improve-a-lengthy-query/1422115#1422115 Comment by mwilliams on Using will_paginate without :total_entries to improve a lengthy query mwilliams 2009-09-14T15:10:05Z 2009-09-14T15:10:05Z Thanks for the idea. I'm going to hack away and see what I can come up with. I've got some lengthy custom SQL queries to deal with but I think I should be able to get them worked into solution and get an idea on how performance will be. Thanks! http://stackoverflow.com/questions/1278281/traversing-to-a-specific-child-element-with-prototype/1278349#1278349 Comment by mwilliams on Traversing to a specific child element with Prototype mwilliams 2009-08-14T14:59:20Z 2009-08-14T14:59:20Z Thanks! I knew it was simple (and it makes complete sense looking at it). I really need to get up to speed with JS and finding what I need in the docs. http://stackoverflow.com/questions/1252062/emacs-exercises-to-become-more-comfortable-and-familiar-with-the-editor-itself-as/1252123#1252123 Comment by mwilliams on Emacs exercises to become more comfortable and familiar with the editor itself as well as Lisp? mwilliams 2009-08-09T20:42:12Z 2009-08-09T20:42:12Z Thanks for this link, it's been pretty helpful already, especially using the Lisp interactive mode and its keybindings. Great stuff! http://stackoverflow.com/questions/1225245/force-any-href-in-an-iframe-to-use-its-parent-as-the-target/1225271#1225271 Comment by mwilliams on Force any HREF in an IFrame to use its parent as the target mwilliams 2009-08-04T00:34:19Z 2009-08-04T00:34:19Z Ahhhh ok, I can't keep up with your edits :) Will give this a shot... Thanks!