Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror

Comment PC-first games from smaller studios (Score 1) 31

Until they see a trailer for a game that looks interesting, click through to learn more about the game, and find that it's available for (say) Linux, Windows, and NES. A lot of games from smaller studios get released on PC first, or PC plus an unlicensed release on a long-obsolete console, while the studio awaits approval to obtain a devkit for the major modern consoles.

Comment Re:Many people would never want a PC (Score 1) 31

Now if you read any review for any of the PC gaming handhelds you will unanimously see people saying Windows is the problem here. It's the barrier.

Unless they start selling pre built PCs

Does this include things like Steam Deck?

on a best buy shelf

If you refer solely to physical distribution through big-box electronics store chains in the United States, what's so special about that sales channel?

Comment Obsolete game consoles (Score 1) 31

Likewise, a lot of people use obsolete Mac computers, and a lot of people (including myself) use obsolete Nintendo Entertainment System consoles.

As I understand it, the "obsolete" label applies to a video game console once its manufacturer is no longer certifying new games for it. For example, Shakedown: Hawaii is the last Wii disc game in Europe, the last Wii U disc game in North America, and the last PlayStation 3 game. See list of last licensed games by console.

Comment Let's try Irish disability law (Score 1) 105

You are technically correct that the Americans with Disabilities Act 1990 does not apply because Ryanair operates in Europe, not the United States. However, the United States is by far not the only country with a disability discrimination law. Ryanair is headquartered in a suburb of Dublin, Ireland, a European Union member state that has its own disability accommodation law framework. So let me address the spirit of coats's question:

Say someone can't use a smartphone without setting it to use large print. If Ryanair requires its customers to use an application that is incompatible with large print setting, what recourse does the customer have under Irish law?

Comment Online safety acts (Score 1) 105

I would think you're exaggerating about the Google stuff, but this past week they decided I wasn't an adult and "need" me to upload my state issued picture ID (Driver's License) and my credit card information to "verify" my adult status just so I can continue to upload my shitty but fun songs on Youtube.

What country? I seem to remember some countries have instituted policies that require "social" web applications to thoroughly verify the age of all users. Australia, for example, passed such a law that takes effect next month.

One alternative to YouTube is uploading your "shitty but fun songs" on your own website.

Comment I thought that was what TLS was for (Score 1) 105

And using the wifi of an airport in a foreign country would also be definitely a bad idea, security wise.

How so, now that almost all web and native applications use TLS to communicate with the server? An attacker running a packet sniffer on a TLS session can see the connection's IP address, the server's hostname, the size of communication, and nothing else. This would amount to "A user connected to Ryanair and received a data volume typical of a checkin."

Comment Progressive web applications (Score 2) 105

Following that logic, your phone is a browser and the apps are bookmarks with special permissions.

This is the case for many applications. Both major smartphone operating systems' included web browsers support progressive web applications (PWA). These use a service worker, a script cached on the device that acts as a proxy to cache a particular site's pages, scripts, and data and present them to the user even while the device is offline. They grant additional permissions to bookmarks on the device's home screen. For example, Safari for iOS allows a website added to the home screen to use the Push API to receive notifications through its service worker.

However, a lot of service providers maintain a native application for iOS and a native application for Android instead of relying on a PWA. Based on my recent conversation with UnknowingFool, this includes at least Grab, Doordash, Uber Eats, Instacart, Favor, Grubhub, and Postmates, and these providers are thought to have (unstated) good reasons for doing so.

Comment Re:China gov't over-subsidized in (Score 1) 178

Chinese citizens get cheap cars funded by government R&D money.

Who's been dicked here?
The car companies take government money and build cars
The car dealers buy them real cheap and sell at a profit
The consumers get cheap cars

The only ones "losing" money are the government. But they're just printing it. And building a massive manufacturing industry with development capability as well. Selling on a global market to everyone else at prices no one else can compete with.

Comment It's not going to crash (Score 1) 178

These people don't seem to understand that China is not capitalist.

The Government won't allow it. They'll fund failing companies, write off debts, what every they want to keep things going.
All of these companies have Government representatives on their boards. A large number are partially Government owned.

Comment x32 flopped (Score 2) 27

The larger address space can be useful in some applications

Such as high-resolution image editing and high-definition video editing. Compared to a web browser, these aren't quite as amenable to splitting an application into numerous "content processes," each with their own separate 2 GB RAM.

but most applications are already bloated and having bigger pointers hasn't improved matters for this bloat problem.

For a while, Linux supported an x86-64 ABI called "x32" that limits each process's address space to 2 GB so that more pointers will fit in the processor's data cache. It didn't become popular, in part because of a need to load three versions of the system libraries: 32-bit i686, x86-64, and "x32". In addition, porting x86-64 applications to use less pointer-heavy containers gave most of the cache advantage that "x32" would have provided. This includes switching from linked lists to gap buffers (or other dynamic arrays), from B-trees to T-trees, or from pointers to indices in a pool. Rust in particular has encouraged use of appropriately sized indices as a workaround for the borrow checker.

For systems that want to access more than 2GB-4GB of physical RAM, there has long been PAE/PSE-36 that permit mapping 64GB physical address space to a 32-bit virtual space.

There's a widespread misconception that a 32-bit operating system is limited to 3 GB of physical RAM. I think this comes from Microsoft's practice of requiring drivers for 32-bit Windows Server to support PAE as a condition for certification, but not drivers for 32-bit Windows desktop. I seem to remember 32-bit desktop Linux being more PAE-friendly. PAE and content processes are how Firefox for 32-bit Linux managed to hang on this long.

Comment Re: Cloud computing is one the dumbest ideas ever. (Score 1) 82

So the service worker installs the entire Grab site to you phone? Grab handles food delivery, grocery delivery, package delivery, ride sharing, financial services, etc.. That seem extremely inefficient to load every single function to your phone just because you visited their website.

Each function could be loaded the first time the user uses it. The device has to be online to query what is in stock at any given moment anyway. And I'd be interested in others' speculation about why the client side of the most widely used functions can't all fit in (say) 5 MB, which is twice the size of Doom.

You suggested a solution that Grab, Doordash, Uber Eats, Instacart, Favor, Grubhub, Postmates, etc. do not use. I pointed out maybe these companies know way more about their needs and solutions than you. Do you accept that?

I accept that, adding a clarification that I suggested the solution for the purpose of asking other people what these companies might know that I don't.

Comment Re: Cloud computing is one the dumbest ideas ever. (Score 1) 82

And you have not considered to enter offline-first, the service worker API has to load?

The first time you add a website to your home screen, it installs the website's service worker. You have to use the Internet for that, just as you have to use the Internet to download an application from Apple's App Store.

Again, Grab has been doing this for 12 years.

And I'm curious about what the blockers for even a partial PWA implementation have been during each of these 12 years.

PWA is not new and they have chosen native apps.

All I've been asking is what features of Grab combined with missing features of PWA likely led to their continuing to choose native apps.

But most of us did not assume to know better than Grab unlike you.

I don't see where I "assume[d] to know better than Grab".

Comment $32... for first and business class airfares (Score 4, Informative) 40

Only $8 for premium economy on a long haul flight across the Pacific.

In terms of relative prices, a economy flight from LAX might be $900, premium economy $1,500 and business class is more like $12,000 and first class is $20,000

So less than 1% tax. 0.5% for premium economy and 0.16% for first class.

Slashdot Top Deals

Think of it! With VLSI we can pack 100 ENIACs in 1 sq. cm.!

Working...