0
votes
2answers
20 views
creating dynamic helper methods in rails
I am trying to create a bunch of dynamic helper methods like these:
show_admin_sidebar
show_posts_sidebar
show_users_sidebar
So far I have this in my helper.rb file:
#spits out a partial
def …
1
vote
3answers
54 views
ruby on rails add functionality to model property change
In my rails model, I have a decimal property called employer_wcb. I would like it if, when employer_wcb was changed, a dirty bit was set to true. I'd like to override the employer_wcb setter method. …
0
votes
4answers
91 views
variable name introspection in Python
Is it possible to dynamically determine the name of a variable in Python?
For example, I sometimes have the following situation:
name = foo if bar else baz
type = alpha or bravo
D = {
"name": …
3
votes
2answers
86 views
How do you evaluate a string as a clojure expression?
How would I get something similar to the following?:
(evaulate-text "(+ 1 2)") ; resolves to 3
1
vote
2answers
68 views
Ruby parameterize if … then blocks
I am parsing a text file and want to be able to extend the sets of tokens that can be recognized easily. Currently I have the following:
if line =~ /!DOCTYPE/
puts "token doctype " + …
2
votes
0answers
13 views
Are there machine (and human) readable specification languages for algorithm collections and meta-libraries?
Is there high-level language out there for describing algorithms, that's geared towards specification, rather than implementation?
The idea would be to have a machine-readable archive of standard …
0
votes
2answers
108 views
Preprocessor metaprogramming library for plain C
Hi,
does anybody know a library similar to boost::preprocessor (maybe not so advanced) that could be easily used/incorporated in plain C projects?
Of course, the most (all ?) of boost::preprocessor is …
1
vote
3answers
39 views
What does first argument to `type` do?
Some code.
In [1]: A = type('B', (), {})
In [2]: a = A()
In [3]: b = B()
---------------------------------------------------------------------------
NameError …
0
votes
3answers
106 views
Overriding the “for” keyword in Ruby. Is it possible?
I search around and tried overriding the "for" keyword but I found nothing.
I am trying something like that:
def for("maybe_arguments_go_here")
print "Hello from function for!"
end
for i in 1..3
…
1
vote
3answers
81 views
Get the templated type as a string
After reading C++ compile-time string hashing with Boost.MPL, and considering a problem I have, the following came to my mind.
I have the base class:
template<class Command>
class Base {
…
1
vote
3answers
72 views
How do you set the class of an object to something else?
Hi, I've seen this recently and now I can't find it …
How do you set the class of an object to something else?
--Update: Well, in Pharo! Like:
d:=Object new. d setClass: Dictionary.
Only that …
-1
votes
0answers
29 views
any sane way to do mocking in Grails?
Hi,
I have a Groovy class Test and I want to mock foo() such that (for all instances) it returns bar() + 1
class Test {
void def foo() {1}
void def bar() {1}
void def baz() {1}
}
The normal …
1
vote
3answers
97 views
python modify __metaclass__ for whole program
EDIT: Note that this is a REALLY BAD idea to do in production code. This was just an interesting thing for me. Don't do this at home!
Is it possible to modify __metaclass__ variable for whole program …
2
votes
3answers
75 views
Overload a method with a function at runtime
OK, I'll admit upfront this is a mega kludge and that I could definately implement this better. It's only morbid curiosity that's driving me to find out how I could do this.
class SomeClass(object):
…
-2
votes
5answers
227 views
Python on Rails?
Would it be possible to translate the Ruby on Rails code base to Python?
I think many people like Python more than Ruby, but find Ruby on Rails features better (as a whole) than the ones in Python …
