How so? I have been getting much more comfortable with it lately, but I am curious what downsides there are
Please correct my English.
The lemming formerly known as:
How so? I have been getting much more comfortable with it lately, but I am curious what downsides there are
It was at 2 up and 1 down. This is all public.
Created: Monday, July 21st, 2025 at 5:13:34 PM GMT+00:00
Modified: Monday, July 21st, 2025 at 8:09:49 PM GMT+00:00
I think your comment currently has so many downvotes because people dislike seeing people whine about downvotes. As the commenter above mentioned, at the time of your edit, your comment only had one downvote.
You do. That comment of mine, as is, is entirely worthless.
The sender (in this case, that would be me) needs to encrypt the message using either:
That way, the only people who can decrypt the message is a person with the private key that is paired with any of the public keys that the message was encrypted with OR literally anybody that happens to have the passphrase it was encrypted with.
I think I had encrypted that message using just my own public key, so as I said, the message is completely useless to anybody but myself.
-----BEGIN PGP MESSAGE-----
wV4Dd2cMziIkKJkSAQdAQKmr1kGoimmaRmO19Z8qT/EWx2yuDJNuatwbO57jWB0w
uCogyRYU3FNpw5AiXXV0x3CWrmzRiIWVZw1DR6ctCL430oh1Iim/MQS/3WaG/MIv
0sAGAblZp623P1Zw0chivhpQ9kkHSujeEVy+IcaktEkfoDTFs1SxjpWM22ny+eP/
ifRudikZ4f41BNOPMrsi2baeKnD/nwL30gxET20l1IJr2DuugfNrcGFIK1JSNt+T
Xr4eudiB3RpPareo7c/jiu6/fVVM0SODcmwk4pCxzAorDgzsRPINn/63tPL5raIZ
Kaf7jxuv25l8dlRo/iQdEnJUFq/bAjd7B9a1art4PIix5Y4R8z+/c2DMrqusdrQn
LtY4koMJil7z
=TZ+w
-----END PGP MESSAGE-----
UP YOURS, GRANNY!
There’s someone who could have used a mother.
I think this is why OP typed it incorrectly. OP and this community are both on an instance that arbitrarily censors language.
I do coke
So I can work longer be thinner
So I can earn more
So I can do more coke
what the hell does this say
I am of the minority who prefers this over the Cash cover.
I remember before the Steam Deck was released, and people were discussing all the potential capabilities of the upcoming device, it was often asked if this might be a feature. Of course, there were the usual “It’s a PC, so yes” answers, but the more accurate answers along the lines of “If it’s not, someone will make it work” are finally coming true now.
I can do this with Amaze File Manager, just not with any of the various Firefox forks that I have installed, no matter which option I choose under “Open As”. Vanadium (a Chrome fork) was an option when I tried to open as a text file. Using a file named test.html
that is saved in my Download
directory, this was the URL in Vanadium:
content://com.amaze.filemanager/storage_root/storage/emulated/0/Download/test.html
Where are you seeing mention that the coma contributed to the choice to discontinue? I see in the !30rock@dubvee.org post that the community will be shut down despite the fact that the only mod is not able to even protest that decision or anything, but no other mention.
How would a web browser achieve that? The only thing I can think of is for the browser to choose what sort of web content should be filtered out and what should actually be displayed to the user, which I think we all agree is not what you would want your browser to choose.
Haven’t had much opportunity to have nails driven into my testicles.
And nope, not named after the Farscape character…
https://aerynos.com/blog/2025/02/14/evolve-this-os/
Pronounced like “Erin”, it’s a name that we feel is more befitting of the project. Pulling from multiple etymologies, it’s a name that better describes the project now versus the project that started as Serpent OS.
“Aer” is rather obvious, Latin in origin. The phonetic “Erin” is a nod to the Irish roots of the project, and of course a home. There are a number of reasons for the name, which will form part of the initial documentation on the new website.
Our intent is to have a name that is more inviting, and more descriptive of the project’s goals and aspirations. We’re not anti-establishment or anti-corporation - if anything, we’re a statement that without the fiscal handcuffs, we can produce a technically sound and user-friendly operating system.
https://aerynos.dev/aerynos/faq/
What does AerynOS mean and how do I pronounce it?
AerynOS is a stylised spelling of “Erin”, alluding to the project’s Irish roots. It is pronounced exactly the same as “Erin” - “AIR-in” OS. It’s also a play on “aer” and the phonetic “air” sound, indicative of our desire to produce an open, trusted and high-performance operating system.
It’s pronounced as “AIR-in” OS.
There are definitely visual similarities, especially if you are watching the episode in 1960’s quality. But in the modern remaster, the eyes look more like they are probably something like foam spheres with plastic gems glued on.
Here is my cheatsheet that has been very helpful. Obviously, this will not teach you how RegEx works, but is a good quick reference when I forget the exact syntax for something.
RegExp
Character classes
.
\w
\d
\s
\W
\D
\S
[abc]
[a-e]
a
ande
[1-9]
1
and9
[[:print:]]
[^abc]
a
,b
orc
Anchors
\G
^
$
\A
\Z
\z
\b
\B
^abc
abc
abc$
abc
For multiline patterns (
m
flag),^
and$
will act as start and end of line.Escaped characters
\. \* \\
\t
\n
\r
Groups
(abc)
(a|b)
a
orb
(?:abc)
abc
, but don’t capture\1
Quantifiers
a*
a+
a?
a{5}
a{,3}
a{3,}
a{1,3}
Lookahead & Lookbehind
a(?=b)
a
inbaby
but not inbay
a(?!b)
a
inStan
but not inStab
(?<=a)b
b
incrabs
but not incribs
(?<!a)b
b
infib
but not infab
(?<![a-z])abc(?![a-z])
abc
without any letters before/afterRaw Markdown
# RegExp ## Character classes | Pattern | Description | | ------------- | ---------------------------------------- | | `.` | Any character, except newline | | `\w` | Word | | `\d` | Digit | | `\s` | Whitespace | | `\W` | Not word | | `\D` | Not digit | | `\S` | Not whitespace | | `[abc]` | Any of a, b, or c | | `[a-e]` | Characters between `a` and `e` | | `[1-9]` | Digit between `1` and `9` | | `[[:print:]]` | Any printable character including spaces | | `[^abc]` | Any character except `a`, `b` or `c` | ## Anchors | Pattern | Description | | ------- | ---------------------- | | `\G` | Start of match | | `^` | Start of string \* | | `$` | End of string \* | | `\A` | Start of string | | `\Z` | End of string | | `\z` | Absolute end of string | | `\b` | A word boundary | | `\B` | Non-word boundary | | `^abc` | Start with `abc` | | `abc$` | End with `abc` | For multiline patterns (`m` flag), `^` and `$` will act as start and end of line. ## Escaped characters | Pattern | Description | | ---------- | -------------------------------------- | | `\. \* \\` | Escape special character used by regex | | `\t` | Tab | | `\n` | Newline | | `\r` | Carriage return | ## Groups | Pattern | Description | | --------- | -------------------------------------------------------- | | `(abc)` | Capture group | | `(a\|b)` | Match `a` or `b` | | `(?:abc)` | Match `abc`, but don't capture | | `\1` | Substituted with text matched of the 1st capturing group | ## Quantifiers | Pattern | Description | | -------- | --------------------- | | `a*` | Match 0 or more | | `a+` | Match 1 or more | | `a?` | Match 0 or 1 | | `a{5}` | Match exactly 5 | | `a{,3}` | Match up to 3 | | `a{3,}` | Match 3 or more | | `a{1,3}` | Match between 1 and 3 | ## Lookahead & Lookbehind | Pattern | Description | | --- | --- | | `a(?=b)` | Match `a` in `baby` but not in `bay` | | `a(?!b)` | Match `a` in `Stan` but not in `Stab` | | `(?<=a)b` | Match `b` in `crabs` but not in `cribs` | | `(?<!a)b` | Match `b` in `fib` but not in `fab` | | `(?<![a-z])abc(?![a-z])` | Match `abc` without any letters before/after |