User Carlos Villela - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T23:52:16Zhttp://stackoverflow.com/feeds/user/16944http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1401242/connecting-to-ms-sql-server-2005-from-mac-using-ruby-odbc-and-freetds1Connecting to MS SQL Server 2005 from Mac using Ruby, ODBC and FreeTDSCarlos Villela2009-09-09T18:20:25Z2009-09-10T19:02:48Z
<p>I'm having trouble connecting to a SQL Server 2005 install from this very simple Ruby app:</p>
<pre><code>#!/usr/bin/env ruby
require 'rubygems'
require 'sequel'
Sequel.odbc('dev04')['select top 1 * from users'].all
</code></pre>
<p>The <code>dev04</code> DSN points to my <code>odbc.ini</code> file entry:</p>
<pre><code>[dev04]
Driver = FreeTDS
Description = ODBC connection via FreeTDS
Trace = 1
Servername = dev04
Database = Dev04
UID = uDev04
PWD = pwdDev04
</code></pre>
<p><code>FreeTDS</code> is installed in odbcinst.ini and it points to this configuration in <code>freetds.conf</code>:</p>
<pre><code>[dev04]
host = hm602.mycompany.com
port = 1433
tds version = 7.0
</code></pre>
<p>This works:</p>
<pre><code>carlos$ tsql -S dev04 -U uDev04 -P pwdDev04
locale is "en_GB.UTF-8"
locale charset is "UTF-8"
1> exit
carlos$
</code></pre>
<p>And so does this:</p>
<pre><code>carlos$ iodbctest "DSN=dev04;UID=uDev04;PWD=pwdDev04"
iODBC Demonstration program
This program shows an interactive SQL processor
Driver Manager: 03.52.0406.1211
Driver: 0.82 (libtdsodbc.so)
SQL>exit
Have a nice day.
carlos$
</code></pre>
<p>When I run that Ruby script, though, I get this error:</p>
<pre><code>carlos$ ruby mssql.rb
/Library/Ruby/Gems/1.8/gems/sequel-3.4.0/lib/sequel/adapters/odbc.rb:37:in `initialize': ODBC::Error 01000 (20002) [FreeTDS][SQL Server]Adaptive Server connection failed (Sequel::DatabaseConnectionError)
from /Library/Ruby/Gems/1.8/gems/sequel-3.4.0/lib/sequel/adapters/odbc.rb:37:in `connect'
from /Library/Ruby/Gems/1.8/gems/sequel-3.4.0/lib/sequel/adapters/odbc.rb:37:in `connect'
from /Library/Ruby/Gems/1.8/gems/sequel-3.4.0/lib/sequel/database.rb:92:in `initialize'
...
</code></pre>
<p>I understand the 'Adaptive Server connection failed' error can occur due to TDS protocol version discrepancies. I've checked the logs and they all seem to be using the correct version (7.0), so I'm at a complete loss as to why this could be happening.</p>
<p>Any pointers?</p>
http://stackoverflow.com/questions/88629/how-do-you-do-performance-testing-in-ruby-webapps7How do you do performance testing in Ruby webapps?Carlos Villela2008-09-17T23:19:39Z2009-06-25T20:51:50Z
<p>I've been looking at ways people test their apps in order decide where to do caching or apply some extra engineering effort, and so far httperf and a simple sesslog have been quite helpful.</p>
<p>What tools and tricks did you apply on your projects?</p>
http://stackoverflow.com/questions/318186/whats-the-most-bullet-proof-way-to-upload-large-files-in-a-web-app4What's the most bullet-proof way to upload large files in a web app?Carlos Villela2008-11-25T17:22:17Z2008-12-14T21:26:32Z
<p>We have to accept large file uploads (video content) and want to do that in a way that works well across all standards-compliant browsers and plug-ins. Our current setup looks like this:</p>
<ul>
<li><a href="http://swfupload.org" rel="nofollow">SWFUpload</a></li>
<li>input type="file" for graceful degradation</li>
</ul>
<p>On the server-side, we have <a href="http://nginx.net/" rel="nofollow">nginx</a> and the <a href="http://www.grid.net.ru/nginx/upload.en.html" rel="nofollow">upload module</a> streaming the uploaded files into the server, then handing the requests off to a merb app.</p>
<p>Unfortunately, it looks like the recently released Adobe Flash Player 10 broke every single free/open uploading flash component out there (and then, some other sites which have their own proprietary versions as well), but some other sites, such as <a href="http://flickr.com" rel="nofollow">Flickr</a> and <a href="http://vimeo.com" rel="nofollow">Vimeo</a>, seem to work just fine.</p>
<p>I've been poking around looking for other ways of doing this, but since compatibility with both Flash 9 and 10 is mandatory, I couldn't find a suitable solution. Any ideas?</p>
http://stackoverflow.com/questions/315803/opencvs-python-os-x/320245#3202451Answer by Carlos Villela for OpenCV's Python - OS X Carlos Villela2008-11-26T10:29:09Z2008-11-26T10:29:09Z<p>It seems a little weird that it is warning about different architectures when looking for /Developer/SDKs/MacOSX10.4u.sdk while linking - can you give us some more detail about your build environment (version of XCode, GCC, Python, $PATH etc)</p>
<p>Alternatively, won't any of the OpenCV binaries available work for you?</p>
http://stackoverflow.com/questions/116261/software-for-managing-medium-sized-projects/154555#1545550Answer by Carlos Villela for Software for managing medium sized projectsCarlos Villela2008-09-30T19:26:03Z2008-09-30T19:26:03Z<p>+1 for starting out with a whiteboard, stickies and whatever other office supplies you can think of. Being able to visualize the state of your project in a big visible wall can be <strong>really</strong> useful, more so than software-based tracking, IMHO.</p>
<p>You need to make sure the team is committed to keeping it up-to-date, though.</p>
http://stackoverflow.com/questions/113339/team-size-and-project-iteration-length/154534#1545340Answer by Carlos Villela for Team size and project iteration length.Carlos Villela2008-09-30T19:21:14Z2008-09-30T19:21:14Z<blockquote>
<p>I think that 2 week iterations, whether you deliver to the client or not, are a good goal, as it allows for very good health checks.</p>
</blockquote>
<p>2-week iterations are most comfortable for me and the kinds of projects I usually do, but I disagree that not delivering is a good outcome - the focus needs to stay on the "working software over process" side of things.</p>
<p>I would consider making iterations longer if the product owner / user isn't available, even if only for a showcase every couple weeks, as the same health checks that fast iterations allow on the technical side need to happen on the side of the engagement with the business.</p>
http://stackoverflow.com/questions/151056/how-does-someone-elevate-themselves-from-good-to-great-in-development/151217#1512171Answer by Carlos Villela for How does someone elevate themselves from "good" to "great" in developmentCarlos Villela2008-09-29T23:44:22Z2008-09-29T23:44:22Z<p>Aside from the previous (great) suggestions, one thing to consider is to document your own learnings (as unit tests, little sketches, interactive debugger/prompt sessions etc) and keep them stored somewhere - possibly under version control.</p>
<p>A few months after I've been down this path with Ruby, a friend asked for these snippets, and found them invaluable. Sometimes it's hard to push the language when you don't really know what to look for, so ask some friends who have been through the same learning steps and see if they have some notes!</p>
http://stackoverflow.com/questions/88629/how-do-you-do-performance-testing-in-ruby-webapps/110640#1106400Answer by Carlos Villela for How do you do performance testing in Ruby webapps?Carlos Villela2008-09-21T09:41:41Z2008-09-21T09:41:41Z<p>A colleague of mine has also posted some <a href="http://www.dcmanges.com/blog/rails-performance-tuning-workflow" rel="nofollow">interesting thoughts</a> on this.</p>
http://stackoverflow.com/questions/109666/how-do-you-do-very-quick-and-dirty-estimations-for-coding-tasks/109699#1096991Answer by Carlos Villela for How do you do very quick (and dirty) estimations for coding tasks?Carlos Villela2008-09-20T22:58:26Z2008-09-20T22:58:26Z<p>I've recently been reading <a href="http://rads.stackoverflow.com/amzn/click/0131479415" rel="nofollow">Agile Estimating and Planning</a>, and can't recommend it enough.</p>
http://stackoverflow.com/questions/91617/generating-classes-automatically-from-unit-tests/91665#91665-2Answer by Carlos Villela for Generating classes automatically from unit tests?Carlos Villela2008-09-18T11:09:49Z2008-09-18T11:09:49Z<p>I find that whenever I need a code generation tool like this, I am probably writing code that could be made a little bit more generic so I only need to write it once. In your example, those getters and setters don't seem to be adding any value to the code - in fact, it is really just asserting that the getter/setter mechanism in C# works.</p>
<p>I would refrain from writing (or even using) such a tool before understanding what the motivations for writing these kinds of tests are.</p>
<p>BTW, you might want to have a look at <a href="http://code.google.com/p/nbehave/" rel="nofollow">NBehave</a>?</p>
http://stackoverflow.com/questions/89387/using-merb-for-facebook-application/91096#910963Answer by Carlos Villela for Using Merb for Facebook ApplicationCarlos Villela2008-09-18T09:08:49Z2008-09-18T09:08:49Z<p>We've used merb_facebooker in one of our projects (<a href="http://www.rockthevote.com/" rel="nofollow">Rock the Vote</a>), and it worked out pretty well. Testing Facebook apps is quite annoying, as you don't have control of the middleware, so watch out for your expectations of the FB API and make sure you validate as much of them as possible early in the development stages (not trying out all the things we needed to do with fbML early on brought a few headaches).</p>
http://stackoverflow.com/questions/87999/voice-recognition-software-for-developers/88557#885571Answer by Carlos Villela for Voice Recognition Software For DevelopersCarlos Villela2008-09-17T23:06:48Z2008-09-17T23:06:48Z<p>Another idea is to find another good developer to pair program with. It worked really well for me. I get to rest my hands without necessarily slowing down, end up producing better quality code - or at least not having to review as much of it.</p>
http://stackoverflow.com/questions/88311/how-best-to-generate-a-random-string-in-ruby/88470#884700Answer by Carlos Villela for How best to generate a random string in RubyCarlos Villela2008-09-17T22:48:38Z2008-09-17T22:48:38Z<p>We've been using this on our code:</p>
<pre><code>class String
def self.random(length=10)
('a'..'z').sort_by {rand}[0,length].join
end
end
</code></pre>
<p>The maximum length supported is 25 (we're only using it with the default anyway, so hasn't been a problem).</p>
<p>Someone mentioned that 'a'..'z' is suboptimal if you want to completely avoid generating offensive words. One of the ideas we had was removing vowels, but you still end up with WTFBBQ etc.</p>
http://stackoverflow.com/questions/1401242/connecting-to-ms-sql-server-2005-from-mac-using-ruby-odbc-and-freetds/1407107#1407107Comment by Carlos Villela on Connecting to MS SQL Server 2005 from Mac using Ruby, ODBC and FreeTDSCarlos Villela2009-09-22T15:29:29Z2009-09-22T15:29:29ZI'm using activerecord-sqlserver-adapter 2.2.19 and rails-sqlserver-2000-2005-adapter 2.2.19 (as far as I know, they're the latest versions as of writing this), with Rails 2.3.4.
http://stackoverflow.com/questions/1401242/connecting-to-ms-sql-server-2005-from-mac-using-ruby-odbc-and-freetds/1407107#1407107Comment by Carlos Villela on Connecting to MS SQL Server 2005 from Mac using Ruby, ODBC and FreeTDSCarlos Villela2009-09-11T13:37:35Z2009-09-11T13:37:35ZHi Jeremy! Thanks for taking your time to answer this.
I've tried connecting with the latest ActiveRecord, and apparently this works:
ActiveRecord::Base.establish_connection({
:adapter => 'sqlserver',
:mode => 'odbc',
:dsn => 'Dev04',
:username => 'uDev04',
:password => 'pwdDev04'
})
I'm using activerecord 2.3.4 with rails-sqlserver-2000-2005-adapter 2.2.19, AFAICT. Unfortunately, AR won't help me much (this is a badly evolved legacy schema), and Sequel would do the job perfectly.
I'm keen to help fixing this, but don't know where to start. Ideas?http://stackoverflow.com/questions/465168/whats-your-opinion-about-ioke/465276#465276Comment by Carlos Villela on Whats your opinion about IOKE?Carlos Villela2009-02-06T00:01:05Z2009-02-06T00:01:05ZIoke has (to some extent) ThoughtWorks backing it. And, to be honest, it's waaaaaay too soon to say "Ioke has no community behind it". The language was released less than 2 months ago -- Ruby and Python took years before community was formed around them.http://stackoverflow.com/questions/211118/how-to-build-tagging-support-using-couchdb/312181#312181Comment by Carlos Villela on How to build "Tagging" support using CouchDB? Carlos Villela2008-11-26T10:54:33Z2008-11-26T10:54:33ZIt'll be more efficient if you use a permanent view as suggested by Bahadır.http://stackoverflow.com/questions/318186/whats-the-most-bullet-proof-way-to-upload-large-files-in-a-web-app/318216#318216Comment by Carlos Villela on What's the most bullet-proof way to upload large files in a web app?Carlos Villela2008-11-25T17:42:15Z2008-11-25T17:42:15ZThey seem to in some cases - unfortunately, they don't seem to call the update_progress_handler events on some of the platforms we tested (MacOS X 10.5.5 - Safari 3.x and Firefox 3).
Do you think that would be an unrelated issue?