|
I am writing a Java applet, and would like to know the best way to include it in a web page.
I'd like it to prompt the user to install JRE if she hasn't it already. This feature should (ideally) work cross-browser on any OS Java runs on. Another requirement...
Started by silviot on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I imagine....
Even Sun recommends using the applet tag except on Intranets unless you are on an intranet .
As Alex B comments, most browsers will prompt the user to install at that point if they don't have the JRE .
I would recommend just using the applet tag.
|
|
As time goes by, it appears more and more like functional programming is having more of an effect on other programming languages. We're starting on Prolog in my AI class, and it seems like there are some things there that would make programming in non...
Started by Jason Baker on
, 14 posts
by 14 people.
Answer Snippets (Read the full thread at stackoverflow):
I remember back in '80 challenging a professor to demonstrate .
hasn't caught on too well, either.
|
|
Hi all,
After serveral years developement, I believe that there is no SIMPLE application in the world, though Clients often say "I have a simple requirement". There are too many things to think and to do in a software development. So I start thinking ...
Started by Zach on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
Here's my list of things to add:
1) Deployment - Will this be a web application, desktop application that has an installer, or just... .
End-users will have no idea what to do with a .zip
Security and acceptable performance
Error handling .
An installer.
|
Ask your Facebook Friends
|
I graduated about 4 months ago and simply have not worked. I have had a few family problems which have kept me from applying for work. How does this look for potential employers? I have tried to keep my skills up with various projects.
Started by Recursion on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Well I'm in college still so you don't have to take my opinion on this matter but I would think that IF an employer ask (and I stress that "if") why you didn't get a job right after school (which seems weird to me), you should just explain that you had... .
|
|
Why do programmers tend to seek to assembly instead of GPGPU when running into serious performance problems? I know that there are different architectures, but implementing an algorithm in two different architectures seems like a reasonable cost when ...
Started by David on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It's much cheaper and faster to buy 8-core machine and use something like PLINQ than optimize processor ... .
Currently programmers more tend to seek for simple ways of writing multithreaded programs in higher-level languages than writing something in ASM .
|
|
Just curious. It seems like jQuery has everything Prototype has and more. And is better.
Started by mculp on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
And even at this point, is there a truly compelling reason to switch? I switched from Prototype to jQuery about 2 years ago, but I ... .
I can only speculate, but as I recall, at the time Prototype was included, jQuery wasn't everything that Prototype was .
|
|
With all the new "modern" languages out today, how is it that C is still heralded as the fastest and "closest to the machine"? I don't really believe in there ever being only one correct way to do things, and C has been around for a really long time (...
Started by Jason on
, 31 posts
by 31 people.
Answer Snippets (Read the full thread at stackoverflow):
On the....
The heavyweight numeric libraries at the base of things like Matlab and Numpy are still written in Fortran .
Fortran is faster than C for numerical tasks because of the way it handles memory references (C pointers are more difficult to optimize) .
|
|
A couple of days ago I had this idea, why not implementing asp-classic as another language in .net...
it would have helped lots of people to migrate to the new platform...
I mean there's IronRuby, IronPython, etc...
It sounded to me like a great idea....
Answer Snippets (Read the full thread at stackoverflow):
Now so you don't....
Sometimes I agree, sometimes I disagree with their new view.. .
I guess they figured that using the maintenance cost for new development was a better investment .
Because Microsoft has given up on backwards compatibility of their API's .
|
|
What features am I missing when I use vim instead of emacs?
Started by Christian on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at superuser):
Edit:
There is also a really good comparison here....
Better completion and lisp instead of vimscript...
How about phases of the moon?
http://www.gnu.org/software/emacs//manual/html_node/emacs/Lunar-Phases.html
There are no foot pedals available vor vim .
|
|
There's a dozen services that provide hosted version control, hosted ticket tracking, hosted project management, and combinations of all of the above, there's even hosted web-based IDEs. But nobody's yet offered a hosted continuous integration service...
Started by Teflon Ted on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
There are also potential security issues....
The most immediate problem with such a service would be actually estimating the CPU needed - build services is potentially unbounded, especially when you need to cater for a large multitude of types of projects .
|