It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Web frameworks such as Django and Rails rely on monkey patching to enable support for plugins.
Are there web frameworks, using Python or Ruby, that support plugins without having to resort to monkey patching? And how would it be possible to architect the code to support plugins without monkey patching, especially if one moved to a statically typed language?
I question your definitions of "monkey-patching" and "plugins".
Django very much so supports "plugins", though it calls them "packages" or "modules". Here's a site that exists only to list available packages for Django:
http://www.djangopackages.com/
I know nothing about Rails, but I'd bet my house it has similar things.
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am looking for good iOS Libraries and Frameworks.
I discovered the great CocoaPods library manager and its great!
But its really hard to find the really goods libraries in CocoaPods. The search functionality is not very advanced. But most of the libraries are on github.
Now I am wondering if someone has already done a sorting of the CocoaPods libraries according to the github stars? So that I can find the very good or widely used libraries easy on CocoaPods.
Normally, you have a specific need and you look for it, for example: go to GitHub and put "iOS Charts". A bunch of libraries will pop-up, pick the one you like. Then, check if it is on CocoaPods. If it's not, just drop an email to the guy who created the Library to add it there.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I was recently given a task to create a blog using Ruby on Rails. So I found a very helpful guide, which was very helpful for the blog. However, there seems to be a short supply of good Ruby-on-Rails guides on creating a wiki that is, up to date, makes sense and accurate.
You can check existing gems for wikis: https://www.ruby-toolbox.com/categories/wiki_apps
There are 3 rails-based wikis.
The most active is https://github.com/alno/irwi.
Other two, https://github.com/queso/signal-wiki and https://github.com/AndyMoreland/kii, was not updated for years, but still you can try to look through sources to get the base idea
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I'm not really sure if the questions that ask for opinion are allowed here, but I'll give it a try, as it seems pretty logical to ask for advise when my own search didn't produce any desirable result.
I'm building a new application and it seems like doing a website mockup is a pretty good idea. I couldn't find any free software that does a decent job in that regard, so I would appreciate any pointers. Pencil project as a firefox plugin seemed like a good one, but it hangs on exporting created documents.
Any other ideas for a software that is used for application planning and mockups would be greatly appreciated.
You can use the web demo of Balsamiq Mockups for free...
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I programmed in php. And when you use some framework, then, as far as php is intepreter, all the framework loads every request. But not rails, though, ruby is interperter too... So, how does it work
Nope. Rails as the framework caches all loaded modules, class and libraries on the first several requests (it's not on the first request only since it also has lazy load for above things).
But by default under development mode, all app modules (mvc) are reloaded on each request. Libraries (plugins, gems, etc) are not reloaded.
Your question is hugely wide open and too large to really answer effectively. This is a good place: RoR Guides. If after reading that you have more specific and directed questions bring them back and we'll try our best to help you...
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i want to implement a search engine.Is there any source code available for it in python etc...
i know there are tools for it like spinx etc. but i would like to have my own code running. may i know if there is any source code for it.
Maybe something like PyLucene?
You can use Apache Nutch , which is Web Crawler and search engine integrated with Apache Solr.
It also supports Hadoop, Distributed Crawling.