<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Disqus - Latest Comments for celsodantas</title><link>http://disqus.com/by/celsodantas/</link><description></description><atom:link href="http://disqus.com/celsodantas/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Wed, 20 Jul 2016 09:38:42 -0000</lastBuildDate><item><title>Re: How-To: Drive a 4K display at 60 Hz on the 2016 MacBook</title><link>http://9to5mac.com/2016/06/04/how-to-enable-4k-60hz-resolution-2016-macbook/#comment-2793238514</link><description>&lt;p&gt;so it just doesn't work on the LG 27UD68? What model of Mac do you have (Macbook Pro mid-2013?)?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">celsodantas</dc:creator><pubDate>Wed, 20 Jul 2016 09:38:42 -0000</pubDate></item><item><title>Re: How-To: Drive a 4K display at 60 Hz on the 2016 MacBook</title><link>http://9to5mac.com/2016/06/04/how-to-enable-4k-60hz-resolution-2016-macbook/#comment-2787381764</link><description>&lt;p&gt;I have a MacBook Pro 15" mid-2012 and a LG 27UD68 and this patch didn't work, still running at 30hz. =(  Funny thing is, I can get 4k 60hz if I boot Bootcamp (Windows 10), but not while running El Capitain. I'm using the HDMI cable that came with the monitor. Any thoughts?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">celsodantas</dc:creator><pubDate>Sat, 16 Jul 2016 22:58:22 -0000</pubDate></item><item><title>Re: Celso Dantas - A blog about my studies and findings</title><link>http://www.celsodantas.com/ruby/code/2014/06/07/quaternions-what-and-why.html#comment-1642255665</link><description>&lt;p&gt;You can understand quaternions as a complex number in a 3D world.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">celsodantas</dc:creator><pubDate>Sat, 18 Oct 2014 11:09:36 -0000</pubDate></item><item><title>Re: Bancos, bancos e mais bancos&amp;#8230;</title><link>http://dgmike.com.br/codigos-prontos/bancos-bancos-e-mais-bancos/#comment-333163027</link><description>&lt;p&gt;Parabens pela atitude de disponibilizar tais códigos. &lt;/p&gt;&lt;p&gt;Aproveitei que usei seu código javascript para populas as cidade e estados do Brasil e fiz um seed pra uma aplicação Rails: &lt;a href="https://github.com/celsodantas/city_state_populate--BR" rel="nofollow noopener" target="_blank" title="https://github.com/celsodantas/city_state_populate--BR"&gt;https://github.com/celsodan...&lt;/a&gt;&lt;br&gt;E obrigado pela contribuição!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">celsodantas</dc:creator><pubDate>Wed, 12 Oct 2011 20:53:27 -0000</pubDate></item><item><title>Re: Conectando no MS SQL Server 2005 - Parte 1 - AkitaOnRails.com</title><link>http://akitaonrails.com/2009/03/01/conectando-no-ms-sql-server-2005-parte-1#comment-247212720</link><description>&lt;p&gt;Eu só instalei o FreeTDS, tiny_tds e o activerecord-sqlserver-adapter e coloquei isso no meu database.yml&lt;/p&gt;&lt;p&gt;erp_development:  adapter: sqlserver  mode: dblib  dataserver: 10.211.55.6  database: mydatabase  username: sa  password: root  timeout: 5000&lt;/p&gt;&lt;p&gt;E funcionou. =]&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">celsodantas</dc:creator><pubDate>Sun, 10 Jul 2011 11:22:31 -0000</pubDate></item><item><title>Re: ActiveRecord::Base.create_or_update on Steroids - Intridea Company Blog</title><link>http://www.intridea.com/2008/2/19/activerecord-base-create_or_update-on-steroids-2?blog=company#comment-17462307</link><description>&lt;p&gt;Me again:&lt;/p&gt;&lt;p&gt;This is the server message:&lt;br&gt;SystemStackError (stack level too deep):&lt;br&gt;  app/controllers/application_controller.rb:27:in `method_missing_without_create_or_update'&lt;br&gt;  app/controllers/application_controller.rb:31:in `method_missing_without_create_or_update'&lt;br&gt;  app/controllers/application_controller.rb:31:in `method_missing'&lt;br&gt;  app/controllers/application_controller.rb:43:in `authenticate'&lt;br&gt;  app/controllers/application_controller.rb:42:in `authenticate'&lt;br&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">celsodantas</dc:creator><pubDate>Sat, 26 Sep 2009 18:03:23 -0000</pubDate></item><item><title>Re: ActiveRecord::Base.create_or_update on Steroids - Intridea Company Blog</title><link>http://www.intridea.com/2008/2/19/activerecord-base-create_or_update-on-steroids-2?blog=company#comment-17461911</link><description>&lt;p&gt;I included this in the ApplicationController and didn't worked. I mean, the server was complaining about the Stack been too long. &lt;br&gt;I'm using:&lt;/p&gt;&lt;p&gt;  authenticate_or_request_with_http_digest(realm) do |username|&lt;br&gt;    User.find_by_username(username).try(:password_check)&lt;br&gt;  end&lt;/p&gt;&lt;p&gt;And something is conflicting. Has to delete the last past:&lt;/p&gt;&lt;p&gt;"def method_missing_with_create_or_update(method_name, *args)  &lt;br&gt;    if match = method_name.to_s.match(/create_or_update_by_([a-z0-9_]+)/)  &lt;br&gt;      field = match[1].to_sym  &lt;br&gt;      create_or_update_by(field,*args)  &lt;br&gt;    else  &lt;br&gt;      method_missing_without_create_or_update(method_name, *args)  &lt;br&gt;    end  &lt;br&gt;  end&lt;/p&gt;&lt;p&gt;  alias_method_chain :method_missing, :create_or_update "&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">celsodantas</dc:creator><pubDate>Sat, 26 Sep 2009 18:01:29 -0000</pubDate></item></channel></rss>