User Dan Harper - Leopard CRM - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T14:53:33Zhttp://stackoverflow.com/feeds/user/14530http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/80424/overriding-find-in-activerecord-the-dry-way3Overriding "find" in ActiveRecord the DRY wayDan Harper - Leopard CRM2008-09-17T06:02:33Z2009-10-04T13:27:49Z
<p>I have a few models that need to have custom find conditions placed on them. For example, if I have a Contact model, every time Contact.find is called, I want to restrict the contacts returned that only belong to the Account in use.</p>
<p>I found this via Google (which I've customized a little):</p>
<pre><code>def self.find(*args)
with_scope(:find => { :conditions => "account_id = #{$account.id}" }) do
super(*args)
end
end
</code></pre>
<p>This works great, except for a few occasions where account_id is ambiguous so I adapted it to:</p>
<pre><code>def self.find(*args)
with_scope(:find => { :conditions => "#{self.to_s.downcase.pluralize}.account_id = #{$account.id}" }) do
super(*args)
end
end
</code></pre>
<p>This also works great, however, I want it to be DRY. Now I have a few different models that I want this kind of function to be used. What is the best way to do this?</p>
<p>When you answer, please include the code to help our minds grasp the metaprogramming Ruby-fu.</p>
<p>(I'm using Rails v2.1)</p>
http://stackoverflow.com/questions/1305018/advantage-of-java-over-ruby-jruby/1318529#13185290Answer by Dan Harper - Leopard CRM for Advantage of Java over Ruby/JRubyDan Harper - Leopard CRM2009-08-23T13:15:21Z2009-08-23T13:15:21Z<p>Negatives for Java:</p>
<ul>
<li>There is a lot of duplication in libraries and frameworks available for Java.</li>
<li>Java developers/communities tend to create over complicated solutions to simple problems.</li>
<li>There is a lot more legacy in Java to maintain.</li>
<li>Too much pandering to business users has introduced cruft that makes middle managers feel better. In other words, some philosophies in Java are more concerned with BS instead of getting the job done. This is why companies like to use Java.</li>
<li>You'll generally need to write more code in Java than Ruby.</li>
<li>It takes a lot more configuring/installing/setup to get a fully working Java development environment over Ruby.</li>
</ul>
<p>Positives for Java:</p>
<ul>
<li>Speed.</li>
<li>Documentation.</li>
<li>Lower level language than Ruby, which could be a good thing or a bad thing, depending on your needs.</li>
</ul>
<p>None of my points are very scientific, but I think the differences in philosophy and personalities behind Java and Ruby is what makes them very different to each other.</p>
http://stackoverflow.com/questions/1316378/how-to-tell-person-he-should-improve-his-skills/1316443#13164433Answer by Dan Harper - Leopard CRM for How to tell person he should improve his skills?Dan Harper - Leopard CRM2009-08-22T16:52:44Z2009-08-22T16:52:44Z<p>I would recommend "failing" any code that does not meet the quality criteria. For example, if there are missing unit tests, "fail" the code so that it goes back to the developer to be rectified. This would be similar to having the code fail UAT or something, except it's more of an internal review from team leaders in the development team.</p>
<p>As an example, in one place I worked, I was leading a team of developers. We had PHP production code that was writing unnecessary warnings to the log files, which eventually caused disk space problems and difficulties in debugging the real bugs.</p>
<p>So, to rectify the problem, I laid down the rule: if any code that you've written writes warnings to the log file, the release will fail testing, and you'll need to fix it before it goes any further.</p>
<p>We had almost no warnings being logged on the next release. Now, it wasn't technically a bug, just a code quality issue. The point is that someone needs to be the gatekeeper that reviews and enforces quality controls at some point in the development lifecycle. </p>
<p>Even better, write some automated integration tests that check unit tests exist and code is styled correctly. There are some tools that can check this for you (not sure of the names of them, someone else may be able to enlighten us on that). That way, the build fails an automated, reproducible test. Code would get cleaned up quick smart if that was happening I would say.</p>
http://stackoverflow.com/questions/1316293/linux-web-platform-for-quick-development/1316391#13163915Answer by Dan Harper - Leopard CRM for Linux web platform for quick development?Dan Harper - Leopard CRM2009-08-22T16:34:17Z2009-08-22T16:34:17Z<p>If you're looking for cross platform abilities and fast development time, I'd suggest a scripting/dynamic language with a framework. I agree with your thoughts on eliminating complicated options. C++ would probably make your codebase unnecessarily complicated, and Mono/C# on Linux is probably going to give you grief (I have minimal experience in either, so this is just an opinion, not based on any fact).</p>
<p>(On a side note... to give you zero development time (although replaced with $ cost), have you considered and/or researched 3rd party services? There are many hosted services around that will give you what you're looking for.)</p>
<p>Back to the question, I'd suggest looking at either:</p>
<ul>
<li><strong><a href="http://www.rubyonrails.org/" rel="nofollow">Ruby on Rails</a></strong>. Ruby is a bit of a learning curve, but since you know a few other languages and seem smart enough, you may be OK. Rails gives you a mature web framework and community (read: lots of nice plugins to get some out of the box functionality).</li>
<li><strong><a href="http://www.cakephp.org/" rel="nofollow">PHP + CakePHP</a></strong>. Yes, PHP has come a long way in 5 years. CakePHP may address some potential PHP issues that you may be concerned about. Although you haven't mentioned what you don't like about PHP, so I can't say whether this will fit. Cake plays catch up a bit to Rails and there are some nice Rails features missing from Cake, but as you already know PHP, this may give you a nice compromise. CakePHP will also probably give you the least fuss in server configuration and setup as all you need is PHP and Apache.</li>
<li><strong><a href="http://www.djangoproject.com/" rel="nofollow">Python + Django</a></strong>. I haven't used this option myself, so I won't comment too much on it, someone else may be able to give us the pros/cons.</li>
</ul>
http://stackoverflow.com/questions/99553/can-you-distribute-a-ruby-on-rails-application-without-source5Can you Distribute a Ruby on Rails Application without Source?Dan Harper - Leopard CRM2008-09-19T04:09:29Z2009-04-28T07:51:47Z
<p>I'm wondering if it's possible to distribute a RoR app for production use without source code? I've seen <a href="http://stackoverflow.com/questions/55711/options-for-distribution-of-an-offline-ruby-on-rails-application">this post on SO</a>, but my situation is a little different. This would be an app administered by people with some clue, so I'm cool with still requiring an Apache/Mongrel/MySQL setup on the customer end. All I really want is for the source to be protected. Encoding seems a popular way to go for distributing PHP apps (eg: <a href="http://www.userscape.com/" rel="nofollow">Helpspot</a>).</p>
<p>I've found these potential solutions:</p>
<ul>
<li><a href="http://blog.zenspider.com/zenobfuscate/" rel="nofollow">Zenobfuscate</a> - not all types of Ruby code is supported however, so that counts that out</li>
<li><a href="http://www.rubyencoder.com/" rel="nofollow">Ruby Encoder</a> - may be the best option, as their PHP encoder looks alright (I haven't tried it however) but it's not available yet. I've used IONcube for PHP before and it worked well, but <a href="http://forum.ioncube.com/viewtopic.php?t=839" rel="nofollow">it doesn't seem that IONcube is interested yet</a>.</li>
<li><a href="http://joyent.com/developers/slingshot/" rel="nofollow">Slingshot</a> - it was mentioned in the other SO post, but it solves a different problem to mine and the source is still visible.</li>
<li><a href="http://www.erikveen.dds.nl/distributingrubyapplications/rails.html" rel="nofollow">RubyScript2Exe</a> - from the doco, it's not production ready, so that counts that out.</li>
</ul>
<p>I've heard that potentially using JRuby and distributing bytecode might be a way to achieve this, but I've never used JRuby so I'm not sure what's involved.</p>
<p>Can anyone offer any ideas and/or known examples? Ideally I'd love to have some kind of automated build scenario as well.</p>
http://stackoverflow.com/questions/780932/creating-nice-pdfs-with-ruby/784496#7844963Answer by Dan Harper - Leopard CRM for Creating nice pdfs with rubyDan Harper - Leopard CRM2009-04-24T04:15:26Z2009-04-24T04:15:26Z<p>In the past to get print quality PDFs in Ruby, I used <a href="http://github.com/bruce/rtex" rel="nofollow">rtex</a>.</p>
<p>It's fast too, which is a real bonus.</p>
http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/131663#1316630Answer by Dan Harper - Leopard CRM for What is the one programming skill you have always wanted to master but haven't had time?Dan Harper - Leopard CRM2008-09-25T05:58:58Z2008-09-25T05:58:58Z<p>Rspec. I've got the handle on Ruby unit/functional tests, but Rspec syntax does my head in.</p>
http://stackoverflow.com/questions/125467/best-way-to-conditional-redirect4Best Way to Conditional Redirect?Dan Harper - Leopard CRM2008-09-24T04:50:42Z2008-09-24T08:15:35Z
<p>Using Rails v2.1, lets say you have an action for a controller that is accessible from more than one location. For example, within the Rails app, you have a link to edit a user from two different views, one on the users index view, and another from another view (lets say from the nav bar on every page).</p>
<p>I'm wondering what is the best way to redirect the user back to the right spot depending on what link they clicked on. For example:</p>
<p>Example 1:</p>
<ol>
<li>List all users</li>
<li>Click "edit" on a user in the list</li>
<li>User clicks "save" on the form, the controller redirects back to 1.</li>
</ol>
<p>Example 2:</p>
<ol>
<li>The user could be on any page within the application, the nav bar shows a link to edit the current user</li>
<li>The user clicks on the link to edit</li>
<li>The user clicks "save" on the form, controller redirects back to whatever page they were on when the user clicked the "edit" link in the nav bar.</li>
</ol>
<p>I've seen it done in the past by:</p>
<ol>
<li>Placing a parameter on the original edit link with the original controller/action in which the link appeared. To make this more DRY, you could use @controller.controller_name and @controller.action_name in a helper.</li>
<li>The controller saves the parameters to a session variable.</li>
<li>Once the controller has saved the record, it redirects to the session variable.</li>
</ol>
<p>What I don't particularly like about this solution is the need to add the parameter to every applicable link in the views. I'm wondering if there's a way to build this all into the controller.</p>
<p>One better way I was thinking was to:</p>
<ol>
<li>Place a before_filter on the "edit" action to save the referrer (is this reliable enough?) into the session.</li>
<li>When "update" is hit, the controller will redirect to the session variable and then delete the session variable.</li>
</ol>
<p>Any thoughts on the best way to do this?</p>
http://stackoverflow.com/questions/125496/rails-check-box-on-mysql-stored-as-a-null-or-zero/125517#1255172Answer by Dan Harper - Leopard CRM for Rails Check box on MySql stored as a null or zeroDan Harper - Leopard CRM2008-09-24T05:09:46Z2008-09-24T05:14:58Z<p>There are a number of potential reasons for this:</p>
<ul>
<li>Make sure that the column in the database is of type "boolean" in the migration</li>
<li>Place a default on boolean values</li>
<li>Use "check_box" on the form, not "check_box_tag"</li>
<li>Some versions of Rails had this behaviour on generated scaffolds, I think setting the default fixed this, but I can't quite remember.</li>
</ul>
http://stackoverflow.com/questions/124275/does-anyone-know-of-any-cross-platform-gui-log-viewers-for-ruby-on-rails/124965#1249650Answer by Dan Harper - Leopard CRM for Does anyone know of any cross platform GUI log viewers for Ruby On Rails?Dan Harper - Leopard CRM2008-09-24T01:54:44Z2008-09-24T01:54:44Z<p>I went looking for one recently, there are a few attempts, but none that really help you solve problems. Many of the Rails log viewers just focus on giving you performance information for each controller/action in your app.</p>
<p>I'd love to see something that grouped all your exceptions together, that would be nice.</p>
http://stackoverflow.com/questions/116854/getting-started-with-rails-must-have-gems/118368#118368-1Answer by Dan Harper - Leopard CRM for Getting started with rails? Must have gems?Dan Harper - Leopard CRM2008-09-23T00:16:36Z2008-09-24T01:43:27Z<p>The only gems you need are:</p>
<ul>
<li>Rails</li>
<li>Rake</li>
</ul>
<p>If you "gem install rails" you'll get everything you need for Rails. You only need gems when you need them, so it's not worth worrying about before then.</p>
<p>EDIT: Actually there are a couple more you'll probably need:</p>
<ul>
<li>mysql - or whatever Ruby database driver you need</li>
<li>mongrel - you don't necessarily need this until production, but it's nice to use in dev/test too</li>
<li>ZenTest - I use this mainly for "autotest" so that my tests run in a console window whenever my source files change</li>
</ul>
<p>There could be many other gems that help you but we'd need more info from you to know if they're applicable, eg:</p>
<ul>
<li>Web scraping (hpricot)</li>
<li>CSV (fastercsv)</li>
<li>Amazon S3 support (aws-s3)</li>
<li>Image manipulation (rmagick)</li>
<li>Graphing (gruff) - I use this as a plugin</li>
<li>Role-based security (role_requirement) - This one is a plugin too</li>
</ul>
http://stackoverflow.com/questions/118247/whats-the-best-way-to-implement-acls-to-a-rails-application/118383#1183831Answer by Dan Harper - Leopard CRM for What's the best way to implement ACLs to a Rails application?Dan Harper - Leopard CRM2008-09-23T00:21:06Z2008-09-23T00:21:06Z<p>The best I've found is <a href="http://github.com/timcharper/role_requirement/tree/master" rel="nofollow">role_requirement</a>. It plugs straight into the restful_authentication plugin.</p>
http://stackoverflow.com/questions/115501/is-ruby-any-good-for-gui-development/118376#1183760Answer by Dan Harper - Leopard CRM for Is Ruby any good for GUI development?Dan Harper - Leopard CRM2008-09-23T00:18:24Z2008-09-23T00:18:24Z<p>Have you looked at SWT on Java? It uses native widgets and is much easier to get a nice interface with it than Swing.</p>
http://stackoverflow.com/questions/117406/which-php-framework-is-closest-to-ruby-on-rails-cakephp-codeigniter/118354#1183541Answer by Dan Harper - Leopard CRM for Which PHP framework is closest to Ruby on Rails? CakePHP? CodeIgniter?Dan Harper - Leopard CRM2008-09-23T00:14:06Z2008-09-23T00:14:06Z<p>I've got a few years experience in RoR and I have investigated most of the PHP frameworks for a PHP project I was working on and CakePHP came out the closest to Rails that I could find.</p>
<p>The best part of Cake is that they've emulated most of the great designs and time savers Rails has.</p>
http://stackoverflow.com/questions/102785/what-single-url-should-every-web-developer-have-bookmarked/103144#1031440Answer by Dan Harper - Leopard CRM for What single URL should every web developer have bookmarked?Dan Harper - Leopard CRM2008-09-19T15:51:01Z2008-09-19T15:51:01Z<p><a href="http://api.rubyonrails.org/" rel="nofollow">http://api.rubyonrails.org/</a> of course. Although admittedly I use Google to search it ;-) </p>
http://stackoverflow.com/questions/62529/best-practice-for-model-design-in-ruby-on-rails/99671#996715Answer by Dan Harper - Leopard CRM for Best Practice for Model Design in Ruby on RailsDan Harper - Leopard CRM2008-09-19T04:38:04Z2008-09-19T04:38:04Z<p>I cover this in one of my large apps by just making sure that the tables/models are conceptually grouped by name (with almost 1:1 table-model relationship). Example:</p>
<pre><code>events
event_types
event_groups
event_attendees
etc...
</code></pre>
<p>That way when I'm using TextMate or whatever, the model files are nicely grouped together by the alpha sort. I have 80 models in this app, and it works well enough to keep things organised.</p>
http://stackoverflow.com/questions/98376/java-properties-file-equivalent-for-ruby/99032#990321Answer by Dan Harper - Leopard CRM for Java .properties file equivalent for Ruby?Dan Harper - Leopard CRM2008-09-19T02:40:50Z2008-09-19T02:40:50Z<p>YAML will do it perfectly as described above. For an example, in one of my Ruby scripts I have a YAML file like:</p>
<pre><code>migration:
customer: Example Customer
test: false
sources:
- name: Use the Source
engine: Foo
- name: Sourcey
engine: Bar
</code></pre>
<p>which I then use within Ruby as:</p>
<pre><code>config = YAML.load_file(File.join(File.dirname(__FILE__), ARGV[0]))
puts config['migration']['customer']
config['sources'].each do |source|
puts source['name']
end
</code></pre>
http://stackoverflow.com/questions/90151/http-put-a-file-to-s3-presigned-urls-using-ruby/98952#989521Answer by Dan Harper - Leopard CRM for http PUT a file to S3 presigned URLs using ruby Dan Harper - Leopard CRM2008-09-19T02:21:56Z2008-09-19T02:29:33Z<p>Can you provide more information on how a "presigned URL" works? Is it like this:</p>
<pre><code>AWS::S3::S3Object.url_for(self.full_filename,
self.bucket_name, {
:use_ssl => true,
:expires_in => ttl_seconds
})
</code></pre>
<p>I use this code to send authenticated clients the URL to their S3 file. I believe this is the "presigned URL" that you're asking about. I haven't used this code for a PUT, so I'm not exactly sure if it's right for you, but it might get you close.</p>
http://stackoverflow.com/questions/89543/how-to-implement-a-redirect-on-all-requests-on-certain-conditions1How to Implement a Redirect on All Requests (on certain conditions)?Dan Harper - Leopard CRM2008-09-18T02:42:09Z2008-09-18T19:07:47Z
<p>I want to set something up so that if an Account within my app is disabled, I want all requests to be redirected to a "disabled" message.</p>
<p>I've set this up in my ApplicationController:</p>
<pre><code>class ApplicationController < ActionController::Base
before_filter :check_account
def check_account
redirect_to :controller => "main", :action => "disabled" and return if !$account.active?
end
end
</code></pre>
<p>Of course, this doesn't quite work as it goes into an infinite loop if the Account is not active. I was hoping to use something like:</p>
<pre><code>redirect_to :controller => "main", :action => "disabled" and return if !$account.active? && @controller.controller_name != "main" && @controller.action_name != "disabled"
</code></pre>
<p>but I noticed that in Rails v2.1 (what I'm using), @controller is now controller and this doesn't seem to work in ApplicationController.</p>
<p>What would be the best way to implement something like this?</p>
http://stackoverflow.com/questions/91289/ruby-on-rails-migration-create-new-database-schema/91449#914490Answer by Dan Harper - Leopard CRM for Ruby on Rails Migration - Create New Database SchemaDan Harper - Leopard CRM2008-09-18T10:20:18Z2008-09-18T10:59:38Z<p>I'm not sure I understand what you're asking exactly, but, rake will be expecting to update the version of the Rails schema into the schema_info table. Check your database.yml config file, this is where rake will be looking to find the table to update.</p>
<p>Is it a possibility that you are migrating to a new Postgres schema and rake is still pointing to the old one? I'm not sure then that a standard Rails migration is what you need. It might be best to create your own rake task instead.</p>
<p>Edit: If you're referencing two different databases or Postgres schemas, Rails doesn't support this in standard migrations. Rails assumes one database, so migrations from one database to another is usually not possible. When you run "rake db:migrate" it actually looks at the RAILS_ENV environment variable to find the correct entry in database.yml. If rake starts the migration looking at the "development" environment and database config from database.yml, it will expect to update to this environment at the end of the migration.</p>
<p>So, you'll probably need to do this from outside the Rails stack as you can't reference two databases at the same time within Rails. There are attempts at plugins to allow this, but they're majorly hacky and don't work properly.</p>
http://stackoverflow.com/questions/90268/sleeping-problems-computer-addiction/91560#915601Answer by Dan Harper - Leopard CRM for Sleeping problems, computer addictionDan Harper - Leopard CRM2008-09-18T10:47:11Z2008-09-18T10:47:11Z<p>Stop running your own business... oh no wait, that one's for me ;-)</p>
<p>But seriously... the stress issue is huge, I've found getting another hobby I really enjoy can help break the cycle. I find tennis really enjoyable and it gets me some exercise and away from the computer.</p>
<p>If you don't enjoy it, then you won't do it, so make sure it's something you enjoy doing away from the computer.</p>
http://stackoverflow.com/questions/85459/is-it-possible-to-combine-a-series-of-pdfs-into-one-using-ruby/90750#907500Answer by Dan Harper - Leopard CRM for Is it possible to combine a series of PDFs into one using Ruby?Dan Harper - Leopard CRM2008-09-18T07:40:55Z2008-09-18T07:46:29Z<p>Any Ruby code to do this in a real application is probably going to be painfully slow. I would try and hunt down unix tools to do the job. This is one of the beauties of using Mac OS X, it has very fast PDF capabilities built-in. The next best thing is probably a unix tool.</p>
<p>Actually, I've had some success with rtex. If you look <a href="http://weblog.rubyonrails.org/2006/3/19/quick-pdf-generation-with-rtex" rel="nofollow">here</a> you'll find some information about it. It is much faster than any Ruby library that I've used and I'm pretty sure latex has a function to bring in PDF data from other sources.</p>
http://stackoverflow.com/questions/90151/http-put-a-file-to-s3-presigned-urls-using-ruby/90708#907080Answer by Dan Harper - Leopard CRM for http PUT a file to S3 presigned URLs using ruby Dan Harper - Leopard CRM2008-09-18T07:25:53Z2008-09-18T07:25:53Z<p>Does anything on the <a href="http://amazon.rubyforge.org/" rel="nofollow">s3 library page</a> cover what you need? There are loads of examples there.</p>
http://stackoverflow.com/questions/89574/which-language-is-most-like-php/89631#896311Answer by Dan Harper - Leopard CRM for Which language is most like PHP?Dan Harper - Leopard CRM2008-09-18T03:00:19Z2008-09-18T03:00:19Z<p>You may only know which is best when you try a few. It only takes an hour or three to go through a simple tutorial in a new language. Just Google for something simple and have a crack at it.</p>
<p>From memory, after I learnt PHP, I went on to Java. If you're coming from PHP5, then it may not be too much of a stretch. I can say that Ruby (not Rails) is a great starting point too. Have you seen <a href="http://shoooes.net/" rel="nofollow">Shoes</a>? I'd give something like that a try.</p>
http://stackoverflow.com/questions/89456/linux-servers/89559#895591Answer by Dan Harper - Leopard CRM for Linux ServersDan Harper - Leopard CRM2008-09-18T02:45:43Z2008-09-18T02:45:43Z<p>+1 for Debian stable. Nothing better on the server IMO.</p>
<ul>
<li>It has an easy net install CD to get minimal packages</li>
<li>apt-get is awesome on a server</li>
<li>packages are actually compatible with each other and they seem to be tested properly (gasp!)</li>
<li>Less packages + less complexity + compat packages + super stable packages (no shiny stuff) == more stable server == more happiness == happier customers == more money ;)</li>
</ul>
http://stackoverflow.com/questions/87561/what-is-your-preferred-way-to-produce-charts-in-a-ruby-on-rails-web-application/89486#894861Answer by Dan Harper - Leopard CRM for What is your preferred way to produce charts in a Ruby on Rails web application?Dan Harper - Leopard CRM2008-09-18T02:29:07Z2008-09-18T02:29:07Z<p>In the old days, I decided to roll my own (using RVG/RMagick), mainly because Gruff didn't have everything I wanted. The downside was that finding and eliminating all the bugs in graphing code is a pain. These days Gruff is my choice as it's really gone forward in terms of customization and flexibility.</p>
<p>The standard Gruff templates/color choices suck though, so you'll need to get your hands dirty for best results.</p>
http://stackoverflow.com/questions/88339/which-is-better-shipping-a-buggy-feature-or-not-shipping-the-feature-at-all/88397#883971Answer by Dan Harper - Leopard CRM for Which is better: shipping a buggy feature or not shipping the feature at all?Dan Harper - Leopard CRM2008-09-17T22:36:08Z2008-09-17T22:36:08Z<p>Perfectionists may answer "don't do it".</p>
<p>Business people may answer "do it".</p>
<p>I guess where the balance is is up to you. I would be swaying towards putting the feature in there if the bugs are non-critical. Most users don't see your software the same way you do. You're a craftsman/artist, which means your more critical than regular people.</p>
<p>Is there any way that you can get a beta version to the 4-5 people who requested the feature? Then, once you get their feedback, it may be clear which decision to make. </p>
http://stackoverflow.com/questions/82611/is-there-textmate-like-editor-for-windows/82817#828170Answer by Dan Harper - Leopard CRM for Is there TextMate-like editor for Windows?Dan Harper - Leopard CRM2008-09-17T12:53:17Z2008-09-17T12:53:17Z<p>The short answer is "No". No text editor I've used on Windows even comes close to Textmate. Some try to replicate the "bundles" system, and the themes, but one major thing I find that isn't available in the Windows "replacements" is the beautiful font. I could code all day in the standard Textmate font, but any Windows text editor really strains my eyes. You may have to buy a Mac ;-)</p>
http://stackoverflow.com/questions/82639/how-to-become-a-better-programmer/82765#827650Answer by Dan Harper - Leopard CRM for How to become a better programmer?Dan Harper - Leopard CRM2008-09-17T12:48:04Z2008-09-17T12:48:04Z<p>One way you could do it is to study an opinionated framework like Ruby on Rails. This could be like a case study. You have programmers who have made decisions based on solid design principles. I would suggest taking single decisions on Rails design and then asking "Why?". For example, why follow the MVC pattern? What are it's advantages, what are the disadvantages? What type of software projects does it work best for? etc.</p>
http://stackoverflow.com/questions/82191/what-is-the-best-way-of-speccing-plugins-with-rspec/82680#826800Answer by Dan Harper - Leopard CRM for What is the best way of speccing plugins with RSpec?Dan Harper - Leopard CRM2008-09-17T12:40:23Z2008-09-17T12:40:23Z<p>For an example of an existing plugin that uses rspec, check out the <a href="http://github.com/technoweenie/restful-authentication/tree/master" rel="nofollow">restful_authentication plugin</a>. Maybe it will help.</p>
http://stackoverflow.com/questions/1316378/how-to-tell-person-he-should-improve-his-skills/1316443#1316443Comment by Dan Harper - Leopard CRM on How to tell person he should improve his skills?Dan Harper - Leopard CRM2009-08-22T16:56:57Z2009-08-22T16:56:57ZWhat language/build process are you using? Here's a tool for Java for code style checking: <a href="http://checkstyle.sourceforge.net/" rel="nofollow">checkstyle.sourceforge.net</a>http://stackoverflow.com/questions/99553/can-you-distribute-a-ruby-on-rails-application-without-source/786277#786277Comment by Dan Harper - Leopard CRM on Can you Distribute a Ruby on Rails Application without Source?Dan Harper - Leopard CRM2009-04-26T08:13:48Z2009-04-26T08:13:48Z-1 for not answering the question. This is not a question of architecture design, business models, or whether the app will be pirated or not.http://stackoverflow.com/questions/125496/rails-check-box-on-mysql-stored-as-a-null-or-zero/125517#125517Comment by Dan Harper - Leopard CRM on Rails Check box on MySql stored as a null or zeroDan Harper - Leopard CRM2008-09-25T03:38:57Z2008-09-25T03:38:57ZUsing it dynamically might still be OK. I'd recommend doing it via standard Rails helpers first, then mimic the generated HTML in your DOM manipulation.http://stackoverflow.com/questions/125467/best-way-to-conditional-redirect/125988#125988Comment by Dan Harper - Leopard CRM on Best Way to Conditional Redirect?Dan Harper - Leopard CRM2008-09-25T03:34:16Z2008-09-25T03:34:16ZI get ya, but the session variable may still be necessary as it needs to persist across form validation errors. How does your answer cater for this? The before_filter gives better DRY-ness as this behaviour would need to be in a number of actions in the controller.http://stackoverflow.com/questions/125496/rails-check-box-on-mysql-stored-as-a-null-or-zeroComment by Dan Harper - Leopard CRM on Rails Check box on MySql stored as a null or zeroDan Harper - Leopard CRM2008-09-24T05:10:08Z2008-09-24T05:10:08ZWhat version of Rails are you running?http://stackoverflow.com/questions/116854/getting-started-with-rails-must-have-gems/117081#117081Comment by Dan Harper - Leopard CRM on Getting started with rails? Must have gems?Dan Harper - Leopard CRM2008-09-24T01:45:10Z2008-09-24T01:45:10ZYar, HAML is nasty, but that's just my opinion.http://stackoverflow.com/questions/116854/getting-started-with-rails-must-have-gems/118368#118368Comment by Dan Harper - Leopard CRM on Getting started with rails? Must have gems?Dan Harper - Leopard CRM2008-09-24T01:44:04Z2008-09-24T01:44:04ZOK, I found a couple of others that I use that may help the OP, edited to reflect this.http://stackoverflow.com/questions/116854/getting-started-with-rails-must-have-gems/118368#118368Comment by Dan Harper - Leopard CRM on Getting started with rails? Must have gems?Dan Harper - Leopard CRM2008-09-24T01:34:53Z2008-09-24T01:34:53ZI guess what I mean is, the OP didn't give us any indication of what he might need apart from authentication. Without knowing what kind of app he's building, how can we recommend gems?http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114530#114530Comment by Dan Harper - Leopard CRM on What are Code Smells? What is the best way to correct them?Dan Harper - Leopard CRM2008-09-23T00:10:27Z2008-09-23T00:10:27ZIf you're using an interpreted language, there's no compiler to help you :)http://stackoverflow.com/questions/114007/free-supportticket-software/114034#114034Comment by Dan Harper - Leopard CRM on Free supportticket softwareDan Harper - Leopard CRM2008-09-22T11:46:33Z2008-09-22T11:46:33ZFogBugz is great for tracking bugs, but not so good with tracking support tickets. We programmers seem to blur the lines between the two, but they each have a different focus and different features because of it.http://stackoverflow.com/questions/114081/common-causes-of-operating-system-crashes/114098#114098Comment by Dan Harper - Leopard CRM on Common Causes of Operating System CrashesDan Harper - Leopard CRM2008-09-22T11:41:19Z2008-09-22T11:41:19Z1. "Segmentation fault" (or GPF in Windows land) is the term you are looking for when an application tries to access memory that it's not allowed to. "Page fault" refers to when a section of memory is accessed but it's been swapped out to virtual memory.http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/102718#102718Comment by Dan Harper - Leopard CRM on What was your first home computer?Dan Harper - Leopard CRM2008-09-19T15:46:09Z2008-09-19T15:46:09ZThe commodore 64 was rockin'!http://stackoverflow.com/questions/96501/perks-for-new-programmers/96723#96723Comment by Dan Harper - Leopard CRM on Perks for new programmersDan Harper - Leopard CRM2008-09-19T08:48:52Z2008-09-19T08:48:52ZMost of these points generally go down well with experienced programmers too.http://stackoverflow.com/questions/99553/can-you-distribute-a-ruby-on-rails-application-without-source/99663#99663Comment by Dan Harper - Leopard CRM on Can you Distribute a Ruby on Rails Application without Source?Dan Harper - Leopard CRM2008-09-19T04:40:38Z2008-09-19T04:40:38ZI didn't notice that, thanks Pete, maybe it is worth talking to them about it.http://stackoverflow.com/questions/99553/can-you-distribute-a-ruby-on-rails-application-without-source/99570#99570Comment by Dan Harper - Leopard CRM on Can you Distribute a Ruby on Rails Application without Source?Dan Harper - Leopard CRM2008-09-19T04:23:09Z2008-09-19T04:23:09ZWhatever solution it is, it's not as secure as not giving anyone the app. I'm just trying to figure out how to stick a hurdle as large as possible in front of anyone trying to get to the source. There is a small element of trust there as the customers have paid to use the software.