22
votes
27answers
5k views
Python Vs. Ruby for Metaprogramming
I'm currently primarily a D programmer and am looking to add another language to my toolbox, preferably one that supports the metaprogramming hacks that just can't be done in a statically compiled …
14
votes
8answers
1k views
Best intro to C++ static metaprogramming?
Static metaprogramming (aka "template metaprogramming") is a great C++ technique that allows the execution of programs at compile-time. A light bulb went off in my head as soon as I read this …
13
votes
10answers
619 views
template-ing a for loop in C++?
First time poster, be gentle!
I have a C++ snippet below with a run-time for loop,
for(int i = 0; i < I; i++)
for (int j = 0; j < J; j++)
A( row(i,j), column(i,j) ) = f(i,j);
The …
13
votes
8answers
505 views
How do you debug heavily templated code in c++?
I find it very hard to figure out what is wrong with my code when using C++ template meta-programming. It might be that I am just not very good at understanding the error messages, but as far as I'm …
12
votes
13answers
1k views
Best non-C++ language for generative programming?
C++ is probably the most popular language for static metaprogramming and Java doesn't support it.
Are there any other languages besides C++ that support generative programming (programs that create …
11
votes
5answers
808 views
Python decorator makes function forget that it belongs to a class
I am trying to write a decorator to do logging:
def logger(myFunc):
def new(*args, **keyargs):
print 'Entering %s.%s' % (myFunc.im_class.__name__, myFunc.__name__)
return …
10
votes
4answers
336 views
Can you make custom operators in C++?
Is it possible to make a custom operator so you can do things like this?
if ("Hello, world!" contains "Hello") ...
Note: this is a separate question from "Is it a good idea to..." ;)
10
votes
9answers
432 views
When/Why ( if ever ) should i think about doing Generic Programming/Meta Programming
Hi there
IMHO to me OOPS, design patterns make sense and i have been able to apply them practically.
But when it comes to "generic programming /meta programming" of the Modern C++ kind, i am left …
10
votes
4answers
978 views
Is anyone using D in commercial applications?
Ok, this is a little open ended, but I think D could do with a bit of promotion.
Personally I think D is a superb implementation language - but it's not mainstream enough yet for many people to take …
10
votes
7answers
556 views
D Templates: Coolest Hack
What is the coolest somewhat practical metaprogramming hack you've done or seen done in the D programming language? Somewhat practical means excluding, for example, the compile-time raytracer.
10
votes
2answers
2k views
Ruby: define_method vs. def
As a programming exercise, I've written a Ruby snippet that creates a class, instantiates two objects from that class, monkeypatches one object, and relies on method_missing to monkeypatch the other …
10
votes
7answers
2k views
Adding an instance variable to a class in Ruby
How can I add an instance variable to a defined class at runtime, and later get and set its value from outside of the class?
Edit: It looks like I need to clarify that I'm looking for a …
9
votes
2answers
605 views
How do you pass arguments to define_method?
I would like to pass an argument(s) to a method being defined using define_method, how would I do that?
8
votes
3answers
181 views
java annotations: library to override annotations with xml files
Java has annotations and that is good. However, some developers feel that it is best to annotate code with metadata using xml files - others prefer annotations but would use metadata to override …
8
votes
4answers
1k views
What are some good Xcode scripts to speed up development?
Xcode allows you to create automated scripts for performing repetitive tasks. What scripts have you written to speed up development?
