0
votes
3answers
42 views
python modify __metaclass__ for whole program
Is it possible to modify __metaclass__ variable for whole program (interpreter) in Python?
This simple example is working:
class ChattyType(type):
def __init__(cls, name, bases, dct):
…
1
vote
3answers
51 views
Overload a classmethod with a function
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):
…
1
vote
5answers
216 views
Conditionally change C statements in C source file
I have a C file in which we are moving the logging infrastructure. So
if ( logging_level >= LEVEL_FINE )
printf("Value at %p is %d\n", p, i);
becomes
do_log2(LEVEL_FINE, "Value at %p is …
-2
votes
5answers
207 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 …
2
votes
1answer
50 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 classes at runtime at …
0
votes
2answers
76 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 creating my own …
1
vote
1answer
122 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 let me just paste …
3
votes
6answers
107 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 a computer program? …
1
vote
2answers
41 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 want them to available …
0
votes
3answers
109 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 thought that I would be …
6
votes
5answers
190 views
C++ implicit template instantiation
I currently have a class hierarchy like
MatrixBase -> DenseMatrix
-> (other types of matrices)
-> MatrixView -> TransposeView
-> …
1
vote
3answers
192 views
generate mpl::vector from fusion::vector
How to generate fusion::vector from mpl::vector?
How to generate mpl::vector from fusion::vector?
BOOST_MPL_ASSERT((is_same<
fusion::vector<int, char>,
…
0
votes
3answers
88 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]) {
findAll { it > 4}
…
2
votes
1answer
70 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?
The code looks kind …
0
votes
1answer
123 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 decided on this approach …
