J. Pablo Fernández
|
Registered User
|
See my web site
|
|
4h |
awarded | ● Popular Question |
|
1d |
answered | How do I make my generator discoverable by Rails? |
|
1d |
asked | How do I make my generator discoverable by Rails? |
|
1d |
revised |
How do I make Rails pick up gems from local source directories? added 143 characters in body |
|
1d |
comment |
How do I make Rails pick up gems from local source directories? That reduces the time by only requiring the rails project to restart (it won't load automatically) but it removes source control, as you don't have it in vendor (for the gem that is); so it's useful for some stuff, but not everything. Nevertheless I've used that way for a little while. Thanks ScottJ. |
|
1d |
asked | How do I make Rails pick up gems from local source directories? |
|
1d |
revised |
validates_presence_of causes after_initialize to be called with a weird self Added my own solution to the answer. |
|
1d |
accepted | Where did the div class=fieldWithError go? |
|
Nov 27 |
answered | How do I interact with the Amazon Product Advertising API in my Rails app? |
|
Nov 27 |
comment |
How do I interact with the Amazon Product Advertising API in my Rails app? I've tried for a couple of hours wit ruby-aaws but amazon-ecs worked out of the box on the first try. |
|
Nov 27 |
revised |
How do I interact with the Amazon Product Advertising API in my Rails app? Corrected the name of the library as there's another library called ruby-aws. |
|
Nov 22 |
revised |
validates_presence_of causes after_initialize to be called with a weird self deleted 39 characters in body |
|
Nov 22 |
asked | validates_presence_of causes after_initialize to be called with a weird self |
|
Nov 22 |
revised |
Where did the div class=fieldWithError go? added 143 characters in body |
|
Nov 22 |
answered | Where did the div class=fieldWithError go? |
|
Nov 22 |
revised |
Where did the div class=fieldWithError go? added 906 characters in body |
|
Nov 22 |
comment |
Where did the div class=fieldWithError go? Note: I removed formtastic and it started working properly. |
|
Nov 22 |
comment |
Where did the div class=fieldWithError go? That didn't help. Actually rails put the label inside one div and the text field inside another div. I don't think rails can modify HTML code, like the p, that it's already written in the view; it can only generate more code. |
|
Nov 22 |
revised |
Where did the div class=fieldWithError go? added model |
|
Nov 22 |
asked | Where did the div class=fieldWithError go? |
|
Nov 19 |
awarded | ● Popular Question |
|
Nov 17 |
asked | How to read and write ID3 tags to an MP3 in C#? |
|
Nov 15 |
comment |
Getting super_exception_notifier to work Well, I did tried that remotely to my server in production; and I would expect that console errors are always sent as they are always local anyway. |
|
Nov 15 |
asked | Getting super_exception_notifier to work |
|
Nov 14 |
comment |
Is there a list of known web crawlers? The problem in our case is that we have many valid downloaders that won't run JavaScript, like iTunes or any other podcatcher. |
|
Nov 14 |
revised |
Is there a list of known web crawlers? Syntax. |
|
Nov 14 |
asked | Is there a list of known web crawlers? |
|
Nov 12 |
revised |
Safely escape strings for SQL fragments for joins, limits, selects, and so on (not conditions) on Rails Just some style. |
|
Nov 12 |
asked | Safely escape strings for SQL fragments for joins, limits, selects, and so on (not conditions) on Rails |
|
Nov 10 |
awarded | ● Popular Question |
|
Nov 10 |
comment |
Old unknown database Do you have access to a Linux box? Have you tried running "file MISCINFO.BRG"? |
|
Nov 10 |
comment |
Old unknown database I'm very positive the BRG file is the database and the key file to investigate. The IDX most likely is just index data; which means that the BRG is possible easy to inspect (if the index data is kept separately, then the database has a potential to not be so hard). |
|
Nov 10 |
comment |
Old unknown database My initial guess would be that the .LOG is a log file and the .IDX is an index, like in the DBase days; so I would concentrate on the BRG. Have you tried opening the BRG? Is it text or binary? (you'd be surprised at old databases storing things as text); either way, what are the first couple of lines of that file (you might need to use an hex editor)? |
|
Nov 10 |
answered | What tools does Linux programmer use to develop programs? |
|
Nov 10 |
comment |
What tools does Linux programmer use to develop programs? What programming language are you talking about when you mention Linux programmers? The world of programming in Linux has more vareity than Windows (Windows today at least). |
|
Nov 10 |
revised |
What tools does Linux programmer use to develop programs? syntax |
|
Nov 9 |
revised |
How can I improve a Ruby on Rails code that has a lot of SQL as strings? Updated the commented SQL to be the generated SQL. |
|
Nov 9 |
revised |
How can I improve a Ruby on Rails code that has a lot of SQL as strings? Removed comment about here docs which doesn't make any sense. |
|
Nov 9 |
awarded | ● Popular Question |
|
Nov 9 |
comment |
How can I improve a Ruby on Rails code that has a lot of SQL as strings? To be able to use proper SQL escaping on the joins, then I should use find_by_sql instead of find? |
|
Nov 9 |
comment |
How can I improve a Ruby on Rails code that has a lot of SQL as strings? I've simplified and documented the code so it's easier to talk about it and the core issues are the same (this is actually a first iteration of my code). |
|
Nov 9 |
revised |
How can I improve a Ruby on Rails code that has a lot of SQL as strings? Document the code. |
|
Nov 9 |
comment |
How can I improve a Ruby on Rails code that has a lot of SQL as strings? The code is very well tested, 100% code coverage and every possible case I can think of. Agreed about getting rid of as much SQL as possible. Your has_many :all_votes is equivalent to the has_many :votes, :as => voteable I already have. What's your point there? |
|
Nov 9 |
comment |
How can I improve a Ruby on Rails code that has a lot of SQL as strings? I'm already using the Ruby equivalent of printf, and that's what I don't like. |
|
Nov 9 |
comment |
How can I improve a Ruby on Rails code that has a lot of SQL as strings? 4, 5: I've already have, if there's anything in particular you have in mind, feel free to let me know about it. |
|
Nov 9 |
comment |
How can I improve a Ruby on Rails code that has a lot of SQL as strings? 3: do you mean so that I don't have to do the concatenation? Then I would have repetition, or concatenation in a different way and creating yet another variable. |
|
Nov 9 |
comment |
How can I improve a Ruby on Rails code that has a lot of SQL as strings? 2: I don't understad what you mean (I mean the pieces of code you provide). I'm restricting the joined table by user_id, not the main table, so it cannot go into the where clause (that is, :conditions). |
|
Nov 9 |
comment |
How can I improve a Ruby on Rails code that has a lot of SQL as strings? Ok, just taking a look at point 1, how do I use the :joins => :votes syntax and specify an "as" so that I can join it twice and even then, how do I provide different ONs for each one? |
|
Nov 8 |
revised |
How can I improve a Ruby on Rails code that has a lot of SQL as strings? Better escaped backticks. |
|
Nov 8 |
comment |
Redirect on record not found? Well, if someone asks to read comment with id 1234 and it's not in the database, I can't know whether it existed or not and certainly if I redirect to the list of comments is not because the resource is now there, but because it was the best I could provide. |
