Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror

Comment Do they cancel it soonish? (Score 1) 22

I am just wondering, I reactivated my mac, because the power adapter of my fail Windows laptop is broken.
I found an app that I did not install super long ago, but did not remember what it is ... Jitsi.app

Thy it is a Yabber client, and my default route/main server was: talk.google.com ...

Broken ...

I guess if I dig deep in my memory, I find about 10 or more "projects" that more or less suddenly vanished.

And who needs "always on AI" on a mobile device?

I must be pretty odd that I feel not to fit into this ...

Comment Re: Mask up, lads. But this time, it's four masks (Score 1) 96

It's not like that for the wider population and never was.
In your country perhaps. In other countries people with a lot of daily contacts, like conductors in public transport, school teachers, doctors, nurses, police officers etc. P.p. get tested.

And I said exactly what I meant: unless you test *for the virus* regularly and widely, you cannot distinguish attenuated transmission from attenuated disease without attenuated transmission.
There is no difference in transmissions to find with tests. So? I have no clue what you want to say.
I infect you ... does not matter if I am asymptomatic or not. What is there to find with a test?

 

Comment Re: No (Score 1) 164

No one is going to port a million lines of code to a web assembly runtime.

Yeah they are.

We talked about JavaScript code.
No idea why you omitted that.

Porting C++ - and plenty of others - to a webassembly runtime is relatively straight forward.
Many tool chains are LLVM based. So for Rust etc. you get it out of the box ...


Kind of the point is that you can't change the type of a variable in a static language, by default, but you can for example in C++ with a type like this:

http://en.cppreference.com/w/...

This was not what we were talking about, which you pretty well know.

So why the nitpicking?

So conclusion: porting a few million lines of existing JavaScript code to webassembly, does not make much sense. Especially not, if that new light weight JavaScript specialized VM: is much faster.

Obviously you can run the V8 JavaScript engine on webassembly instead of running it as a native C/C++ program that happens to interpret/compile JavaScript. But guess what: C8 uses webassembly as its intermediate language and interprets/jits from there. So switching from a JavaScript runtime, that internally is based on webassembly, to another webassembly runtime with a compiler of JavaScript for that runtime ... makes only sense in rare cases.

So the guys who made this new one ... are probably using under the hood webassembly as well. I was looking for a webassembly runtime written in Dart, I would like to put it into an App I have. I wanted a fast and easy FFI to dart, so one based on C/C++ is at the moment not a straight forward option.

Lets see ...

Comment Re: Good. (Score 1) 304

Yes, again: your world is not the rest of the world.

Modern cars have charging times in minutes: to bad you country taxed them into oblivion.

So charging time is not argument, except for your personal use case. Who cares about that? I don't. I care about my use case. So ... do I run around and proclaim to the world that my use case should matter to the world? Nope ... it is a waste of time and energy.

Comment Re:Shifting goalposts (Score 1) 202

AGI used to be defined as passing the Turing Test,
Nope that never was the definition. Actually there is no definition at all.

Turing test means you can get into a conversation with a "chat bot" and can not guess it is a chat bot and not a human.

which large language models have done for a couple of years.
Correct.

What's the new test that AI is supposed to pass to be considered generally intelligent?
Sentient level reasoning.
Some of the current LLMs can reason, albeit only about 12 to 15 steps.

Comment Re: No (Score 1) 164

No, this threat is not talking about that.

YOU are talking about that.

This thread is about replacing a heavy weight node.js JavaScript runtime with a light weight faster runtime.

No one is going to port a million lines of code to a web assembly runtime. For what reason would anyone throw away decades of manpower production code to run on your favourite webassembly runtime?

You can do any and all stuff in a statically typed language. There are no limitations.

No you can't. Objects that do not have a common type ancestor, can be assign to each others variables, and hence you can not call each others methods. That was a no brainer ...
React dynamic to a method call in C++? Go write a framework, you certainly find odd people on the internet who will use it.

If you do not even know what static compilation means, then why post about your favourite runtime ???

Slashdot Top Deals

In seeking the unattainable, simplicity only gets in the way. -- Epigrams in Programming, ACM SIGPLAN Sept. 1982

Working...