Cloud IDE for java? [closed] - java

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I’m currently developing code meant to interact with the API of the Bitcoin exchange with an algorithm deciding whether to buy or sell and all. However, I can’t have my laptop running 24/7, so I was wondering, if there exist another option, like some sort of online/cloud IDE for java, which had a workspace to handle files, and could run my program for me - possibly for a small fee? Thank you :)

What you are looking for is How to Deploy a Java Applet. Here is a nice tutorial.
http://docs.oracle.com/javase/tutorial/deployment/applet/index.html
If you want your applet to be available from anywhere, you will have to embed it on a page that is hosted on the Internet. Getting a page hosted costs money, especially if you don't host it yourself, but there are thousands of well-known companies that provide this service. I can't provide any advice on which one is best, for fear of being swallowed alive by StackOverflow.
Once you have a page hosted, you can embed your Java Applet by following this tutorial.
http://www.echoecho.com/applets01.htm

Related

Making a simulation of congestion control in java [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Which java framework is best for making of simulation of TCP's congestion control mechanism. I have started working with java Applets now But some articles on net makes me confused because they say java applets and awt are outdated.
The purpose of Applets is that they run in a browser. They have become largely unpopular, due to requiring the Java plugin installed & many security problems with same.
People have been widely recommended to disable Java plugins to prevent malware exploits using applet/ Java web start technology, so you will find it difficult to get people to see/ or run any applet you did make.
If you want to make a GUI/ graphical program, use Swing (or conceivably JavaFX) rather than AWT. AWT is grossly outdated.
Unless you really need your simulation to run in a browser, just make it a proper standalone application.

which library should I use for big data project [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
The project aims to analyzing the patients’ illness cells using Big Data technology to indicate which treatments could have the best outcomes and fewest side effects.
But I think using python or java library. I can't decide which language's library is more useful for my project. if you have any experience , could you help me. I do not know about anything about big data.
Check out Anaconda. It's got just about every library you'll need for big data analysis bundled into one installer.
The Anaconda distro also includes Disco MapReduce, so you have all the tools you need to set up a distributed file system MapReduce farm for really large analysis jobs.

Can anyone recommend a library with which I can login to a web form, and than execute a javascript function to upload a file? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I need to be able to fill out a login form, submit the login information. And then it should upload a file. The catch is that I need to be able to do this at least 100 times concurrently.
I've tried selenium, but selenium gets really slow when you try to start multiple driver.
Because you tagged this with Java and Python, I'm assuming your open to using either language.
If you are open to using Python, you could create your own API with mechanize and beautiful soup to interact with the website and upload the files. Your own creation would allow you to meet your concurrent uploading requirements.
If need be, you could speed up whatever pre-processing you need to do with NumPy and Numba
Hope this helps!

Open source mailing list software with web services [duplicate]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Can anyone recommend a based open source mailing list software ?
The following would all be desired if possible:
Java as the underlying language, as we have people who are experienced with Java
Something which is packaged as a war and can be dropped into a Tomcat server
A sleek interface
Underlying data should be reasonably transparent
Good support for groups - sometimes we want to send mail to everyone, sometimes only people working in a certain area etc.
This is for a non-profit tax-payer funded research organization, so open-source (free) is a high priority. Thanks.
http://subetha.tigris.org/
Apache James http://james.apache.org/server/2.3.2/mailing_lists.html

Flex/Air replacement for desktop [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I want to create a simple desktop admin application for an IOS app that will work with a REST api I've built.
Couple of years ago I would go with Flex/Air, just makes it very simple. But since I am butt-hurt with the way Adobe have handled Flash in general, I am looking to write it using some different tool.
So far, Java Swing looks rubbish (UI-wise I mean). Others aren't cross platform and often too complicated.
Any suggestion?
Have you heard of JavaFx
http://javafx.com/
Check it out, it is cross platform and a good UI framework for RIA

Categories