NetBeans 7.4 beta and Sass on windows 7 x64 - netbeans

as in the title I'm trying to connect the newest NetBeans release with sass. I've pulled the sass-stable from github, unzipped it on harddrive and selected in NetBeans tha path to sass file.
While saving the .scss file I'm getting the error: createProcess error=193, %1 is not a valid win application
My guess is that I should set NetBeans to sass.bat file, but there is no such file in sass package. Plkease, can someone direct me in what should I do to get it working?

Try to install Sass compiler using Ruby Gem, first install Ruby (from here) and then run
gem install sass
After that, path to Sass compiler (in my case) is
C:\Ruby200\bin\sass.bat

Related

Bundled JRE error with install4j installer packaged as msix

We create an installer with install4j that bundles the JRE. We then use the MSIX Packaging Tool to create a .msix installer, to publish on the Microsoft App Store.
When we install the .msix package for testing and try to run the application, we get the following error:
"The JVM found at .\jre is damaged. Please reinstall or define EXE4J_JAVA_HOME to point to an installed 64-bit JDK or JRE"
Note that the JRE is bundled with the installer, and it is actually installed in a folder called "jre" under the installation folder.
When we install from the .exe installer, everything works fine, this problem only happens after we create a .msix installer with the MSIX Packaging Tool. We've checked all the installed files and everything looks fine, but the launcher will not run.
Has anybody seen this problem? And is there a solution or workaround?

Failing at NetBeans Java Native Packaging for Linux

Doing Linux Native Package builds I'm running into problems with both RPM and DEB. In the case of RPMs, it's saying that rpmbuild cannot be found. Then for DEBs it reports the dpkg cannot be found.
Both dpkg and rpmbuild are installed and are in /usr/bin. Both are in my path and execute fine from CLI. Failure is the same whether I start NetBeans from GUI or CLI. I've even symlinked rpmbuild and dpkg into my NetBeans bin directory. No luck.
How does one go about getting NetBeans to find dpkg and rpmbuild so that it can complete native builds from the GUI? Currently working with SuSE LEAP 15.
For whatever reason, the "Package All Artifacts" option is currently generating .deb and .rpms, but I can't generate them individually. I'm OK with this. I think the most likely change to make that option work was symlinking the binaries from user bin into my netbeans bin.

Invalid command: KillProcDLL::KillProc NSIS

I install the latest version of the NSIS 3.0b0 version (latest one up today)
I copy the KillProcDLL plug-in to plug-in folder.
Try to compile a working script (didn't touch it - was working), but keep getting the Invalid command: KillProcDLL::KillProc.
NSIS 3.0 uses a different folder structure. You have to copy the KillProc plugin into the right subfolder of NSIS\Plugins!
Seems like the issue is the current version (3.0b0)
Solution:
Uninstall NSIS 3.0b0 version
Install prev. version NSIS 2.46
Copy the illProcDLL plug-in to plug-in folder

How to set JAVA_HOME in maven in Windows7 correctly

I am facing Issues in running MVN commands from command line though I am able to successfully run with eclipse.
> mvn -version
**Maven home:** D:\maven **Java version:** 1.7.0_45, vendor: Oracle Corporation
**Java home:** C:\Program Files (x86)\Java\jre7
etc etc.....
> echo %JAVA_HOME%
D:\ProgramFiles\Java\jdk1.7.0_25
User Variable Set JAVA_HOME to D:\ProgramFiles\Java\jdk1.7.0_25; and path to D:\ProgramFiles\Java\jdk1.7.0_25\bin.
I have already JDK 1.6 installed in default drive C below. C:\Program Files (x86)\Java\jdk1.6.0_27,C:\Program Files (x86)\Java\jre7
As per project requirement, we needed JDK1.7 installed. Due to permission issues (not able to install C drive), I installed JDK 1.7 in path D:\ProgramFiles\Java\jdk1.7.0_25,D:\ProgramFiles\Java\jre7.
On Eclipse pointing to JDK1.7 for installed JREs. And able to run all MAVEN Commands via eclipse. But note, the library files for jre is still pointing to C drive lib jar files only and not D drive jar files.(But as eclipse is working good I ignored this!)
But from command line getting error as "Perhaps you are running on a JRE rather than a JDK". No compiler etc. on running any maven command. Also maven's JAVA_HOME is still pointing to jre of C drive on running mvn -version.
Please help how to correct my problem. (Without uninstalling older version of Java As i dnt have permission to C drive folder)
Thanks in advance for help. :)

ArUco in Eclipse Ubuntu

I want to compile the augmented reality ArUco library, but this library documentation on the internet is too scarce and I am facing some problems. Could someone give me a little tutorial about how to compile it in the Eclipse? (could be another IDE)
I'm using the Ubuntu 12.10, Eclipse Juno. Thanks!
Look at the README file of the library, you will probably have to use cmake. Open a terminal and install cmake and OpenCv (the requirements for the library) with apt-get. I don't know their exact package names in Ubuntu, but try the obvious cmake and opencv. Once that is done, cd to the directory where you unpackaged the aruco library, and do the following:
mkdir build && cd build
cmake ..
make all
make install
You can change the installation prefix by using cmake -i .. or ccmake if it got installed too. As for setting up the library in your IDE, just make a note of which directories the library files (binaries and headers) got installed to, and make sure those are in the compiler's search path.