portable-applications

How to integrate Eclipse Portable with Java Portable?

我是研究僧i 提交于 2020-12-30 02:09:57
问题 I recently downloaded Eclipse Portable to do some Java Programming anywhere . I also downloaded Java Portable . How can I integrate Java Portable with Eclipse Portable ? I know that on the "installed" version of these two, I need to set up the CLASSPATH, PATH and JAVA_HOME variables in order to use the Java Compiler(javac.exe) How can I set this up on a thumb drive? How can I tell Eclipse to use my portable Java ? Please help me, and if possible please be specific and detailed procedure-wise.

How to integrate Eclipse Portable with Java Portable?

此生再无相见时 提交于 2020-12-30 02:05:46
问题 I recently downloaded Eclipse Portable to do some Java Programming anywhere . I also downloaded Java Portable . How can I integrate Java Portable with Eclipse Portable ? I know that on the "installed" version of these two, I need to set up the CLASSPATH, PATH and JAVA_HOME variables in order to use the Java Compiler(javac.exe) How can I set this up on a thumb drive? How can I tell Eclipse to use my portable Java ? Please help me, and if possible please be specific and detailed procedure-wise.

How do I set the Java path in Eclipse so I can run it on an external drive?

隐身守侯 提交于 2020-01-12 10:46:06
问题 I have Eclipse 3.5.1 and Java Portable (from Portableapps.com) installed on a portable hard drive and would like to point my Eclipse to use the portable apps Java version. This will allow me to use Eclipse on a computer even if Java isn't installed. How do I accomplish this? 回答1: Perhaps take a look at the Eclipse Portable project on SourceForge EDIT : Alternatively, edit the eclipse.ini file and add: -vm ..\path-to-jre\bin\javaw.exe [The new line after -vm matters] 回答2: I know it's been ages

What development tools do you carry on your USB drive? [closed]

梦想与她 提交于 2019-12-29 10:08:31
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . I've just bought a new 4GB USB thumb drive and I'm trying to decide what to put on it. I'm thinking about one of the webserver on a

What modern (PCL) equivalent for Handshake.XOnXOff?

旧城冷巷雨未停 提交于 2019-12-25 03:10:31
问题 I was using this legacy code: SerialPort serialPort = new SerialPort(); serialPort.BaudRate = 19200; serialPort.Handshake = Handshake.XOnXOff; ...but trying to port it to VS 2013 / .NET 4.5.1 in the "Core" (Portable Class Library) portion of a Xamarin solution, I get, " The name 'Handshake' does not exist in the current context " According to this, the Handshake enum is in System.IO.Ports namespace, but adding that to my usings evokes " The type or namespace name 'Ports' does not exist in the

making proprietary ELF binaries portable on Linux

点点圈 提交于 2019-12-19 16:54:58
问题 I am searching for a way to make existing proprietary ELF-binaries, which are linked against specific versions of system libraries, portable. With portable I mean making the executable work on every system with the same processor architecture and a compatible system kernel, without necessarily having the source code of the libraries (if there is no way without having the source code, it'll be fine too). So far I thought of two possibilities, but I don't know if they are at all possible and if

making proprietary ELF binaries portable on Linux

感情迁移 提交于 2019-12-19 16:53:59
问题 I am searching for a way to make existing proprietary ELF-binaries, which are linked against specific versions of system libraries, portable. With portable I mean making the executable work on every system with the same processor architecture and a compatible system kernel, without necessarily having the source code of the libraries (if there is no way without having the source code, it'll be fine too). So far I thought of two possibilities, but I don't know if they are at all possible and if

Can .Net Application be converted into a Portable App i.e. single .exe

╄→гoц情女王★ 提交于 2019-12-19 02:58:08
问题 Can a .Net application be converted into a single .exe portable application? i.e. no installer, it just runs? I imagine all the dll's, resources etc need embedding into the exe? If so, how would I do this? Thanks 回答1: You could use ILMerge to merge all assemblies into a single executable. But you still need the framework runtime installed. To turn your executable into a native executable you may take a look at this question. 回答2: No - you can't statically include the .net runtime in your own

How to get the original path of a portable Electron app?

℡╲_俬逩灬. 提交于 2019-12-18 11:57:54
问题 I have an Portable Electron App (packed with: electron-builder + asar, portable build) on Windows. I try to get the application path but it returns a path within the user\temp folder rather than the actual '.exe' file Is there any way to get the original app.exe path? I've tried the following: app.getAppPath() __dirname require.main.filename app-root-path and a few node modules The path I'm getting from my tests: C:\Users\xxx\AppData\Local\Temp\xxxxxx.tmp\app the actual .exe Path (where the

Portable Ruby on Rails environment

六月ゝ 毕业季﹏ 提交于 2019-12-17 16:38:18
问题 I got myself a new 8 gig USB key and I'm looking for a decent solution to have a portable RoR environment to learn on. I did the google on it and found a few possibilities, but I'm curious to hear some real life experiences and opinions. Thanks! 回答1: I like InstantRails, very easy to use, no installer, and does not modify your system environment. 回答2: InstantRails was replaced by [BitNami RubyStack] in 2007. http://bitnami.org/stack/rubystack 回答3: How to create a portable environment based on