-2
votes
5answers
195 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 t …
0
votes
2answers
74 views
How do I add a method to a ruby gem without editing the gem source?
I am using the acts_as_taggable_on gem and would like to add a method to one of the gem source files (tag.rb), but I do not want to change the gem source in any way.
I have tried …
3
votes
6answers
105 views
Using Polymorphic Code for Legitimate Purposes?
Hi,
I recently came across the term Polymorphic Code, and was wondering if anyone could suggest a legitimate (i.e. in legal and business appropriate software) reason to use it in …
1
vote
1answer
116 views
C++ Preprocessor metaprogramming: obtaining an unique value?
Hi, I'm exploiting the behavior of the constructors of C++ global variables to run code at startup in a simple manner. It's a very easy concept but a little difficult to explain so …
2
votes
1answer
48 views
Is implementing SOAP clients in Perl using meta-programming sensible?
I'm currently dealing with a code base which contains several dozens of classes generated with SOAP::WSDL. However, having worked with Moose I now think that generating those class …
1
vote
2answers
36 views
Populating values in module namespace
I have a python module.
I want to populate some values to it at runtime, how do I do it.
Eg. I have a list,
['A', 'B', 'C']
I am creating there classes with these names, and wa …
0
votes
3answers
106 views
Can I extract C++ template arguments out of a template class?
Basically, given a template class like this:
template< class Value > class Holder { };
I would like to be able to discover the type Value for a given Holder class. I thoug …
6
votes
5answers
189 views
C++ implicit template instantiation
I currently have a class hierarchy like
MatrixBase -> DenseMatrix
-> (other types of matrices)
-> MatrixView -> TransposeView
…
2
votes
1answer
62 views
Why can’t I use attr_accessor inside initialize?
I'm trying to do an instance_eval followed by a attr_accessor inside initialize, and I keep getting this: `initialize': undefined method 'attr_accessor'. Why isn't this working?
T …
0
votes
3answers
87 views
How can I get this snippet to work?
I'd like to port a little piece of code from Ruby to Groovy, and I'm stuck at this:
def given(array,closure) {
closure.delegate = array
closure()
}
given([1,2,3,4]) {
…
0
votes
1answer
115 views
Using groovy metaClass to mock out Shiro SecurityUtils in bootstrap
For further background, see http://grails.markmail.org/message/62w2xpbgneapmhpd
I'm trying to mock out the Shiro SecurityUtils.getSubject() method in my BootStrap.groovy. I decid …
3
votes
4answers
100 views
Detecting that a method was not overridden
Say, I have the following 2 classes:
class A
def a_method
end
end
class B < A
end
Is it possible to detect from within (an instance of) class B that method a_method is o …
2
votes
2answers
101 views
__FILE__ macro manipulation handling at compile time.
One of the issues I have had in porting some stuff from Solaris to Linux is that the Solaris compiler expands the macro __FILE__ during preprocessing to the file name (e.g. MyFile. …
1
vote
4answers
168 views
Template metaprogram converting type to unique number
I just started playing with metaprogramming and I am working on different tasks just to explore the domain. One of these was to generate a unique integer and map it to type, like b …
3
votes
4answers
133 views
How do I invoke a non-default constructor for each inherited type from a type list?
I'm using a boost typelist to implement the policy pattern in the following manner.
using namespace boost::mpl;
template <typename PolicyTypeList = boost::mpl::vector<> …
