Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Re:Unsigned is the ONLY way to deploy Java Applets (Score 1) 96

Oh, yes of course, in the Java Control Panel. You make a good point on controlling this from the browser. I recall a long time ago there was an "Enable Java" checkbox in the Firefox control panel alongside "Enable JavaScript", which is where I was coming from on that. Looking in my Firefox options panel, I see that checkbox is now gone. So, you are right, times two! :)

Seeing as how average users cannot be trusted to take care of themselves, I think disabling the default for users' granting permissions to applets would be the only responsible thing for Oracle to do!

Comment Unsigned is the ONLY way to deploy Java Applets! (Score 5, Interesting) 96

My first attempt at a commercial website, CardMeeting, is built around a large, unsigned applet. Those "Grant, Deny?" dialog boxes are poison to anyone in the know, and I surely would never visit any site with them. Unsigned applets don't need any security warning dialog because they are untrusted and therefore will receive no privileged access to the user's system. Unsigned == heavily sandboxed. "Unsigned" sounds like a bad thing though, so that's something I could never tout to my users. But in reality, I was looking out for them! :D

I had a heck of a time figuring out how to get the CardMeeting applet jar packed up with scripts and making the applet "stream" data the way it does. Yeargh, I remember that pain. Anyhow, it makes me really sad that news like this may lead people to disable java applets; I think the unsigned form of applets is very powerful and much safer for average users than Flash ever was. I wish there was a way in the browser to disable only signed applets. Perhaps Oracle could bring the hammer down and go ahead and disable them by default in the next Java release.

My new website ClubCompy is 100% HTML+JavaScript. I wrote this whole simulated operating environment to teach kids to code with just the browser. I hope I don't start seeing people disable JavaScript on their browsers, then I'd be outta business!

Dave

Comment Re:results (Score 1) 163

completely agree, just want naive IE users to get a decent experience whenever they upgrade to the next version of windows. (windows 8 will be one of those rare win upgrades I will recommend to f&f when it comes out)

  I am displaying the standard "use at your own risk" message box when users launch the shell from the main site on IE and we detect there is no canvas tag support.

Comment Re:results (Score 1) 163

YES! Minimizing IE6-8 *DOES* improve performance, and I found that interesting as well.

My take is that IE is "close" to the kernel in a lot of ways, and so you get them turning off their blitter or whatever (even though the scene is still rendered in the offscreen buffer). IE really is a mix of very fast and very slow parts (mostly the JavaScript engine is the "slow".) You know, while I was developing that code, I found so many interesting ways to hack the code to squeeze out marginally better performance. IE8 is an odd egg, only slightly better than IE6 and 7, in my opinion. I'm praying IE9 will rock.

Comment Re:Could you please post your scores + H/W Specs? (Score 1) 163

Well, just trying to give the kids a simple language to start with. The site is for everyone, but it's supposed to be something a kindergardener or first grader could be introduced to. I feel we have a moral responsibility to get kids trained on how to code and learn 'em on what computers can be made to do. And so, that's why we made ClubCompy.

That said, I completely concur with you. We have plans to add a sort of "byte code" VM behind the scenes that we could target with an assembler or with a higher level language compiler. That's my dream to see that happen, anyways. Big kids need to learn assembly once they get bored with our "Tasty" language. ;)

Slashdot Top Deals

Your files are now being encrypted and thrown into the bit bucket. EOF

Working...