You’re being too generous. Calling typescript a rewrite shows the author chose something as an example they clearly don’t understand the first thing about.
You’re being too generous. Calling typescript a rewrite shows the author chose something as an example they clearly don’t understand the first thing about.
TypeScript, for those who aren’t familiar, is a Microsoft rewrite of JavaScript that’s incompatible with basic JavaScript in multiple ways
Wut


I’m not a fan of python so I was prepared to commiserate but…
Tuples, Sets, Dicts, Lists
These are all useful in every language… I don’t use tuples that often, but lists/arrays and associative arrays/dictionaries/hashmaps are in every language and completely different from each other, and there are plenty of reasons to use sets when that is what your data actually is and you get easy access to set operations


For DS/2DS/3DS specifically, there is no emulation hardware that has resistive touchscreen, which I think is superior to capacitive for many games. For 3DS, the same thing applies to the 3D capabilities. Additionally, I’m under the impression that 3DS emulation isn’t fully reliable for the full library, but I may be out of date.
TLDR; emulation may not be as feature complete or as quality as original hardware.


Humanity needs to wake up to dangers of AI 👍
Says anthropic chief 🥱


Everyone knows you want as much income inequality as possible. That’s why it’s a win condition in civilization games right?
You are correct that it is the deserializer’s choice. You are incorrect when you imply that it is a good idea to rely on behavior that isn’t enforced in the spec. A lot of people have been surprised when that assumption turns out to be wrong.
There are really good uses for XML. Mostly for making things similar to HTML. Like markup for Android UIs or XAML for WPF. For pretty much everything else the complexity only brings headaches
Information set isn’t a description of XML documents, but a description of what you have that you can write to XML, or what you’d get when you parse XML.
This is the key part from the document you linked
The information set of an XML document is defined to be the one obtained by parsing it according to the rules of the specification whose version corresponds to that of the document.
This is also a great example of the complexity of the XML specifications. Most people do not fully understand them, which is a negative aspect for a tool.
As an aside, you can have an enforced order in XML, but you have to also use XSD so you can specify xsd:sequence, which adds complexity and precludes ordered arrays in arbitrary documents.
That capability is what enables billion laugh attacks, unfortunately, so not having it enabled in cases where there is external input possible is wise
In HTML, which things are attributes and which things are tags are part of the spec. With XML that is being used for something arbitrary, someone is making the choice every time. They might have a different opinion than you do, or even the same opinion, but make different judgments on occasion. In JSON, there are fewer choices, so fewer chances for people to be surprised by other people’s choices.
That’s correct, but the order of tags in XML is not meaningful, and if you parse then write that, it can change order according to the spec. Hence, what you put would be something like the following if it was intended to represent an array.
<items>
<item index="1"></item>
<item index="2"></item>
<item index="3"></item>
</items>
Honestly, anyone pining for all the features of XML probably didn’t live through the time when XML was used for everything. It was actually a fucking nightmare to account for the existence of all those features because the fact they existed meant someone could use them and feed them into your system. They were also the source of a lot of security flaws.
This article looks like it was written by someone that wasn’t there, and they’re calling people telling them the truth that they are liars because they think features they found in w3c schools look cool.
JSON also has arrays. In XML the practice to approximate arrays is to put the index as an attribute. It’s incredibly gross.


I’m not even sure if you can install without an MS account if you don’t use Rufus anymore. Rufus requires literacy for sure, and even if you can still do it without it is designed to make it impossible to know you can from within the installer itself.


Every time I say this to someone offline, they act like it’s literally impossible. It’s so frustrating


I’ll probably get a steam frame as my first VR set. I tried out the Samsung one where you put your phone in it ages ago and thought “at some point this will be mature enough I want one”. That point probably would have happened already, but I had 0 interest in being forced into Facebook ecosystem.


You can keep using sddm. It isn’t being discontinued. In fact you can use any login manager you want. Plasma is not going to enforce one.
I personally am happy about the new plasma login manager, because it will allow features they couldn’t reasonably implement with sddm.
The people upset about this is a classic case of getting upset about things that won’t affect them at all.
Gross
Yeah node’s
--experimental-strip-typesexposes the absurdity immediately. The only incompatibility is that it has type annotations.