yep! the ascii standard was originally invented for teletypewriters, and includes four 'blocks' of 32 codes each, for 128 in total, so it only uses seven bits per code.
the first block, hex 00 - 1F, contains control codes for the typewriter. stuff like "newline", "backspace", and "ring bell" all go in here.
The second block has the digits are in order, from hex 30 = '0' all the way to hex 39 = '9',
The uppercase alphabet starts at hex 41 = 'A', and exactly one block later, the lowercase alphabet starts at hex 61 = 'a'. This means their binary codes are 100 0001 and 110 0001, differering only in a single bit! So you can easily convert between upper and lowercase ascii by flipping that bit.
The remaining space in the last three blocks is filled with various punctuation marks. I'm not sure if these are in any particular order.
The final ascii code, 7F, is reserved for "delete", because its binary representation is 111 1111, perfect for "deleting" data on a punch card by punching over it.
Almost all web traffic now uses the utf-8 encoding, a clever hack which works because ascii is a seven-bit code but web traffic uses 8-bit bytes.
If the first bit is 0, treat the byte as ascii.
if the first bit is 1, treat the byte as part of a multi-byte unicode character.
multi-byte characters in utf-8 can officially be up to four bytes long, with 11 of those 32 bits used for tracking the size of the multi-byte block. That leaves 2^21 code points available, about two million in total, easily enough for every alphabet you could need to write on a website, and all without breaking ascii.
Honestly the one thing I'd definitely do is set up Syncthing using a guide like this. It's really convenient for games without cloud saves, and I also use it to sync my music library.
My stance on this is that if a machine can do the work of a hundred men, then ninety-nine men should be able to retire early with pay. Anything else is theft.
So, yes, I support UBI, and no, I don't think it would break capitalism. It's the same amount of money being put into circulation, just for less work.
There's lots of options for starter projects, but I'd say a great place to start is making yourself a personal web page in html, css, and js. you can host it for free on github, neocities, or nekoweb, and its really cool to make something you can show off.
Even if you don't stick with html as your primary language, the web is so ubiquitous now that you'll want to know it eventually!
The Road to El Dorado was the pilot for an animated series that never got greenlit. Massive missed opportunity, I would love to see "the continuing adventures of three latin rogues and a horse"
I dunno if I'd want to magically buy myself the ability to draw; I'd rather magically be able to afford a big house and pay an artist to live with me and draw whatever they want and maybe commission them to draw me with my comfort characters.
yep! the ascii standard was originally invented for teletypewriters, and includes four 'blocks' of 32 codes each, for 128 in total, so it only uses seven bits per code.
the first block, hex 00 - 1F, contains control codes for the typewriter. stuff like "newline", "backspace", and "ring bell" all go in here.
The second block has the digits are in order, from hex 30 = '0' all the way to hex 39 = '9',
The uppercase alphabet starts at hex 41 = 'A', and exactly one block later, the lowercase alphabet starts at hex 61 = 'a'. This means their binary codes are 100 0001 and 110 0001, differering only in a single bit! So you can easily convert between upper and lowercase ascii by flipping that bit.
The remaining space in the last three blocks is filled with various punctuation marks. I'm not sure if these are in any particular order.
The final ascii code, 7F, is reserved for "delete", because its binary representation is 111 1111, perfect for "deleting" data on a punch card by punching over it.