For instance:
void* sdl_library = dlopen("libSDL.so", RTLD_LAZY);
void* initializer = dlsym(sdl_library,"SDL_Init");
Assuming no errors, initializer will point to the function SD_Init in the shared library libSDK.so.
However this requires knowing the symbol "SDL_Init" exists.
Is it possibly to query a library for all its symbols? E...
I want to have an application that works as a Host to many other small applications. Each one of those applications should work as kind of plugin to this main application. I call them plugins not in the sense they add something to the main application, but because they can only work with this Host application as they depend on some of it...
I use Notepad++ as my main editing tool. I want to write a plugin for it for a feature I'd like to implement, but am unsure of how to go about it.
Are there any guides / blogs / tutorials that can point me in the right direction for creating a new plugin?
...
We run both unit (junit) and system (fit) tests on instrumented code in our build. The consolidated coverage report for both is generated as part of the build itself. We then feed the unit test coverage report to the Hudson Emma plugin, configure benchmark numbers and things work nicely.
Is it possible to also feed in the system test c...
Hello.
I have an existing Rails internal app, that handles inventory, invoicing, order taking, labeling, data imports/exports, etc, etc.
Now I need to add blog, cms, forum and wiki functionality to it. It seems silly to try to roll out my own solutions when there are already some out there. So I was wondering if people could recommend...
I need write a live messenger plugin which periodically read messages from a remote http server, and then change my signature(the short message after my name) accordingly.
Can anyone point me to any open source project or materials where I can get started?
Thanks.
...
Here is a PHP statement that basically sets off a javascript image slider. Only problem is I can't figure out how to get each individual image to a link to a different page. Any tips or suggestions? I appreciate it!
<?php jsbrotate('height=316&width=924&imgdisp=4&imgfade=2&images=/wp-content/uploads/image_1_linked.png|/wp-content/upl...
I'm creating a Wordpress plugin and, being a newbie in the development on this platform, I'm stuck on this problem.
I'd like to have posts in the loop filtered by categories, defined by the user through an admin page. I would actually like to be able to modify query_post() parameters in the plugin, but the only trick I found is to re-ru...
Hi!
I have a "plugin like" architecture and I want to create one instance of each class that implements a dedicated interface and put these in a cache. (To have a singleton-ish effect).
The plugins will be provided as jars and put into the app engine war file before the app is uploaded.
I have tried to use the ClassPathScanningCandid...
Hello, I am using the
http://github.com/collectiveidea/awesome_nested_set
awesome nested set plugin and currently, if I choose a sub category as my category_id for an item, I can not search by its parent.
Category.parent
Category.Child
I choose Category.child as the category that my item is in. So now my item has category_id ...
I'm making a task-based program that needs to have plugins. Tasks need to have properties which can be easily edited, I think this can be done with Qt's Meta-Object Compiler reflection capabilities (I could be wrong, but I should be able to stick this in a QtPropertyBrowser?)
So here's the base:
class Task : public QObject
{
Q_OBJECT
...
How to create a pure JavaScript(without using any library) plugin which looks like:
document.getElementById('id').myPlugin();
like jquery ?
...
I'm trying to implement a plugable architecture in asp.net MVC. I have based my modules on the following article - http://www.wynia.org/wordpress/2008/12/aspnet-mvc-plugins.
I have a DLL that contains a simple controller, and a view. The view is an embedded resource within the DLL.
The problem I'm having is, if I drop the DLL in the bi...
Tycho is supposed to be a plug-in for maven for building eclipse plug-ins.
I have found various blogs and other articles about it, but the contained links to Tycho are all dead or not accessible for the general public, for example: http://www.sonatype.com/people/2009/04/tycho-040-roadmap/
The only thing I found is a project proposal on...
I'm using DB4O on a new project I'm playing with and it would help me no end if I was able to use the Object Manager Enterprise utility. I understand it's only available as a VS plugin, so does anyone know whether such a plugin is / will be available for Visual Studio 2010, or is there another way to get the utility?
...
I have an existing IDA Pro project for a C166 processor embedded application. This project already has many functions, variables, etc defined.
There are different versions of the embedded application I am looking at. The different versions of the application are 99% the same, but with slight variations in code and data that cause functi...
Hello guys! Could you please suggest me what kind of software should I use to broadcast live video from webcam? Web-cam is connected via USB to my server. I want to broadcast video from my webcam on my web-page (HTML, ASP.NET - doesn't matter). I don't want to develop video broadcasting from the beginning - it takes a lot of time to impl...
Hello.
'Smart Tabs' concept allows to automatically insert tab character for block indentation and space characters for in-block formatting. It's described here. Unfortunately, Visual Studio's 'smart tabs' option in text editor settings just indents text on enter press. Same name, completely different and near useless thing :). So, mayb...
I am using jquery validation plugin. I have an 'add file field' button which will add new file fields dynamically on click. I want to validate these fields on submit. How can I do this ? Please help..
...
Hello,
i own a website where users can vote/rate things and i want to improve the poor inputbox (from 1 to 10) to improve visual rendering.
I was thinking of a bar, which have 10 ' | ' you can move the cursor from one to ten (it doesn't have to be AJAX because the rating is only added at the end of the form)
I'm sure you already seen...