User kolrie - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T20:37:03Zhttp://stackoverflow.com/feeds/user/14540http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/238746/how-to-share-domain-objects-on-grails-with-ext-gwt-gxt2How to share Domain objects on Grails with Ext GWT (GXT)?kolrie2008-10-26T22:50:00Z2009-12-02T18:33:23Z
<p>Hi,</p>
<p>My application is logically divided into server, which contain my Grails domain objects and controllers; and client, where I have my Ext GWT classes that build all the UI pages.</p>
<p>For UI requests, I am using an AJAX call to a controller method that returns, for instance, a list of domain objects as a JSON structure.</p>
<p>Following the DRY principle, I wouldn't like to "serialize" the domain data to a JSON string on the server then de-serialize it on the client to another structure - I'd like to take advantage of the Domain object I already have, this I don't have to change multiple places when I add, change or remove a new field.</p>
<p>Question is: is that a good way to go? </p>
<p>If yes, how would be the best way to make .groovy domain objects available on the "client-side" Ext GWT Java classes?</p>
<p>If no, why is it bad and what would you advice instead?</p>
http://stackoverflow.com/questions/1805906/c-c-library-for-https-client-with-basic-authentication0C / C++ Library for HTTPS Client with Basic Authenticationkolrie2009-11-26T22:18:27Z2009-11-26T22:30:23Z
<p>Do you recommend any good library or examples online for implementing an HTTPS client that can connect to a website using basic authentication? This is meant to run in linux servers.</p>
<p>Any pointers help.</p>
<p><strong>Update:</strong> Question about the unanimous libcurl - does it come bundled by default in major distributions like Debian, Ubuntu, Gentoo, Slackware, RedHat and Arch?</p>
http://stackoverflow.com/questions/1618238/what-are-the-differences-between-running-an-executable-straight-from-the-command1What are the differences between running an executable straight from the command line and from a cron job in Linux?kolrie2009-10-24T15:15:04Z2009-10-24T20:32:23Z
<p>I have this executable that queries a remote server for a command, executes it on the local machine and returns the stdout (and also possibly stderr) from it back to the server.</p>
<p>This executable runs just fine if called from the command line (as root), but I found it's failing for some commands when executed automatically by the cron job.</p>
<p>What are the differences in terms of environment (users, stdin, stdout, etc.) I should expect when scheduling this executable to run periodically using crontab?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/758757/rails-notification-message-plugin4Rails Notification Message plugin?kolrie2009-04-17T02:23:54Z2009-10-09T16:21:15Z
<p>I am about to code something for a Rails app of mine and didn't want to reinvent the wheel, hence my question:</p>
<p>Do you guys know any Rails Plugin that would allow an application to display notification messages that could be user specific and also allow the user to mark them as "don't show this again"?</p>
<p>My vision is to display a top div (like the one StackOverflow added recently), in different color with the message "title" and that would be clickable. Once clicked, it would pop up the entire message and then allow the user to mark it to prevent it to be shown again.</p>
<p>Is there anything like that out there? :-)</p>
<p>I found so far this two plugins:</p>
<ul>
<li><a href="http://github.com/jstewart/system%5Fmessages/tree/master" rel="nofollow">http://github.com/jstewart/system_messages/tree/master</a></li>
<li><a href="http://github.com/arya/site%5Fnotifications/tree/master" rel="nofollow">http://github.com/arya/site_notifications/tree/master</a></li>
</ul>
<p>But those are rather incomplete parts of my vision</p>
<p>-- Felipe.</p>
http://stackoverflow.com/questions/1424948/c-console-progress-indicator2C++ Console Progress Indicatorkolrie2009-09-15T03:18:27Z2009-10-01T15:44:11Z
<p>What would be an easy way of implementing a console-based progress indicator for a task that's being executed, but I can't anticipate how much time it would take?</p>
<p>I used to do this back when I coded in Clipper, and it was only a matter of iterating through the chars '/', '-', '\', '|' and positioning them in the same place.</p>
<p>Any way / links / libs for doing that (or something similar) in C++?</p>
<p>The target for this is *nix environments.</p>
<p><strong>Edits:</strong> </p>
<ul>
<li>changed the title to be more coherent and generic;</li>
<li>added target environment.</li>
</ul>
http://stackoverflow.com/questions/1474686/git-replaced-all-of-my-lf-with-crlf-how-do-i-fix-this/1474781#14747813Answer by kolrie for Git replaced all of my LF with CRLF - How do I fix this?kolrie2009-09-25T00:02:08Z2009-09-25T00:02:08Z<p>You likely have the <code>core.autocrlf</code> attribute set to true</p>
<p>It's a configuration attribute you can set:</p>
<p><a href="http://www.kernel.org/pub/software/scm/git/docs/gitattributes.html#%5Fchecking%5Fout%5Fand%5Fchecking%5Fin" rel="nofollow">http://www.kernel.org/pub/software/scm/git/docs/gitattributes.html#%5Fchecking%5Fout%5Fand%5Fchecking%5Fin</a></p>
<p>To make sure that is set to false for all Git projects you can do:</p>
<pre><code>git config --global core.autocrlf false
</code></pre>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/251418/who-are-good-web-hosts-for-ruby-on-rails-projects/1469133#14691330Answer by kolrie for Who are good web hosts for Ruby on Rails projects?kolrie2009-09-23T23:56:56Z2009-09-24T00:26:51Z<p>Here is a screencast that gives you <a href="http://www.webbynode.com/screencasts/webbynode-sixreasons.mov" rel="nofollow">Six reasons to use Webbynode</a>.</p>
<p>If you want a more in-depth walkthrough, highlighting and explaining each separate unique features, check this one: <a href="http://webbynode.com/railsgithubrpm" rel="nofollow">http://webbynode.com/railsgithubrpm</a>.</p>
http://stackoverflow.com/questions/1418965/c-executable-distribution-strategy1C++ Executable distribution strategykolrie2009-09-13T22:04:19Z2009-09-23T10:09:09Z
<p>Recently I have asked a question about what I should use to <a href="http://stackoverflow.com/questions/1416339/linux-stand-alone-executable-generation">create self-contained executables that would be deployed under a number of Linux distribution</a>. I got very scared at first, but after reading about C++ a little, I managed to get the first version of my executable going.</p>
<p>After a day full of joy, I just hit the wall again with another dilemma. The resulting executable must be installed in a number of Linux distributions (Slackware, Arch, Ubuntu, Debian, CentOS and a few more), and I am completely clueless on how to achieve it. All I know CentOS and Debian-based OSes has package managers, like apt or yum, but I am not sure those apply to my case.</p>
<p>The code I wrote depends on a couple of libraries (more specifically <a href="http://rudeserver.com/socket/install.html" rel="nofollow">RudeSocket</a> and <a href="http://code.google.com/p/yaml-cpp/" rel="nofollow">yaml-cpp</a>. I have been told that I would be able to compile the executable and link it dynamically, so I just needed to distribute the executable.</p>
<p>It happens that I could not find the .a file for the yaml-cpp library (just for RudeSocket). And here's my problem so far:</p>
<p>At first, I went with dynamic linking but (obviously) when I copied the executable to another box:</p>
<pre><code>$ ./main
./main: error while loading shared libraries: libyaml-cpp.so.0.2: cannot open shared object file: No such file or directory
</code></pre>
<p>When trying to compile it statically, I get an error too (because I don't have the yaml-cpp .a file as I mentioned):</p>
<pre><code>$ g++ main.cpp parse.cpp parse.h rudesocket-1.3.0/.libs/librudesocket.a -o main -static -L/usr/local/librudesocket-1.3.0/.libs/librudesocket.a(socket_connect_normal.o): In function `rude::sckt::Socket_Connect_Normal::simpleConnect(int&, char const*, int)':
/root/webbyget/sockets/rudesocket-1.3.0/src/socket_connect_normal.cpp:250: warning: Using 'gethostbyname' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
/tmp/cc3cEVK1.o: In function `operator>>(YAML::Node const&, Job&)':
parse.cpp:(.text+0x1a83): undefined reference to `YAML::Node::size() const'
/tmp/cc3cEVK1.o: In function `handle_job(rude::Socket, char const*)':
parse.cpp:(.text+0x1b79): undefined reference to `YAML::Parser::Parser(std::basic_istream<char, std::char_traits<char> >&)'
parse.cpp:(.text+0x1bfd): undefined reference to `YAML::Node::Node()'
parse.cpp:(.text+0x1c10): undefined reference to `YAML::Parser::GetNextDocument(YAML::Node&)'
parse.cpp:(.text+0x1dc6): undefined reference to `YAML::Node::size() const'
parse.cpp:(.text+0x1dee): undefined reference to `YAML::Node::~Node()'
parse.cpp:(.text+0x1e18): undefined reference to `YAML::Node::~Node()'
parse.cpp:(.text+0x1e37): undefined reference to `YAML::Parser::~Parser()'
parse.cpp:(.text+0x1e61): undefined reference to `YAML::Parser::~Parser()'
(...)
</code></pre>
<p>It's pretty obvious to me that g++ cannot compile it statically without telling it where to find the classes for yaml-cpp.</p>
<p>It is very important that the installation should happen without human interaction, in an automated fashion. </p>
<p>So my question is really twofold: </p>
<ul>
<li><p>how can I distribute this compiled program in the least complex way targeting all those distributions?</p></li>
<li><p>is there any de facto standard solution for this kind of problem?</p></li>
</ul>
<p>Thank you in advance,</p>
<p>Felipe.</p>
http://stackoverflow.com/questions/1416339/linux-stand-alone-executable-generation1Linux stand alone executable generationkolrie2009-09-12T22:42:20Z2009-09-13T04:15:12Z
<p>Hi, I am a programmer with strong background in Java, Ruby, Python and other high level/dynamic languages. I am facing a problem where I need to code a Linux executable (for 64 and possibly 32-bit OSes too) and none of this languages appear to suit this task, because I end up having to distribute a runtime as well.</p>
<p>I really can't write decent C code, so I'd like to ask for advise on a good high level language that supports sockets communications and process spawning that would produce either C intermediate code or standalone Linux executables.</p>
http://stackoverflow.com/questions/1374096/inserting-an-invalid-activerecord-date-to-a-mysql-database1Inserting an invalid ActiveRecord date to a MySQL databasekolrie2009-09-03T15:22:23Z2009-09-05T11:54:34Z
<p>MySQL allows the value of "0000-00-00" for date fields, however ActiveRecords treats an assignment to a Date value with that string as being nil.</p>
<p>I have a legacy application that relies on that exact field content for the notion of "Never", so if the customer last payment date is "0000-00-00" it acknowledges as being "Never" paid.</p>
<p>Is there a way I can override ActiveRecord (correct) validation for this date field and write this value to the database without getting my hands (too) dirty?</p>
<p>Thanks for any insight.</p>
http://stackoverflow.com/questions/1374096/inserting-an-invalid-activerecord-date-to-a-mysql-database/1374292#13742921Answer by kolrie for Inserting an invalid ActiveRecord date to a MySQL databasekolrie2009-09-03T15:52:03Z2009-09-03T15:52:03Z<p>I hate answering my own questions, but after a little more research about AR code itself, I came up with this solution:</p>
<pre><code>class CustomerInfo < BillingDatabase
belongs_to :customer
alias_method :old_read_attribute, :read_attribute
def read_attribute(attr_name)
if attr_name == "lastpaid" and old_read_attribute(attr_name).blank?
"0000-00-00"
else
old_read_attribute(attr_name)
end
end
end
</code></pre>
<p>I will leave this question open in case someone has a better approach or want to comment on possible flaws.</p>
http://stackoverflow.com/questions/218113/logging-preparedstatements-in-java4Logging PreparedStatements in Javakolrie2008-10-20T11:34:54Z2009-06-19T17:01:35Z
<p>One thing that always been a pain is to log SQL (JDBC) errors when you have a PreparedStatement instead of the query itself.</p>
<p>You always end up with messages like:</p>
<pre><code>2008-10-20 09:19:48,114 ERROR LoggingQueueConsumer-52 [Logger.error:168] Error
executing SQL: [INSERT INTO private_rooms_bans (room_id, name, user_id, msisdn,
nickname) VALUES (?, ?, ?, ?, ?) ON DUPLICATE KEY UPDATE room_id = ?, name = ?,
user_id = ?, msisdn = ?, nickname = ?]
</code></pre>
<p>Of course I could write a helper method for retrieving the values and parsing/substitute the question marks with real values (and probably will go down that path if I don't get an outcome of this question), but I just wanted to know if this problem was resolved before by someone else and/or if is there any generic logging helper that would do that automagically for me.</p>
<p><strong>Edited after a few answers:</strong></p>
<p>The libraries provided so far seems to be suitable to logging the statements for debugging, which no doubt is useful. However, I am looking to a way of taking a PreparedStatement itself (not some subclass) and logging its SQL statement whenever an error occur. I wouldn't like to deploy a production app with an alternate implementation of PreparedStatement. </p>
<p>I guess what I am looking for an utility class, not a PreparedStatement specialization.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/603828/java-5-to-java-1-4-source-code-backporting-tool4Java 5 to Java 1.4 Source Code Backporting Toolkolrie2009-03-02T20:16:21Z2009-06-18T21:32:25Z
<p>Is there a tool that, given a Java 5 level source code, will backport it to Java 1.4-compliant source code, by removing Generics declarations, transforming for eachs in simple fors or iteration fors, etc.?</p>
<p>Please note that I am looking for a tool that translates source code to source code, not class binaries.</p>
http://stackoverflow.com/questions/830700/problem-caching-model-instances-on-a-constant-in-rails1Problem caching Model instances on a constant in Railskolrie2009-05-06T17:08:43Z2009-05-07T01:30:16Z
<p>I am using Single-Table Inheritance (STI) on one of my models for a Rails App and I am having problems storing model objects on a constant. I have isolated the problem into a sample project and submitted it to GitHub: <a href="http://github.com/fcoury/rails-sti-caching" rel="nofollow">http://github.com/fcoury/rails-sti-caching</a></p>
<p>What I am trying to do is loading a model instance (in this case a Music model, that inherits from the Media model via STI) on an initializer (in Rails' <code>/config/initializers/</code> directory) and keep it on a constant:</p>
<pre><code>MUSIC_CACHE = Hash.new
Music.all.each { |m| MUSIC_CACHE[m.id] = m }
</code></pre>
<p>And I have a sample controller that does the following:</p>
<pre><code>class MusicsController < ApplicationController
def index
require 'pp'
pp MUSIC_CACHE
@debug = []
MUSIC_CACHE.each_pair do |k, v|
music = Music.find(k)
d "Object for Music.find(#{k}) => class: #{music.class} - class obj_id: #{music.class.object_id} - #{music.inspect}"
d "Object for MUSIC_CACHE[#{k}] => class: #{v.class} - class obj_id: #{v.class.object_id} - #{v.inspect}"
begin
d " - Music.is_a?(Media) => #{v.is_a?(Media)}"
d " - Try to call name => #{v.name}"
rescue
d "*** Error raised:\n#{$!}"
end
end
@musics = Music.all
end
def d(s)
puts s
@debug << s
end
end
</code></pre>
<p>And a view to go with it:</p>
<pre><code><h1 id="music">Music</h1>
<ul>
<% for m in @musics %>
<li><%= m.name %> - <%= m.file %></li>
<% end %>
</ul>
<pre><%=h @debug.join("\n") %></pre>
</code></pre>
<p>The first time this code runs, the output on the <code><pre></code> tag is this:</p>
<pre><code> Object for Music.find(2) => class: Music - class obj_id: 13067420 - #<Music id: 2, name: "5th Symphony", file: "5s.mp3", type: "Music", created_at: "2009-05-06 16:31:41", updated_at: "2009-05-06 16:31:41">
Object for MUSIC_CACHE[2] => class: Music - class obj_id: 13067420 - #<Music id: 2, name: "5th Symphony", file: "5s.mp3", type: "Music", created_at: "2009-05-06 16:31:41", updated_at: "2009-05-06 16:31:41">
- Music.is_a?(Media) => true
- Try to call name => 5th Symphony
</code></pre>
<p>However, if I just reload the page, here's what gets outputted:</p>
<pre><code>Object for Music.find(2) => class: Music - class obj_id: 18452280 - #<Music id: 2, name: "5th Symphony", file: "5s.mp3", type: "Music", created_at: "2009-05-06 16:31:41", updated_at: "2009-05-06 16:31:41">
Object for MUSIC_CACHE[2] => class: Music - class obj_id: 13067420 - #<Music id: 2, name: "5th Symphony", file: "5s.mp3", type: "Music", created_at: "2009-05-06 16:31:41", updated_at: "2009-05-06 16:31:41">
- Music.is_a?(Media) => false
*** Error raised:
You have a nil object when you didn't expect it!
You might have expected an instance of Array.
The error occurred while evaluating nil.include?
</code></pre>
<p>Does anyone know the rationale behind this error?</p>
http://stackoverflow.com/questions/731113/blocking-access-for-a-given-geographic-location1Blocking access for a given geographic locationkolrie2009-04-08T17:59:43Z2009-04-09T08:02:41Z
<p>What is the most reliable way to prevent users from a geographic location to access a web available application?</p>
<p>I understand that IPs are related to geo positioning and I also understand that the most naive way is to get the HTTP request header IP address and take it from there.</p>
<p>It's obvious that naive methods, like the one described are extremely easy to bypass, specially using Proxies or VPNs.</p>
<p>So the question is: is there a 100% reliable way of determining a web user geo location? If not, what are the available options and what are the pros and cons on each of them?</p>
http://stackoverflow.com/questions/144339/what-would-the-best-tool-to-create-a-natural-dsl-in-java4What would the best tool to create a natural DSL in Java?kolrie2008-09-27T19:56:12Z2009-03-25T11:07:05Z
<p>A couple of days ago, I read a blog entry (<a href="http://ayende.com/Blog/archive/2008/09/08/Implementing-generic-natural-language-DSL.aspx" rel="nofollow">http://ayende.com/Blog/archive/2008/09/08/Implementing-generic-natural-language-DSL.aspx</a>) where the author discuss the idea of a generic natural language DSL parser using .NET.</p>
<p>The brilliant part of his idea, in my opinion, is that the text is parsed and matched against classes using the same name as the sentences. </p>
<p>Taking as an example, the following lines:</p>
<pre>
Create user user1 with email test@email.com and password test
Log user1 in
Take user1 to category t-shirts
Make user1 add item Flower T-Shirt to cart
Take user1 to checkout
</pre>
<p>Would get converted using a collection of "known" objects, that takes the result of parsing. Some example objects would be (using Java for my example):</p>
<pre><code>public class CreateUser {
private final String user;
private String email;
private String password;
public CreateUser(String user) {
this.user = user;
}
public void withEmail(String email) {
this.email = email;
}
public String andPassword(String password) {
this.password = password;
}
}
</code></pre>
<p>So, when processing the first sentence, CreateUser class would be a match (obviously because it's a concatenation of "create user") and, since it takes a parameter on the constructor, the parser would take "user1" as being the user parameter. </p>
<p>After that, the parser would identify that the next part, "with email" also matches a method name, and since that method takes a parameter, it would parse "test@email.com" as being the email parameter. </p>
<p>I think you get the idea by now, right? One quite clear application of that, at least for me, would be to allow application testers create "testing scripts" in natural language and then parse the sentences into classes that uses JUnit to check for app behaviors.</p>
<p>I'd like to hear ideas, tips and opinions on tools or resource that could code such parser using Java. Better yet if we could avoid using complex lexers, or frameworks like ANTLR, which I think maybe would be using a hammer to kill a fly.</p>
<p>More than that, if anyone is up to start an open source project for that, I would definitely be interested.</p>
http://stackoverflow.com/questions/675380/mimic-aesencrypt-and-aesdecrypt-functions-in-ruby2Mimic AES_ENCRYPT and AES_DECRYPT functions in Rubykolrie2009-03-23T21:51:39Z2009-03-24T15:06:01Z
<p>Hello there!</p>
<p>I need to mimic what MySQL does when encrypting and decrypting strings using built-in functions AES_ENCRYPT() and AES_DECRYPT().</p>
<p>I have read a couple of blog posts and apparently MySQL uses AES 128-bit encryption for those functions. On top of that, since this encryption requires a 16-bit key, MySQL pads the string with x0 chars (\0s) until it's 16-bit in size.</p>
<p>The algorithm in C from MySQL source code is spotted <a href="http://gtowey.blogspot.com/2009/01/mysql-aes-encryption-compatability.html" rel="nofollow">here</a>.</p>
<p>Now I need to replicate what MySQL does in a Rails application, but every single thing I tried, doesn't work. </p>
<p>Here's a way to replicate the behavior I am getting:</p>
<p>1) Create a new Rails app</p>
<pre><code>rails encryption-test
cd encryption-test
</code></pre>
<p>2) Create a new scaffolding</p>
<pre><code>script/generate scaffold user name:string password:binary
</code></pre>
<p>3) Edit your config/database.yml and add a test MySQL database</p>
<pre><code>development:
adapter: mysql
host: localhost
database: test
user: <<user>>
password: <<password>>
</code></pre>
<p>4) Run the migration</p>
<pre><code>rake db:migrate
</code></pre>
<p>5) Enter console, create an user and update its password from MySQL query</p>
<pre><code>script/console
Loading development environment (Rails 2.2.2)
>> User.create(:name => "John Doe")
>> key = "82pjd12398JKBSDIGUSisahdoahOUASDHsdapdjqwjeASIduAsdh078asdASD087asdADSsdjhA7809asdajhADSs"
>> ActiveRecord::Base.connection.execute("UPDATE users SET password = AES_ENCRYPT('password', '#{key}') WHERE name='John Doe'")
</code></pre>
<p>That's where I got stuck. If I attempt to decrypt it, using MySQL it works:</p>
<pre><code>>> loaded_user = User.find_by_sql("SELECT AES_DECRYPT(password, '#{key}') AS password FROM users WHERE id=1").first
>> loaded_user['password']
=> "password"
</code></pre>
<p>However if I attempt to use OpenSSL library, there's no way I can make it work:</p>
<pre><code>cipher = OpenSSL::Cipher::Cipher.new("AES-128-ECB")
cipher.padding = 0
cipher.key = key
cipher.decrypt
user = User.find(1)
cipher.update(user.password) << cipher.final #=> "########gf####\027\227"
</code></pre>
<p>I have tried padding the key:</p>
<pre><code>desired_length = 16 * ((key.length / 16) + 1)
padded_key = key + "\0" * (desired_length - key.length)
cipher = OpenSSL::Cipher::Cipher.new("AES-128-ECB")
cipher.key = key
cipher.decrypt
user = User.find(1)
cipher.update(user.password) << cipher.final #=> ""|\e\261\205:\032s\273\242\030\261\272P##"
</code></pre>
<p>But it really doesn't work.</p>
<p>Does anyone have a clue on how can I mimic the MySQL AES_ENCRYPT() and AES_DECRYPT() functions behavior in Ruby?</p>
<p>Thanks! </p>
http://stackoverflow.com/questions/675380/mimic-aesencrypt-and-aesdecrypt-functions-in-ruby/677452#6774523Answer by kolrie for Mimic AES_ENCRYPT and AES_DECRYPT functions in Rubykolrie2009-03-24T13:41:47Z2009-03-24T15:06:01Z<p>For future reference:</p>
<p>According to the blog post I sent before, here's how MySQL works with
the key you provide AES_ENCRYPT / DECRYPT:</p>
<blockquote>
<p>"The algorithm just creates a 16 byte
buffer set to all zero, then loops
through all the characters of the
string you provide and does an
assignment with bitwise OR between the
two values. If we iterate until we
hit the end of the 16 byte buffer, we
just start over from the beginning
doing ^=. For strings shorter than 16
characters, we stop at the end of the
string."</p>
</blockquote>
<p>I don't know if you can read C, but here's the mentioned snippet:</p>
<p><a href="http://pastie.org/425161" rel="nofollow">http://pastie.org/425161</a></p>
<p>Specially this part:</p>
<pre><code>bzero((char*) rkey,AES_KEY_LENGTH/8); /* Set initial key */
for (ptr= rkey, sptr= key; sptr < key_end; ptr++,sptr++)
{
if (ptr == rkey_end)
ptr= rkey; /* Just loop over tmp_key until we used all key */
*ptr^= (uint8) *sptr;
}
</code></pre>
<p>So I came up with this method (with a help from Rob Biedenharn, from ruby forum):</p>
<pre><code>def mysql_key(key)
final_key = "\0" * 16
key.length.times do |i|
final_key[i%16] ^= key[i]
end
final_key
end
</code></pre>
<p>That, given a string returns the key MySQL uses when encrypting and decrypting. So all you need now is:</p>
<pre><code>def aes(m,k,t)
(aes = OpenSSL::Cipher::AES128.new("ECB").send(m)).key = k
aes.update(t) << aes.final
end
def encrypt(key, text)
aes(:encrypt, key, text)
end
def decrypt(key, text)
aes(:decrypt, key, text)
end
</code></pre>
<p>To use openssl lib, built into ruby, and then you can make the two "final" methods:</p>
<pre><code>def mysql_encrypt(s, key)
encrypt(mysql_key(key), s)
end
def mysql_decrypt(s, key)
decrypt(mysql_key(key), s)
end
</code></pre>
<p>And you're set! Also, complete code can be found in this Gist:</p>
<p><a href="http://gist.github.com/84093" rel="nofollow">http://gist.github.com/84093</a></p>
<p>:-)</p>
http://stackoverflow.com/questions/584575/problems-on-select-module-on-python-2-51Problems on select module on Python 2.5kolrie2009-02-25T03:12:49Z2009-03-06T22:07:01Z
<p>I have an application in Python 2.5 that listens to a beanstalk queue. It works fine on all machines I tested so far, except from my newly acquired MacBook Pro. </p>
<p>On that computer, when I try to run it I get this error:</p>
<pre><code>Traceback (most recent call last):
File "jobs.py", line 181, in <module>
Jobs().start()
File "jobs.py", line 154, in start
self.jobQueue = Queue()
File "src/utils/queue.py", line 16, in __init__
self.connection = serverconn.ServerConn(self.server, self.port)
File "src/beanstalk/serverconn.py", line 25, in __init__
self.poller = select.poll()
AttributeError: 'module' object has no attribute 'poll'
</code></pre>
<p>The serverconn.py has the following imports:</p>
<pre><code>import socket, select
</code></pre>
<p>And when I try to run it from command line, it fails as well:</p>
<pre><code>Python 2.5.1 (r251:54863, Jul 23 2008, 11:00:16)
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import select
>>> select.poll()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'poll'
</code></pre>
<p>Do you have any idea on what can be happening?</p>
<p>PS: Even though I am pretty confident it's not a source problem, if you need some background on the source that's failing, it's available at http://pastie.org/399342.</p>
<p><em>Updated:</em> since the first answer I got speculates whether select.poll() is or not supported on Mac OS, but I have an iMac too and with the exact same OS version and it works fine:</p>
<pre><code>2009-02-25 00:27:10,067 - Queue - DEBUG - Connecting to BeansTalk daemon @ localhost:11300
</code></pre>
http://stackoverflow.com/questions/609405/what-would-be-the-light-way-to-render-a-jsp-page-without-an-app-web-server0What would be the light way to render a JSP page without an App/Web Serverkolrie2009-03-04T06:08:54Z2009-03-04T11:00:45Z
<p><strong>First, some background:</strong></p>
<p>I will have to work on code for a JSP that will demand a lot of code fixing and testing. This JSP will receive a structure of given objects, and render it according to a couple of rules.</p>
<p>What I would like to do, is to write a "Test Server" that would read some mock data out of a fixtures file, and mock those objects into a factory that would be used by the JSP in question.</p>
<p>The target App Server is WebSphere and I would like to code, change, code in order to test appropriate HTML rendering. I have done something similar on the past, but the JSP part was just calling a method on a rendering object, so I created an Ad Hoc HTTP server that would read the fixture files, parse it and render HTML.</p>
<p>All I had to do was run it inside RAD, change the HTML code and hit F5.</p>
<p><strong>So question pretty much goes down to:</strong> Is there any stand alone library or lightweight server (I thought of Jetty) that would take a JSP, and given the correct contexts (Request, Response, Session, etc.) render the proper HTML?</p>
http://stackoverflow.com/questions/477092/how-to-dry-on-crud-parts-of-my-rails-app1How to DRY on CRUD parts of my Rails app?kolrie2009-01-25T02:56:23Z2009-01-26T09:52:26Z
<p>I am writing an app which - similarly to many apps out there - is 90% regular CRUD things and 10% "juice", where we need nasty business logic and more flexibility and customization.</p>
<p>Regarding this 90%, I was trying to stick to the DRY principle as much as I can. As long as controllers go, I have found resource_controller to really work, and I could get rid of all the controllers on that area, replacing them with a generic one.</p>
<p>Now I'd like to know how to get the same with the views. On this app I have an overall, application.html.erb layout and then I must have another layout layer, common for all CRUD views and finally a "core" part:</p>
<ul>
<li><p>On index.html.erb all I need to generate a simple table with the fields and labels I indicate. </p></li>
<li><p>For new and edit, also generic form edition, indicating labels and fields (with a possibility of providing custom fields if needed).</p></li>
<li><p>I am not sure I will need show, but if I do it would be the same as new and edit.</p></li>
</ul>
<p>What plugins and tools (or even articles and general pointer) would help me to get that done?</p>
<p>Thanks,
Felipe.</p>
http://stackoverflow.com/questions/405509/hiding-implementation-details-on-an-email-templating-system-written-in-python0Hiding implementation details on an email templating system written in Pythonkolrie2009-01-01T21:34:26Z2009-01-05T01:10:35Z
<p>I am writing an application where one of the features is to allow the user to write an email template using Markdown syntax.</p>
<p>Besides formatting, the user must be able to use placeholders for a couple of variables that would get replaced at runtime. </p>
<p>The way this is currently working is very simple: the templates have the Pythonic %(var)s placeholders and I replace those with a dictionary before applying Markdown2 formatting.</p>
<p>Turns out that the end user of this system will be a tech-savvy user and I wouldn't like to make it obvious to everyone that it's written in Python. </p>
<p>It's not that I don't like Python... I actually think Python is the perfect tool for the job, I just don't want to expose that to the user (would like the same even if it were written in Java, Perl, Ruby or anything else).</p>
<p>So I'd like to ask for insights on what would be, in your opinion, the best way to expose placeholders for the users:</p>
<ol>
<li><p>What do you think is the best placeholder format (thinks like ${var}, $(var) or #{var})?</p></li>
<li><p>What would be the best way to replace those placeholders?</p></li>
</ol>
<p>I though of using a Regular Expression to change - for instance - ${var} into %(var)s and then applying the regular Python templating substitution, but I am not sure that's the best approach.</p>
<p>If you go that way, it would be very nice if you could indicate me what is a draft of that regular expression as well.</p>
<p>Thanks!</p>
<p><strong>Update</strong>: An user pointed out using full-blown templating systems, but I think that may not be worth it, since all I need is placeholders substitution: I won't have loops or anything like that.</p>
<p><strong>Final Update</strong>: I have chosen not to use any template engines at this time. I chose to go with the simpler string.Template approach (as pointed out on a comment by <a href="http://stackoverflow.com/users/49032/hyperboreean">hyperboreean</a>). Truth is that I don't like to pick a solution because sometime in the future there may be a need. I will keep all those suggestions on my sleeve, and if on the lifespan of the application there is a clear need for one or more features offered by them, I'll revisit the idea. Right now, I really think it's an overkill. Having full blown templates that <strong>the end user</strong> can edit as he wants is, at least on my point of view, more trouble than benefit. Nevertheless, it feels much nicer being aware of the reasons I did not went down that path, than just not researching anything and choosing it. </p>
<p>Thanks a lot for all the input.</p>
http://stackoverflow.com/questions/215942/did-any-of-the-apps-you-worked-on-had-a-famous-error-message-among-the-user-bas0Did any of the apps you worked on had a "famous error message" among the user base?kolrie2008-10-19T03:11:26Z2009-01-02T12:48:42Z
<p>I remember one of the first applications I worked with, at the beginning of my career was built using Clipper (for those who have not been on the area for long, here's <a href="http://en.wikipedia.org/wiki/Clipper_programming_language" rel="nofollow">a pointer to the Clipper language</a>, pretty cutting-edge at the time :) ). </p>
<p>Clipper used the same database architecture as dBase did, and databases were stored on regular files on the file system, and for each index you would need an accompanying file, those were the .DBF (database file) and the .NTX (the index file). </p>
<p>Every once in a while the database file and the index lost sync. That could happen for a couple of reasons, one of them being forgetting to open one of all the indexes for a given table (represented by a single file).</p>
<p>When that situation happened, the user was presented with a red screen with yellow text saying: "Corruption Detected". Imagine the user of a financial software presented with the corruption detected message, with a red background :-) Some calls we got at the time were pretty fun.</p>
<p>For another product I worked on, a SMS game that resembles a Tamagochi, where the user interacts with others by taking actions, like dating, going to the gym, going to the club and so on... I remember that when we had an exception in Java (the backend), we just replied with a generic message: "Ok, you got it! What do you want to do now?". For the user, it seemed the game understood his last action, but we obviously had some processing problems.</p>
<p>So, on the mobile operators, most of the users who did UAT for the product would call us and say: "When I attempt to chat with someone else, I am getting that 'Ok, you got it' message" :-)</p>
<p>Now it's your turn: do you remember any known error message among the applications you worked on? </p>
http://stackoverflow.com/questions/368587/sending-html-emails-that-renders-correctly-in-notes-71Sending HTML emails that renders correctly in Notes 7kolrie2008-12-15T14:47:53Z2008-12-15T15:23:19Z
<p>Does anyone here has any experience on how to send HTML emails that renders correctly on a Lotus Notes Client 7?</p>
<p>My email has a couple of complex CSS files and I tried embedding them on <style> tags, but it doesn't seem to work. The thing is that the email renders perfectly in version 8 and on other email clients.</p>
<p>Any hints or pointers?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/314085/custom-rails-authentication-authorization1Custom Rails authentication / authorizationkolrie2008-11-24T13:04:13Z2008-11-25T05:13:57Z
<p>I know questions of this kind <a href="http://stackoverflow.com/questions/24298/best-solution-for-authentication-in-ruby-on-rails">have</a> <a href="http://stackoverflow.com/questions/13254/open-id-authentication-in-ruby-on-rails">been</a> <a href="http://stackoverflow.com/questions/38901/strange-rails-authentication-issue">asked</a> before, but my situation differs a little.</p>
<p>On my rails app I have to validate the user login against an existing repository and then control authorization to given modules. So, I don't want the solution I go for to generate a model for my users and rely on that. The authetication per se needs to be customized.</p>
<p>Under that scenario, what would be the best plugin to use?</p>
http://stackoverflow.com/questions/298479/what-caching-strategy-would-best-suit-this-problem1What caching strategy would best suit this problem?kolrie2008-11-18T11:21:37Z2008-11-18T12:04:12Z
<p>Hi,</p>
<p>First of all, let me say I am very new to rails, have been working with it for only a couple of days.</p>
<p>My first application is a little different from traditional: on one of my model classes I have parts of data that is pulled from a database and other part that is acquired by doing an HTTP REST request to an external resource.</p>
<p>I have implemented lazy loading for the "external" resource but, every time the user hits a page that needs one of the fields that are tied to that resource, I re-execute the HTTP request, which obviously doesn't scale.</p>
<p>My question would be: what caching strategy do you think is worth for this scenario? How can I have a cache only for the data that is lazy loaded via HTTP? I'd like to implement a cache that could expire both by time (let's say 5 minutes) or when user executes an action that should invalidate this current cache.</p>
<p>How can I implement it and what would be the memory trade-off to keep those caches? Would it be advisable to keep that data on a session or on a separate structure on the server? Should I consider one of those external caching frameworks like GigaSpaces, etc...?</p>
<p>Thanks in advance for any tips you may offer to this problem.</p>
http://stackoverflow.com/questions/270678/what-are-the-best-software-and-templates-for-a-programming-blog6What are the best software and templates for a programming blog?kolrie2008-11-06T22:58:56Z2008-11-06T23:56:14Z
<p>I have a programming blog that was implemented using the default theme of Movable Type. To that, I have added myself a syntax highlighting plugin for adding code snippets. It's not the best thing in the world, but it served its purpose for a long time.</p>
<p>Problem is my administrative interface's editor is no longer working so I think it's a good time to migrate.</p>
<p>What is your experience with blogging frameworks, specially blogs related to programming, that involves a lot of coding snippets? </p>
<p>Is there something out there as simple as what we use here in Stackoverflow (I think it's <a href="http://daringfireball.net/projects/markdown/" rel="nofollow">Markdown</a>, right?)? Is this code formatting engine used here a customized version or is it available for reuse?</p>
<p>I know that the most used engine is WordPress. But for a programming-related blog, is there anything else you would recommend? I am looking for solutions that are easy to maintain (and to add new postings) and extensible.</p>
<p>More than that, where would be a good place to look for templates, since I am not a very gifted designer, I might benefit from freely available or even paid templates.</p>
<h2>Additional information</h2>
<p>I have one constraint I forgot to mention: it must run on Linux-friendly software, because that's all my hosting supports. Thanks for the one suggestion so far, but unfortunately, I'm stuck with Linux.</p>
<p><em>Edited to add more information about my constraints</em></p>
http://stackoverflow.com/questions/218113/logging-preparedstatements-in-java/265856#2658560Answer by kolrie for Logging PreparedStatements in Javakolrie2008-11-05T17:02:48Z2008-11-05T17:02:48Z<p>I still can't find a way to log the SQL statement only when an exception is thrown.</p>
<p>All the suggestions so far uses replacements of PreparedStatement class, like a proxy class that logs the SQL statements and dispatches it to the JDBC driver. Those are excellent replacements for debugging, but not for error logging.</p>
<p>Does anyone have other idea on we could log the exact offending SQL statement, whenever an exception is thrown?</p>
http://stackoverflow.com/questions/265147/can-you-help-me-gather-a-java-best-practices-online-material-collection8Can you help me gather a Java Best Practices online material collection?kolrie2008-11-05T13:37:39Z2008-11-05T14:44:56Z
<p>I work on a medium sized development team that maintains a 8+ years old web application written in Java 1.4.</p>
<p>For new development I always try to convince people to adhere to newer standards and best practices, That goes from simple things like using new naming standards like HtmlImplementation over HTMLImplementation, to things like why it's better to code against an interface versus coding against concrete classes, favor immutability or object composition a over class inheritance.</p>
<p>I have found this rather <a href="http://stackoverflow.com/questions/82672/best-practices-online-resources">generic link in Stackoverflow</a>, which is not Java-oriented nor complete.</p>
<p>I always try to explain the rationale behind my arguments, and always suggest people buy the latest edition of Effective Java, but it's not every developer that takes my word without questioning (which is a good thing). </p>
<p>When that happens, they often ask me for pointers where they could read further about that specific good practice and sometimes I fail to quickly find pointers about that.</p>
<p>Do you have any links to online material I could gather in a "collection" of Best Practices reference, in a way I can always look that up and suggest the "further reading" to my teammates?</p>
http://stackoverflow.com/questions/255864/are-there-any-tools-to-help-the-user-to-design-a-state-machine-to-be-consumed-by0Are there any tools to help the user to design a State Machine to be consumed by my application?kolrie2008-11-01T17:56:56Z2008-11-02T00:45:29Z
<p>When reading <a href="http://stackoverflow.com/questions/255797/uses-for-state-machines">this question</a> I remembered there was something I have been researching for a while now and I though Stackoverflow could be of help.</p>
<p>I have created a framework that handles applications as state machines. Currently all the state business logic and transactions are handled via Java code.</p>
<p>I was looking for some UI implementation that would allow the user to draw the state machines and transactions and generate a file that can later on be consumed by my framework to "run" the workflow according to one or more defined state machines.</p>
<p>Ideally I would like to use an open standard like <a href="http://www.w3.org/TR/2005/WD-scxml-20050705/" rel="nofollow">SCXML</a>. The goal as the UI would be to have something like <a href="http://www.alphaworks.ibm.com/tech/scxml" rel="nofollow">this plugin</a> IBM have for Rational Software Architect:</p>
<p></p>
<p></p>
<p>Do you know any editor, plugin or library that would have something similar or at least serve as a good starting point?</p>
http://stackoverflow.com/questions/1805906/c-c-library-for-https-client-with-basic-authentication/1805917#1805917Comment by kolrie on C / C++ Library for HTTPS Client with Basic Authenticationkolrie2009-11-26T22:34:49Z2009-11-26T22:34:49ZI meant distribution, sorry about thathttp://stackoverflow.com/questions/1805906/c-c-library-for-https-client-with-basic-authentication/1805917#1805917Comment by kolrie on C / C++ Library for HTTPS Client with Basic Authenticationkolrie2009-11-26T22:24:41Z2009-11-26T22:24:41ZThanks, do you know if it's supported by the OSes I mention on my update?http://stackoverflow.com/questions/1424948/c-console-progress-indicator/1424992#1424992Comment by kolrie on C++ Console Progress Indicatorkolrie2009-09-15T19:54:54Z2009-09-15T19:54:54ZAmazing, thank so much for this. I will do some experimentation with this with learning purposes, because the \r solution was enough for me. That's the only reason that kept me from choosing your - thoroughly explained - answer. Thank you!http://stackoverflow.com/questions/1424948/c-console-progress-indicator/1424964#1424964Comment by kolrie on C++ Console Progress Indicatorkolrie2009-09-15T19:54:04Z2009-09-15T19:54:04ZThe \r solution worked and is exactly what I needed - simplest case that works.http://stackoverflow.com/questions/1424948/c-console-progress-indicator/1424997#1424997Comment by kolrie on C++ Console Progress Indicatorkolrie2009-09-15T03:40:20Z2009-09-15T03:40:20ZIf you don't mind me replying to your rethorical question, yes we used to do something like that. Good old Clipper days :-)http://stackoverflow.com/questions/1424948/c-console-progress-indicator/1424964#1424964Comment by kolrie on C++ Console Progress Indicatorkolrie2009-09-15T03:29:12Z2009-09-15T03:29:12ZThanks Zan, the '\r' tip sounds worth trying!http://stackoverflow.com/questions/1424948/c-console-progress-indicatorComment by kolrie on C++ Console Progress Indicatorkolrie2009-09-15T03:28:07Z2009-09-15T03:28:07Z@Tal: I am kind of newbie in C++ and console apps, so I could use someone pointing me in the right direction with metacode or a good link about the subect.http://stackoverflow.com/questions/1374096/inserting-an-invalid-activerecord-date-to-a-mysql-database/1374292#1374292Comment by kolrie on Inserting an invalid ActiveRecord date to a MySQL databasekolrie2009-09-03T18:37:09Z2009-09-03T18:37:09ZOh really? Let me tell you ChssPly76 that I don't give a sh**. I am not here hunting for reputation. This was a legitimate question that was addressed first in RoR IRC Channel in freenode.net and then submitted here. I bet someone like you never had an insight after writing down a question, did you? I will make this a wiki thing, so I don't get repo points, just so you know how much of a repo chaser I am, looser.http://stackoverflow.com/questions/839997/better-way-to-fill-a-ruby-hash/840003#840003Comment by kolrie on Better way to fill a Ruby hash?kolrie2009-05-11T15:51:43Z2009-05-11T15:51:43ZSide note: the "hash from arrays" method won't work on 1.9.http://stackoverflow.com/questions/830700/problem-caching-model-instances-on-a-constant-in-rails/830854#830854Comment by kolrie on Problem caching Model instances on a constant in Railskolrie2009-05-06T19:44:32Z2009-05-06T19:44:32Zpts, thanks for the answer. I am using Rails.cache now which is perfect fine. Just wanted to avoid the network overhead (it's not that big of a deal) and since it didn't work I got curious.http://stackoverflow.com/questions/675380/mimic-aesencrypt-and-aesdecrypt-functions-in-ruby/675420#675420Comment by kolrie on Mimic AES_ENCRYPT and AES_DECRYPT functions in Rubykolrie2009-03-23T22:50:55Z2009-03-23T22:50:55ZThanks for your insight. The key is not mine, it's of a third party application I interact with through API :-).
The "real" key is exact same length and format, but not the exact string.
My goal here is not to be secure, just "talk" with the database :-)
Thanks!http://stackoverflow.com/questions/609405/what-would-be-the-light-way-to-render-a-jsp-page-without-an-app-web-server/609417#609417Comment by kolrie on What would be the light way to render a JSP page without an App/Web Serverkolrie2009-03-04T06:21:49Z2009-03-04T06:21:49ZThanks! One minor remark: this article seems very old :-)http://stackoverflow.com/questions/609405/what-would-be-the-light-way-to-render-a-jsp-page-without-an-app-web-server/609409#609409Comment by kolrie on What would be the light way to render a JSP page without an App/Web Serverkolrie2009-03-04T06:16:58Z2009-03-04T06:16:58ZTomcat won't cut it. I have to be able to start it from a Java main(). Jetty will probably be an alternative. But: is there a JSP rendering API out there?http://stackoverflow.com/questions/603828/java-5-to-java-1-4-source-code-backporting-tool/603853#603853Comment by kolrie on Java 5 to Java 1.4 Source Code Backporting Toolkolrie2009-03-02T20:31:23Z2009-03-02T20:31:23ZYes, if I need to choose between doing it manually and decompile binaries, I have no doubt I would go with the first option.http://stackoverflow.com/questions/603828/java-5-to-java-1-4-source-code-backporting-toolComment by kolrie on Java 5 to Java 1.4 Source Code Backporting Toolkolrie2009-03-02T20:26:08Z2009-03-02T20:26:08ZOnly because a given language have been EOL-ed, it doesn't mean it's not used anymore. I was going to migrate a full range application from WebSphere Application Server 6 (1.4) to 6.1 (1.5) but due to budget cut, we'll have to downgrade all the new code, which was 1.5 compliant. See? :)