Where to place libqca2 plugin in Windows? - plugins

I've successfully built libqca2 and qca-ossl2 plugin , but where should I place qca-ossl2.dll ?
If I place the dll in the same folder with my application , it just tell me "XXX is not supported" , which indicates the plugin is not loaded.

You should create a folder named "crypto" in your application folder, and put the plugin dll there.
The OpenSSL dlls (libeay32.dll and libssl32.dll) should be copied directly in the application folder.

Related

Can't set WorkspaceProject root folder as project directory

In Liferay Developer Studio I have created Liferay modules in the past, but now I can't seem to be able to create any:
Whatever the name I enter, I am told:
Can't set WorkspaceProject root folder as project directory.
What am I doing wrong?
The project cannot be inside liferay-workspace, it is its base folder. It needs to be inside theme or modules folder.
Then it will a create project for you over there once you click finish.
I ran into the same problem with Liferay Developer Studio 3.1.2.
If you set your Liferay Workspace to be the same as the Eclipse workspace, you will face this issue.
I solved the problem by:
deleting the default "liferay-workspace" and then creating a "workspaces" folder for Eclipse and a "Workspace1" folder for liferay (within Studio).
Within Studio, the root folder is now called "Workspace1" and I can set up gradle.properties to specify where the plugins should be deployed.
Modules can be created without issues now.

Linked Files and Folder in IntelliJ

As previous Eclipse user switched to IntelliJ I would like to be able to access folder external to my project from inside the IDE, while developing.
In Eclipse I was using the feature Creating linked resources.
I wonder if there is any feature in IntelliJ that helps me to access external files and folder in a similar way (for instance, if I want to edit the configuration of my application server which is located outside my project).
Yes you can do it by adding an new content root in your module.
You do that from
Project Structure (alt+ctrl+shift+s) - Modules - "My-Module" - + Add Content root
Now you have the contents of the added folder available in your project.
I was searching for a way to get the asset folder link working in IntelliJ as it was working in Eclipse and I found following link in the wikis of libgdx itself.
Linking the asset directories
It describes basically three approaches:
Just copy the asset folder into the desktop folder. (BAD)
Use the asset folder in the android project as working directory for the desktop project through 'Run-Configurations'. (GOOD)
Create a symbolic-link (GOOD)
I tested the 2nd option and it's working fine for me.

Install IDE helper file for netbeans

I'm searching for auto complete way for Laravel 4 and found this
but i don't know how to use it , i have net beans 7.2 ,so how to install the file ?
Just put the IDE helper file somewhere in your project directory and open the project in NetBeans, it will index the file and you'll be good to go. I leave it in the root of my app directory.
I use this file: https://gist.github.com/barryvdh/5227822
I downloaded this helper (https://gist.github.com/barryvdh/5227822#) and placed it in the root directory of the laravel project folder. Restarted the netbeans. It is working for me.

What is the dropins folder in Eclipse/JBoss Developer Studio?

I am new to Eclipse and was wondering what is the dropins folder? Where exactly is it(I am on Windows 8)?
Basically i wanted to use this dark UI theme Roger Dudler made (https://github.com/eclipse-color-theme/eclipse-ui-themes) for Eclipse Juno. If you see near the bottom of this link, he says to place the zip folder into the "dropins folder". I have no idea :(
Thanks
dropins directory in eclipse (Path is Eclipse_home/dropins, which is at same level as plugins folder is present in eclipse) is a default watched directory.
Instead of installing plugins you simply put them under this folder (in your case com.github.eclipsecolortheme.themes_1.0.0.201207121019.jar) and restart the eclipse they will be picked up automatically on next start.
Please note that the dropins folder is not supported or encouraged in JBoss Developer Studio.
Plugin providers should really create an update site (or update site zip) containing their plugin bundles, and then users can simply do Help > Install new ... to install correctly using the fully supported p2/Install Manager method of installation.
Note too that Tycho now supports creation of update sites from nothing more than a pom.xml and category.xml file, and you don't need to create features anymore toadd your to the category.xml.
So there's really no reason to provide a plugin w/o wrapping it with the correct p2 metadata.
The dropins folder is if not exists it must be created. The location is the same as the executable of the IDE.

convert/compile a netbeans project to an .exe file

I have a netbeans project and I need to create an .exe file out of it.
I want it to run this program on a friends computer who doesn't have netbeans installed.
So how do I do this?
If its a java project then just compile and build the project. go to the project folder->dist folder, copy the .jar file and give it to your friend to use. ur friend needs to have JRE installed on his system.