- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Scala Applets
Fri, 2009-01-30, 13:44
Hey guys,
Has anyone created web applets with Scala? I've not tried but wondered
if it was even possible.
Cheers
Tim
Fri, 2009-01-30, 14:47
#2
Re: Scala Applets
http://technically.us/code/x/flocking-with-spde/
http://alumnus.caltech.edu/~jimmc/stringart/stringart.html
http://www.cafetecheria.com/pub/mines/
On Fri, Jan 30, 2009 at 4:44 AM, Tim Perrett <hello@timperrett.com> wrote:
http://alumnus.caltech.edu/~jimmc/stringart/stringart.html
http://www.cafetecheria.com/pub/mines/
On Fri, Jan 30, 2009 at 4:44 AM, Tim Perrett <hello@timperrett.com> wrote:
Hey guys,
Has anyone created web applets with Scala? I've not tried but wondered if it was even possible.
Cheers
Tim
Fri, 2009-01-30, 15:07
#3
Re: Scala Applets
Yes, but be prepared to spend some time learning how to shrink the scala-library (and scala-swing) jarfile, e.g. using ProGuard - do a search for this in the mailing-list archives to find out more.
Rob
2009/1/30 Tim Perrett <hello@timperrett.com>
Rob
2009/1/30 Tim Perrett <hello@timperrett.com>
Hey guys,
Has anyone created web applets with Scala? I've not tried but wondered if it was even possible.
Cheers
Tim
Fri, 2009-01-30, 16:27
#4
Re: Scala Applets
Ok, so the scala-library and scala-swing packages would also need to be
included in the applet download which could bloat the size considerably I
guess? How small do you think it could realistically get?
Cheers, Tim
On 30/01/2009 13:57, "Rob Dickens" wrote:
> Yes, but be prepared to spend some time learning how to shrink the
> scala-library (and scala-swing) jarfile, e.g. using ProGuard - do a search for
> this in the mailing-list archives to find out more.
>
> Rob
>
> 2009/1/30 Tim Perrett
>> Hey guys,
>>
>> Has anyone created web applets with Scala? I've not tried but wondered if it
>> was even possible.
>>
>> Cheers
>>
>> Tim
>
Fri, 2009-01-30, 16:47
#5
Re: Scala Applets
That depends on how many classes you make use of, since only those will be included in the shrunken version. In my (so far, limited) experience, the resulting jar is easily small enough to be downloaded as part of the applet.
2009/1/30 Tim Perrett <hello@timperrett.com>
--
Rob, Lafros.com
2009/1/30 Tim Perrett <hello@timperrett.com>
Ok, so the scala-library and scala-swing packages would also need to be
included in the applet download which could bloat the size considerably I
guess? How small do you think it could realistically get?
Cheers, Tim
On 30/01/2009 13:57, "Rob Dickens" <arctic.bob@googlemail.com> wrote:
> Yes, but be prepared to spend some time learning how to shrink the
> scala-library (and scala-swing) jarfile, e.g. using ProGuard - do a search for
> this in the mailing-list archives to find out more.
>
> Rob
>
> 2009/1/30 Tim Perrett <hello@timperrett.com>
>> Hey guys,
>>
>> Has anyone created web applets with Scala? I've not tried but wondered if it
>> was even possible.
>>
>> Cheers
>>
>> Tim
>
--
Rob, Lafros.com
Fri, 2009-01-30, 17:47
#6
Re: Scala Applets
I've been doing it for my website. An example:
http://apps.kogics.net/subtract
It's working out pretty well. I use Proguard to shrink and package my applet
jars, and then compress them further with pack200. I get applet jar sizes in
the ~30K range.
Cheers,
- Lalit
:::
Lalit Pant
Founder, Kogics
http://www.kogics.net
timperrett wrote:
>
> Hey guys,
>
> Has anyone created web applets with Scala? I've not tried but wondered
> if it was even possible.
>
> Cheers
>
> Tim
>
>
Fri, 2009-01-30, 18:07
#7
Re: Scala Applets
I gather that pack200 only works with java-web-start and not embedded applets?
On Fri, Jan 30, 2009 at 5:42 PM, Lalit Pant <lalit_pant@yahoo.com> wrote:
On Fri, Jan 30, 2009 at 5:42 PM, Lalit Pant <lalit_pant@yahoo.com> wrote:
I've been doing it for my website. An example:
http://apps.kogics.net/subtract
It's working out pretty well. I use Proguard to shrink and package my applet
jars, and then compress them further with pack200. I get applet jar sizes in
the ~30K range.
Cheers,
- Lalit
:::
Lalit Pant
Founder, Kogics
http://www.kogics.net
timperrett wrote:
>
> Hey guys,
>
> Has anyone created web applets with Scala? I've not tried but wondered
> if it was even possible.
>
> Cheers
>
> Tim
>
>
--
View this message in context: http://www.nabble.com/Scala-Applets-tp21746519p21750844.html
Sent from the Scala - User mailing list archive at Nabble.com.
Fri, 2009-01-30, 18:27
#8
Re: Scala Applets
Pack200 works with applets as of Java6u10. Further info here:
http://java.sun.com/javase/6/docs/technotes/guides/jweb/tools/pack200.html
Cheers,
- Lalit
:::
Lalit Pant
Founder, Kogics
http://www.kogics.net
Trond Olsen wrote:
>
> I gather that pack200 only works with java-web-start and not embedded
> applets?
>
> On Fri, Jan 30, 2009 at 5:42 PM, Lalit Pant wrote:
>
>>
>> I've been doing it for my website. An example:
>> http://apps.kogics.net/subtract
>>
>> It's working out pretty well. I use Proguard to shrink and package my
>> applet
>> jars, and then compress them further with pack200. I get applet jar sizes
>> in
>> the ~30K range.
>>
>> Cheers,
>> - Lalit
>>
>> :::
>> Lalit Pant
>> Founder, Kogics
>> http://www.kogics.net
>>
>>
>> timperrett wrote:
>> >
>> > Hey guys,
>> >
>> > Has anyone created web applets with Scala? I've not tried but wondered
>> > if it was even possible.
>> >
>> > Cheers
>> >
>> > Tim
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Scala-Applets-tp21746519p21750844.html
>> Sent from the Scala - User mailing list archive at Nabble.com.
>>
>>
>
>
Fri, 2009-01-30, 18:37
#9
Re: Scala Applets
I'll answer myself... Didn't notice that it got included in Java SE 6 update 10 (http://java.sun.com/developer/technicalArticles/javase/java6u10/#usability). My pet-project is using applet and almost got junked because of memory limitations, which got included in this release also.
On Fri, Jan 30, 2009 at 5:59 PM, Trond Olsen <tolsen77@gmail.com> wrote:
On Fri, Jan 30, 2009 at 5:59 PM, Trond Olsen <tolsen77@gmail.com> wrote:
I gather that pack200 only works with java-web-start and not embedded applets?
On Fri, Jan 30, 2009 at 5:42 PM, Lalit Pant <lalit_pant@yahoo.com> wrote:
I've been doing it for my website. An example:
http://apps.kogics.net/subtract
It's working out pretty well. I use Proguard to shrink and package my applet
jars, and then compress them further with pack200. I get applet jar sizes in
the ~30K range.
Cheers,
- Lalit
:::
Lalit Pant
Founder, Kogics
http://www.kogics.net
timperrett wrote:
>
> Hey guys,
>
> Has anyone created web applets with Scala? I've not tried but wondered
> if it was even possible.
>
> Cheers
>
> Tim
>
>
--
View this message in context: http://www.nabble.com/Scala-Applets-tp21746519p21750844.html
Sent from the Scala - User mailing list archive at Nabble.com.
Fri, 2009-01-30, 21:27
#10
Re: Scala Applets
James,
Too cool! Thanks!
Best wishes,
--greg
On Fri, Jan 30, 2009 at 5:44 AM, James Iry <jamesiry@gmail.com> wrote:
--
L.G. Meredith
Managing Partner
Biosimilarity LLC
806 55th St NE
Seattle, WA 98105
+1 206.650.3740
http://biosimilarity.blogspot.com
Too cool! Thanks!
Best wishes,
--greg
On Fri, Jan 30, 2009 at 5:44 AM, James Iry <jamesiry@gmail.com> wrote:
http://technically.us/code/x/flocking-with-spde/
http://alumnus.caltech.edu/~jimmc/stringart/stringart.html
http://www.cafetecheria.com/pub/mines/
On Fri, Jan 30, 2009 at 4:44 AM, Tim Perrett <hello@timperrett.com> wrote:
Hey guys,
Has anyone created web applets with Scala? I've not tried but wondered if it was even possible.
Cheers
Tim
--
L.G. Meredith
Managing Partner
Biosimilarity LLC
806 55th St NE
Seattle, WA 98105
+1 206.650.3740
http://biosimilarity.blogspot.com
On Fri, Jan 30, 2009 at 13:44, Tim Perrett <hello@timperrett.com> wrote: