Groups | Search | Server Info | Login | Register


Groups > comp.lang.java.programmer > #4770

Re: Android?Why Dalvik?

From BGB <cr88192@hotmail.com>
Newsgroups comp.lang.java.programmer
Subject Re: Android?Why Dalvik?
Date 2011-05-30 15:55 -0700
Organization albasani.net
Message-ID <is17fl$viv$1@news.albasani.net> (permalink)
References (5 earlier) <irvift$98d$2@lust.ihug.co.nz> <irvris$orf$1@news.albasani.net> <MPG.284d80d0fd1becca98976b@news.justthe.net> <is0to0$b1k$1@news.albasani.net> <is0vhm$ha$1@speranza.aioe.org>

Show all headers | View raw


On 5/30/2011 1:43 PM, Nasser M. Abbasi wrote:
> On 5/30/2011 1:09 PM, BGB wrote:
>
>>
>> for source compatibility, yes, cross-platform GUI is a big issue.
>>
>>
>> for binary compatibility, the much bigger issue is the lack of a common
>> set of binary formats, as well as different CPU architectures and
>> operating modes.
>>
>> a VM could address this.
>>
>>
>
> The funny thing, is that Java when it came out, was supposed to
> solve all these differences by putting a virtual OS between the
> application and the OS, this way one writes to this one common
> virtual OS (the VM) and not have to worry about the different
> OS's below it.
>
> But now it seems we have different virtual OS's also coming out.
>
> So, I have an brilliant solution I'd like to suggest:
>
> we need is a SUPER VM
>
> A super virtual OS, is a virtual OS which runs on top of a
> virtual OS.
>
> i.e. the super VM, hides which VM it is running under, so it
> runs on top of all the other VM's:
>
> SUPER VM
> Java VM, Google VM, Windows NET VM, etc..
> WINDOWS, LINUX, Mac, VMS, etc..
>
> This offourse, until one comes up with a different version of the
> SUPER VM, then we go and make a SUPER SUPPER VM. So we need
> to make sure this time, that we have provisions in place to
> prevent someone from making a different SUPER VM.
>
> I would like to go patent this now.
>


well, IMO, trying to homogenize the environment is itself a problem...

this is actually part of what I think is a weak-point of the JVM strategy:
they try to gloss over the real OS/... by basically creating a new layer 
of abstractions, and wrapping everything in the new API.

to many OS's? make a "one virtual OS to rule them all" (JVM).
too many languages? make a "one language to rule them all" (Java).

sadly, this strategy is prone to eventually show its limitations, as now 
the VM/framework implementer has taken on the responsibility of 
providing for pretty much any major feature the OS's might provide, and 
that apps might want to make use of, and the issue of what features may 
and may not exist on various targets, ...


my idea was less drastic:
rather than by creating an entirely new set of abstractions, one creates 
a VM which is itself better suited to heterogeneous environments.

in C, we called this mechanism "#ifdef".
a new language can likewise devise newer, ifdef-like mechanisms.


for example, in my present language, this would be done something like:

$[ifdef(SOMEFEATURE)] public void someMethod()
{
     ...
}

and:
$[ifdef(SOMEFEATURE)]
{
     ...
}

where: $[...] is the present syntax for attributes (they started out 
just as MS-style "[...]" attributes, but were more recently changed due 
to the prior syntax creating syntactic ambiguity in some cases).


the advantage then, is that one doesn't have to provide as much, as for 
any features not provided directly by the framework, well, one can go 
back to the OS.

for example, I can make Win32 API calls from my scripting HLL, not 
because I explicitly implemented support for Win32 API functionality, 
but more because the VM can see all of the Win32 API functionality...

granted, yes, this same functionality will be absent if running on a 
different OS, say, Linux, hence the need for an ifdef-like mechanism...


was recently though thinking of the issue like "maybe, you know, my 
language might need some sort of standard library...". since, as-is, 
nearly everything I have been doing API-wise has basically been via 
making calls into C.


if by some chance a JVM port were made of the VM, then pretty much 
everything would have to redirect to the Java class library instead.

lacking a defined API of some sort, this could be a little ugly.

but, then I have to come up with what the API should look like.
I could do nested packages and classes, or I could do it more like a 
pseudo C style (maybe with packages and a lot of package-level 
functions). it is... a decision...

my present personal leaning is mostly to do things C style, with 
classes/... for some things, but not as the main style.

but, also possible would be to just partly rip off the design of the 
Java class library... Packages: "bs.lang", "bs.io", "bs.util", ... 
albeit I would probably diverge somewhat WRT the "io" package, 
personally as I can't see just why there needs to be so many classes in 
there, and would much rather assume doing file IO in a more C-like manner...

for example:

import bs.io;

void loadSomething()
{
	File fd;
	string[] sarr;
	fd=File.open("foo.txt", "rt");
	while(!fd.eof)
	{
		sarr=fd.gets().split();
		if(!sarr[0])continue;
		if(*sarr[0]==';')continue;
		switch(sarr[0])
		{
		case "foo": ... break;
		case "bar": ... break;
		default: ... break;
		}
	}
}

past ideas here have also included putting all standard exceptions into 
their own package, but there is not as much reason to do so with my 
language, partly because I can put multiple classes into a single file 
and so they are less liable to clutter up the package.

or such...

Back to comp.lang.java.programmer | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-29 12:48 +1200
  Re: Android—Why Dalvik? Roedy Green <see_website@mindprod.com.invalid> - 2011-05-28 21:28 -0700
    Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-29 16:56 +1200
      Re: Android—Why Dalvik? "Nasser M. Abbasi" <nma@12000.org> - 2011-05-28 23:17 -0700
        Re: Android—Why Dalvik? Lew <noone@lewscanon.com> - 2011-05-29 09:32 -0400
          Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-29 09:55 -0700
            Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-30 12:45 +1200
              Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-29 19:49 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-30 16:21 +1200
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-29 22:37 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-30 19:12 +1200
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-30 01:03 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-30 22:13 +1200
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-30 03:58 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-30 23:20 +1200
        Re: Android—Why Dalvik? Roedy Green <see_website@mindprod.com.invalid> - 2011-05-29 19:52 -0700
          Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-30 16:20 +1200
            Re: Android—Why Dalvik? Lew <noone@lewscanon.com> - 2011-05-30 01:14 -0400
        Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-05-30 00:33 -0700
          Re: Android?Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-30 19:54 +1200
            Re: Android?Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-30 03:26 -0700
              Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-05-30 11:24 -0700
                Re: Android?Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-30 13:09 -0700
                Re: Android?Why Dalvik? "Nasser M. Abbasi" <nma@12000.org> - 2011-05-30 13:43 -0700
                Re: Android?Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-30 15:55 -0700
                Re: Android?Why Dalvik? "Nasser M. Abbasi" <nma@12000.org> - 2011-05-30 16:32 -0700
                Re: Android?Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-30 18:10 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-31 13:56 +1200
                Re: Android—Why Dalvik? Joshua Cranmer <Pidgeot18@verizon.invalid> - 2011-05-31 11:10 -0400
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-01 07:13 +1200
                Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-05-31 12:43 -0700
                Re: Android?Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-01 08:00 +1200
                Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-05-31 13:33 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-01 09:29 +1200
                Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-05-31 17:13 -0700
                Re: Android?Why Dalvik? Andreas Leitgeb <avl@gamma.logic.tuwien.ac.at> - 2011-05-31 22:03 +0000
                Re: Android?Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-31 16:08 -0700
                Re: Android—Why Dalvik? Andreas Leitgeb <avl@gamma.logic.tuwien.ac.at> - 2011-05-31 21:09 +0000
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-01 09:27 +1200
                Re: Android—Why Dalvik? Andreas Leitgeb <avl@gamma.logic.tuwien.ac.at> - 2011-05-31 22:25 +0000
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-31 15:20 -0700
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-31 12:11 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-01 07:59 +1200
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-31 15:01 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-01 15:05 +1200
                Re: Android—Why Dalvik? Joshua Cranmer <Pidgeot18@verizon.invalid> - 2011-06-01 00:58 -0400
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-01 03:21 -0700
                Re: Android—Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-03 09:40 -0400
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-03 12:17 -0700
                Re: Android—Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-03 17:06 -0400
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-03 16:04 -0700
                Re: Android—Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-07 11:42 -0400
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-02 11:54 +1200
                Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-06-01 17:43 -0700
                Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-06-01 17:43 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-03 15:08 +1200
                Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-06-02 20:50 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-03 17:34 +1200
                Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-06-02 23:20 -0700
                Re: Android?Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-03 18:43 +1200
                Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-06-03 08:27 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-04 16:02 +1200
                Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-06-03 22:24 -0700
                Re: Android?Why Dalvik? Gene Wirchenko <genew@ocis.net> - 2011-06-06 13:29 -0700
                Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-06-06 14:15 -0700
                Re: Android?Why Dalvik? Gene Wirchenko <genew@ocis.net> - 2011-06-07 13:59 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-08 12:55 +1200
                Re: Android—Why Dalvik? Arved Sandstrom <asandstrom3minus1@eastlink.ca> - 2011-06-08 06:18 -0300
                Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-06-08 07:06 -0700
                Re: Android?Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-08 10:25 -0400
                Re: Android?Why Dalvik? Gene Wirchenko <genew@ocis.net> - 2011-06-08 10:56 -0700
                Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-06-08 14:11 -0700
                Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-06-08 14:09 -0700
                Re: Android?Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-03 09:46 -0400
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-04 16:08 +1200
                Re: Android—Why Dalvik? Joshua Cranmer <Pidgeot18@verizon.invalid> - 2011-06-04 02:40 -0400
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-05 15:46 +1200
                Re: Android—Why Dalvik? Gene Wirchenko <genew@ocis.net> - 2011-06-06 13:26 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-07 10:23 +1200
                Re: Android—Why Dalvik? Gene Wirchenko <genew@ocis.net> - 2011-06-07 13:55 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-08 12:55 +1200
                Re: Android—Why Dalvik? "H.J. Sander Bruggink" <sander.bruggink@uni-due.de> - 2011-06-06 11:21 +0200
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-07 13:40 +1200
                Re: Android—Why Dalvik? "H.J. Sander Bruggink" <sander.bruggink@uni-due.de> - 2011-06-07 10:16 +0200
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-07 01:30 -0700
                Re: Android—Why Dalvik? rossum <rossum48@coldmail.com> - 2011-06-02 10:35 +0100
                Re: Android�Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-02 03:32 -0700
                Re: Android�Why Dalvik? Joshua Cranmer <Pidgeot18@verizon.invalid> - 2011-06-02 11:07 -0400
                Re: Android�Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-02 10:07 -0700
                Re: Android—Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-03 09:38 -0400
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-04 12:21 +1200
                Re: Android—Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-07 11:48 -0400
                Re: Android—Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-03 09:31 -0400
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-03 12:45 -0700
                Re: Android—Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-03 17:14 -0400
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-04 12:23 +1200
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-03 19:01 -0700
                Re: Android—Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-07 11:59 -0400
                Re: Android—Why Dalvik? Joshua Cranmer <Pidgeot18@verizon.invalid> - 2011-06-04 02:44 -0400
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-05 11:11 +1200
                Re: Android—Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-08 10:10 -0400
                Re: Android—Why Dalvik? Arved Sandstrom <asandstrom3minus1@eastlink.ca> - 2011-06-08 20:38 -0300
                Re: Android—Why Dalvik? Joshua Cranmer <Pidgeot18@verizon.invalid> - 2011-06-08 17:28 -0700
                Re: Android—Why Dalvik? Arved Sandstrom <asandstrom3minus1@eastlink.ca> - 2011-06-08 23:41 -0300
                Re: Android—Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-11 13:38 -0400
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-08 22:46 -0700
                Re: Android---Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-11 13:39 -0400
                Re: Android?Why Dalvik? David Lamb <dalamb@cs.queensu.ca> - 2011-06-03 22:38 -0400
                Re: Android?Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-03 22:12 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-31 13:54 +1200
                Re: Android—Why Dalvik? Andreas Leitgeb <avl@gamma.logic.tuwien.ac.at> - 2011-05-31 14:25 +0000
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-01 08:02 +1200
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-31 14:26 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-01 11:33 +1200
                Re: Android—Why Dalvik? "Nasser M. Abbasi" <nma@12000.org> - 2011-05-31 19:43 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-01 15:03 +1200
                Re: Android—Why Dalvik? "Nasser M. Abbasi" <nma@12000.org> - 2011-05-31 20:15 -0700
                Re: Android—Why Dalvik? Joshua Cranmer <Pidgeot18@verizon.invalid> - 2011-06-01 01:04 -0400
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-01 03:30 -0700
                Re: Android—Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-03 10:05 -0400
                Re: Android—Why Dalvik? Joshua Cranmer <Pidgeot18@verizon.invalid> - 2011-06-03 11:16 -0400
                Re: Android—Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-03 17:36 -0400
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-04 12:14 +1200
                Re: Android—Why Dalvik? Joshua Cranmer <Pidgeot18@verizon.invalid> - 2011-06-04 02:47 -0400
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-05 15:40 +1200
                Re: Android—Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-07 12:09 -0400
                Re: Android—Why Dalvik? Arved Sandstrom <asandstrom3minus1@eastlink.ca> - 2011-06-09 07:55 -0300
                Re: Android---Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-11 13:43 -0400
                Re: Android---Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-06-11 14:57 -0700
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-03 13:05 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-04 12:13 +1200
                Re: Android—Why Dalvik? Arved Sandstrom <asandstrom3minus1@eastlink.ca> - 2011-06-03 21:52 -0300
                Re: Android—Why Dalvik? Joshua Cranmer <Pidgeot18@verizon.invalid> - 2011-06-04 02:52 -0400
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-05 15:45 +1200
                Re: Android—Why Dalvik? Arved Sandstrom <asandstrom3minus1@eastlink.ca> - 2011-06-05 01:04 -0300
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-06 18:52 +1200
                Re: Android—Why Dalvik? "Nasser M. Abbasi" <nma@12000.org> - 2011-06-06 01:35 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-06 23:05 +1200
                Re: Android—Why Dalvik? "Nasser M. Abbasi" <nma@12000.org> - 2011-06-06 06:32 -0700
                Re: Android—Why Dalvik? Joshua Cranmer <Pidgeot18@verizon.invalid> - 2011-06-06 11:19 -0400
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-07 10:21 +1200
                Re: Android—Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-08 10:30 -0400
                Re: Android—Why Dalvik? Arved Sandstrom <asandstrom3minus1@eastlink.ca> - 2011-06-07 06:53 -0300
                Re: Android—Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-08 10:37 -0400
                Re: Android—Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-07 12:26 -0400
                Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-05-30 19:12 -0700
                Re: Android?Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-30 21:58 -0700
                Re: Android?Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-03 17:42 -0400
                Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-06-03 18:48 -0700
                Re: Android?Why Dalvik? Gene Wirchenko <genew@ocis.net> - 2011-06-06 13:28 -0700
                Re: Android?Why Dalvik? Michael Wojcik <mwojcik@newsguy.com> - 2011-06-08 10:51 -0400
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-04 12:10 +1200
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-03 18:47 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-04 16:00 +1200
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-03 22:01 -0700
                Re: Android—Why Dalvik? Abu Yahya <abu_yahya@invalid.com> - 2011-06-05 23:28 +0530
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-05 12:15 -0700
                Re: Android—Why Dalvik? Abu Yahya <abu_yahya@invalid.com> - 2011-06-06 06:25 +0530
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-06 01:45 -0700
                Re: Android—Why Dalvik? Abu Yahya <abu_yahya@invalid.com> - 2011-06-08 21:46 +0530
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-08 12:08 -0700
                Re: Android—Why Dalvik? Gene Wirchenko <genew@ocis.net> - 2011-06-06 13:16 -0700
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-06 13:32 -0700
                Re: Android—Why Dalvik? Tobias Blass <tobiasblass@gmx.net> - 2011-06-05 20:08 +0000
                Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-06-05 14:55 -0700
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-05 14:53 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-06 18:50 +1200
                Re: Android—Why Dalvik? Abu Yahya <abu_yahya@invalid.com> - 2011-06-11 23:56 +0530
                Re: Android—Why Dalvik? Gene Wirchenko <genew@ocis.net> - 2011-06-06 13:14 -0700
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-06 13:38 -0700
                Re: Android—Why Dalvik? Martin Gregorie <martin@address-in-sig.invalid> - 2011-06-07 13:34 +0000
                Re: Android—Why Dalvik? Andreas Leitgeb <avl@gamma.logic.tuwien.ac.at> - 2011-06-07 13:56 +0000
                Re: Android—Why Dalvik? Martin Gregorie <martin@address-in-sig.invalid> - 2011-06-07 16:47 +0000
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-31 13:53 +1200
                Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-05-30 19:14 -0700
                Re: Android?Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-30 22:26 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-31 18:45 +1200
              Re: Android?Why Dalvik? Joshua Cranmer <Pidgeot18@verizon.invalid> - 2011-05-30 15:25 -0400
                Re: Android?Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-30 12:46 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-31 11:50 +1200
                Re: Android—Why Dalvik? Joshua Cranmer <Pidgeot18@verizon.invalid> - 2011-05-30 20:16 -0400
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-31 13:50 +1200
            Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-05-30 11:22 -0700
    Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-29 09:35 -0700
      Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-30 12:44 +1200
        Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-29 19:38 -0700
          Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-30 17:26 +1200
            Re: Android—Why Dalvik? "Nasser M. Abbasi" <nma@12000.org> - 2011-05-30 00:04 -0700
              Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-30 19:11 +1200
                Re: Android—Why Dalvik? "Nasser M. Abbasi" <nma@12000.org> - 2011-05-30 00:30 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-30 19:53 +1200
                Re: Android—Why Dalvik? "Nasser M. Abbasi" <nma@12000.org> - 2011-05-30 01:28 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-30 22:12 +1200
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-30 02:35 -0700
                Re: Android—Why Dalvik? "John B. Matthews" <nospam@nospam.invalid> - 2011-05-30 11:26 -0400
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-30 13:17 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-31 11:48 +1200
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-30 17:16 -0700
                Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-31 13:48 +1200
                Re: Android—Why Dalvik? David Segall <david@address.invalid> - 2011-06-01 00:54 +1000
                Re: Android?Why Dalvik? Steve Sobol <sjsobol@JustThe.net> - 2011-05-31 08:05 -0700
                Re: Android?Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-31 11:41 -0700
            Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-30 01:57 -0700
              Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-05-30 22:30 +1200
                Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-05-30 13:23 -0700
  Re: Android—Why Dalvik? bugbear <bugbear@trim_papermule.co.uk_trim> - 2011-05-31 09:42 +0100
  Re: Android—Why Dalvik? Michal Kleczek <kleku75@gmail.com> - 2011-06-02 09:17 +0200
    Re: Android—Why Dalvik? Michal Kleczek <kleku75@gmail.com> - 2011-06-02 09:21 +0200
    Re: Android—Why Dalvik? Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-02 19:34 +1200
      Re: Android—Why Dalvik? BGB <cr88192@hotmail.com> - 2011-06-02 03:43 -0700

csiph-web