1,992 questions
2694
votes
73
answers
5.5m
views
How can I get query string values in JavaScript?
Is there a plugin-less way of retrieving query string values via jQuery (or without)?
If so, how? If not, is there a plugin which can do so?
287
votes
10
answers
361k
views
How do I make CMake output into a 'bin' dir?
I'm currently constructing a project with a plugin structure. I'm using CMake to compile the project. The plugins are compiled in separate directories. My problem is that CMake compiles and saves the ...
254
votes
28
answers
195k
views
"Gradle Version 2.10 is required." Error
As I've been using
classpath 'com.android.tools.build:gradle:+'
In the build.gradle file, I got the following error since gradle version 2.10 has been released.
The error is :
Warning:Gradle ...
79
votes
7
answers
66k
views
Best Way to Extend a jQuery Plugin
I'm a fairly new jQuery user looking to extend an existing jQuery plugin that does about 75% of what I need. I've tried to do my homework on this. I've checked out the following questions on ...
96
votes
7
answers
26k
views
Sandbox against malicious code in a Java application
In a simulation server environment where users are allowed to submit their own code to be run by the server, it would clearly be advantageous for any user-submitted code to be run in side a sandbox, ...
80
votes
8
answers
98k
views
Downloading Eclipse plug-in update sites for offline installation
A plug-in that I want to install provides an update site for installation. However, the Eclipse installation that I want to install it to is on a machine that is not connected to the Internet. Is ...
54
votes
4
answers
31k
views
Views in separate assemblies in ASP.NET MVC
I'm trying to create a webapplication where I want to be able to plug-in separate assemblies. I'm using MVC preview 4 combined with Unity for dependency injection, which I use to create the ...
123
votes
6
answers
51k
views
How to prevent ReflectionTypeLoadException when calling Assembly.GetTypes()
I'm trying to scan an assembly for types implementing a specific interface using code similar to this:
public List<Type> FindTypesImplementing<T>(string assemblyPath)
{
var ...
50
votes
8
answers
30k
views
How to Write OS X Finder plugin
I'm looking for a guide or sample code for writing Mac OS X Finder plugins? It would like to know how to do some simple actions:
adding image overlayers to icons
adding context menu items
listen to ...
11
votes
2
answers
4k
views
Grails unable to install plugin
I am trying to install webflow plugin version with my grails 1.3.9 version.
I have tried the following thing.,
Using command grails intall-plugin webflow 1.3.8
Result was : org.grails#grails-webflow;...
24
votes
6
answers
99k
views
file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known
I'm trying to download an image from a server using a PHP script on my website on xampp server.
The image is being downloaded using the function file_get_contents.
The php code for downloading on ...
155
votes
8
answers
110k
views
Best way to build a Plugin system with Java [closed]
How would you implement a Plugin-system for your Java application?
Is it possible to have an easy to use (for the developer) system which achieves the following:
Users put their plugins into a ...
215
votes
18
answers
120k
views
Building a minimal plugin architecture in Python
I have an application, written in Python, which is used by a fairly technical audience (scientists).
I'm looking for a good way to make the application extensible by the users, i.e. a scripting/...
55
votes
7
answers
40k
views
How do I create a Java sandbox?
I want to make my application to run other people's code, aka plugins. However, what options do I have to make this secure so they don't write malicious code. How do I control what they can or can not ...
78
votes
2
answers
53k
views
Eclipse plugins vs features vs dropins
What is the difference between these things from an Eclipse installation?
plugins
features
dropins folder
What is the correct use of these folders?