The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
46 views

Javascript modules loading with eval()

Recently i asked to use eval() for a module function. Now i ended up doing a very weird function which does what i want. I like the idea i made it but im not so sure if this is state of the art, or ...
0
votes
0answers
55 views

Mixin both instance and class methods in Ruby

I have a Ruby class into which I want to include both class and instance methods. Following the pattern described in "Ruby Pattern: Extend through Include", I'm currently using the following: class ...
2
votes
2answers
142 views

Criticize my first Python module please

This is a Python module I have just finished writing which I plan to use at project Euler. Please let me know how I have done and what I could do to improve it. # This constant is more or less an ...
2
votes
1answer
72 views

Monitor filesystem for continuous integration and build

I've written a simple Python module that depends on watchdog to monitor for modified files, thens runs various integration and build processes. I'm fairly new to Python, so I'd appreciate all ...
3
votes
2answers
468 views

How are my javascript module pattern and promise pattern?

I'm working on an app that downloads some SVG paths from a server and draws them. Anything in here is open to critique, but specifically I'd like to review my use of a module pattern and my ...
0
votes
0answers
114 views

Replace string with Module callback, {{widget.social.facebook}} Codeigniter HMVC

I'm looking to insert some similar tags like {{widget.social.facebook}} into an instance of ckeditor. The plan is to run them through either Modules::run() or widgets::run() method. My initial ...