Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Old news... (Score 1) 57

This is not a surprise to anyone for whom English is not their first language.

Just try to search information on a topic in another language and you'll find a lot of crap sites in your search results that contain badly auto-translated "content".

This has been a nuisance ever since Google Translate was introduced.

Comment Re:Tactile Keyboard Still Works? (Score 1) 64

On this company's previous C64, Vic20 and A500 mini consoles, the mini keyboards were just for show, so I'd be very surprised if this one's would be a working mini-keyboard.

Those did have on-screen keyboards in software, and supported external USB keyboards also, so I would expect that this time as well though.
BTW. Some clever person did (re)build their TheC64 to have a working keyboard with microswitches, but the Atari 400 keyboard was a membrane keyboard and that is actually more difficult to DIY.

Comment Leaving in good order (Score 2) 121

I have been let go twice from developer positions, that I haven't resigned from myself.
Both times, it has been a matter of personal pride for me to commit my last code changes that I had been working on, for the sake of my colleagues, and then to say proper goodbyes to the people staying behind.
I think I would be more pissed off if I wasn't allowed to do that, than to be let go.

Comment Re:Could have been prevented... (Score 1) 279

It is not just about energy in the power lines, but also about:

- Transportation. Almost only oil, except in some electric cars for personal transport here and there. And there are also enormous emissions during oil extraction and refinement. First start by replacing all subsidies to oil companies with taxes. Then we could very well bomb the superemitting oil sites.

- Agriculture. Not just about beef production, but also about deforestation, land management and waste management.
Dried marshlands emit stored methane.
All animals bred for meat produce waste that emit greenhouse gases.

- Cement production.

Comment Re:How many humans can the planet support? (Score 1) 279

- Crypto-mining. Fuck off. No societal value there.

Indeed. They have the energy requirements of a medium-sized country.

As those are waning, we are seeing the rise in large energy use for "Deep Learning"... which may look much more benign but also has societal issues.

AI is looking to be the new cryptocurrency...
Not just in energy use, but in hype and investment. Previous cryptocurrency hardware companies are producing AI hardware now. For instance, out of Bitmain came SOPHGO.

Comment Re:Civil Disobedience (Score 4, Insightful) 273

You should print a sticker with an URL to a page that explains all the ways how QR code menus are bad for the customers, and then requires the customer to click a link to the original site.

Not only are QR codes hauling the work onto you, they codes are also a potential security risk. Malicious QR codes are a thing!
People need stop trusting any and all QR code they come across.

Comment Previous Python Shells: (Score 5, Informative) 62

A few previous shells based on Python:

Apparently, Tako is a fork of Xonsh, but apart from that each has a different approach to embed Python in a shell. In pysh, commands become functions; in Marcel, Python is in parentheses, and in Xonsh, everything that is not valid python is interpreted as a command.

IMHO, I think that shells and Python have too different syntax, that it would be better to define a single syntax model and stick to it for everything instead of mixing. A shell is too powerful and crude: if you want to improve a shell, you should make it safer, not more ambiguous.
(Not that any of these don't have any good ideas, because they do.)

For an example of horror, see this Xonsh:

>>> ls = 44
>>> l = 2
>>> ls -l
42
>>> del ls
>>> ls -l
total 0

Comment Re:Problems with Arm (Score 4, Interesting) 17

It is Qualcomm that has a licensing problem with ARM.

Qualcomm acquired the chip design firm NUVIA in 2021, which had a license agreement for designing processor cores running ARM code.
ARM is suing Qualcomm, because according to them the agreement with NUVIA did not allow the license to be transferred to a parent company.

What many are suspecting Qualcomm of doing right now is to sidestep this issue by adapting the NUVIA-designing cores to instead run RISC-V.
Only in these past few weeks, Qualcomm has posted two proposals to RISC-V International that would make that more credible: First they want to skip the C (16-bit instruction) extension from Application profiles (which is something that 64-bit ARM does not have). Second, they want to add new address modes, that look like they were picked straight out of ARM's manuals.

Slashdot Top Deals

Today is a good day for information-gathering. Read someone else's mail file.

Working...