module

Do lists of recently added, not recently updated, perl/php/python/ruby/etc. modules exist?

For many programming languages, there are centralized sites (ex. CPAN, PEAR, PyPi, RubyGems, etc.) which list recently updated (existing plus newly added) modules, but I haven't seen any site which allows you to list only recently added/created modules. Can anybody point me to such a site/service? ...

Force import module from Python standard library instead of PYTHONPATH default

I have a custom module in one of the directories in my PYTHONPATH with the same name as one of the standard library modules, so that when I import module_name, that module gets loaded. If I want to use the original standard library module, is there any way to force Python to import from the standard library rather than from the PYTHONPAT...

Do lists of recently added, not recently updated, perl/php/python/ruby/etc. modules exist?

For many programming languages, there are centralized sites (ex. CPAN, PEAR, PyPi, RubyGems, etc.) which list recently updated (existing plus newly added) modules, but I haven't seen any site which allows you to list only recently added/created modules. Can anybody point me to such a site/service? ...

Drupal 6: Creating blog post page with View Module [dynamic Path]

Hi friends, I'm a drupal newbie... I created my blog post listing page with View. Everything is great... but the post detail page is not like as I need. So I wanted to create that page as well with View Module, so I can control all content, etc... but how can I create that page? url changes according to post title. somehow I need to ...

What is the pythonic way to setattr() for a module?

In a class method, I can add attributes using the built-in function: setattr(self, "var_name", value). If I want to do the same thing within a module, I can do something like: globals()["var_name"] = value Is this the best way to do this, or is there a more pythonic solution? ...

m2eclipse cant find peer module

This has happened multiple times, and I have no idea what is happening. I have a main project of: com.cable.wuntee.neto.nse-taac having modules of: taac-web taac-backend-api taac-scheduler but for some reason taac-web can not find taac-backend-api. This is the error - can anyone explain what is going on? Thanks. 6/3/10 4:45:34 P...

Drupal 6: assigning custom View to dynamically generated "category filtered" blog listing...

Hi friends, I'm a drupal newbie... love it so far :) I created a view (page) for my blog listing with View Module. I have a specific output like particular place of image, title, etc... Everything is working great with that... Then I created a Category Filtering block (with View Module) for sidebar. it works fine. I click on any cat...

Java - Which accounting module is best to embed in my JAVA application?

I am developing a java application. I want to integrated some accounting module in my app. I don't want any feature-rich accounting module. I just want to maintain salaries expenses generating invoices So do you know any FREE OPEN SOURCE accounting module so that I can integrate it with my app. ...

Syntax for loading observers (in a model subdirectory) in environment.rb?

I have a lot of model observers, so I want to organize them in a subdirectory under the model folder. model --> observer --> user_observer.rb, activity_observer.rb, etc. Prior to placing in the subdirectory, I was loading the observers like this: Rails::Initializer.run do |config| config.active_record.observers = :user_observer, :...

Where is the documentation for Perl's builtin `Internals::` package?

When using keys %:: to get a list of the currently loaded root namespaces, the Internals:: package is loaded by default (along with UNIVERSAL:: and a few others). However, I haven't found any documentation for the functions in Internals:: keys %{Internals::} returns SvREFCNT hv_clear_placeholders hash_seed SvREADONLY HvREHASH rehash_se...

Python Mersenne Twister implementation

I have Python 3.1.2 and I'm using Windows XP. Where can I see Python's implementation of the Mersenne Twister? In the Python docs it is stated that the Mersenne Twister was written in C and the Python History and License ( http://docs.python.org/py3k/license.html?highlight=mersenne%20twister ) states that "The _random module includes c...

Managing several custom content types from one module(drupal)

Is it possible to declare and manage several custom content types inside one module? I'm creating a site that needs four custom content types and I'd like to manage them from one module instead of creating module for every content type. After some testing, I found out that it seems impossible. Because, unless hook_form and content type s...

Best practice for installing python modules from an arbitrary VCS repository

I'm newish to the python ecosystem, and have a question about module editing. I use a bunch of third-party modules, distributed on PyPi. Coming from a C and Java background, I love the ease of easy_install <whatever>. This is a new, wonderful world, but the model breaks down when I want to edit the newly installed module for two reas...

Ruby: Allowing a module to have settings

If I'm building a library in ruby, what's the best way to allow users of the library to set module-wide settings that will be available to all sub classes etc of the library? A good example would be if I'm writing a library for posting to a webservice: TheService::File.upload("myfile.txt") # Uploads anonymously TheService::Settings.lo...

What is the "proper" method for determining if a swf is running within an AIR application?

I've got a Flex Web project and a Flex AIR project that use a common code-base. The common code defines several run-time loaded Flex Modules. I want the Flex Modules to behave differently depending on whether the running base application is WEB or AIR. What is the proper method for determining from the module code whether the module i...

What is the difference between a module and a script in Python?

Think the title summarizes the question :-) ...

Joomla modules file structure to store jquery core and some image files.

I'm a newbie to joomla. I'm trying to create a joomla module which uses some jquery actions and some image files. Can anyone suggest me a best method to place the jquery-core and jquery plugin files inside the module. I also wants to add some image files with my module. ...

Importing Python modules without installing - Sybase ASE

I need to use the Sybase Python module but our SA's won't install because it's not in the repo's. I've downloaded it and placed it on the box and would just like to 'import' or 'include' the module without installing it first. - Is this possible? From the looks of it (Sybase ASE) it needs some type of compilation before use. Is it possib...

define global in a python module from C api

Sorry for the trivial question, but I can't find this infomation from the manual. I am developping a module for python using C api; how can I create a variabile that is seen as global from python? For example if my module is module I want to create a variable g that do this job: import module print module.g in particular g is an integ...

vb.net module visibility

If I have a module in a VB.Net class library, will it's visibility be limited to the assembly? What I'm looking for is the VB.Net equivalent of a C# internal static class. Does anyone know the equivalent? ...