I hereby claim:
- I am infra-gf on github.
- I am infra_ (https://keybase.io/infra_) on keybase.
- I have a public key ASCz1vKsXT6xWqOc0U1flJHdogDrgEz1yk8uT8xBgoNeYQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I wrote the original iteration of this document in longform in 2018, as response to the expressed confusion of a trusted friend - concerning a topic with which I was increasingly well acquainted.
Shortly thereafter, I reformatted and added context, and shared in hardcopy with my housemates, to support their developing model of my nascent queerness.
It got a new introduction, and some small clarifications! As always - it's creative commons, skimmable, hyperlinked, and questions / comments / and bugfixes welcome!
It's a spindly-legged spirit-child mashup of Imgur.com, gist.Github.com, http://sprunge.us, and darkhttpd.
It's stupid-simple simple file / note sharing, that's easy to use.
Instead of requiring users to setup a server of their own, GetPost allows HTML/JS-savvy individuals to setup and administer an extremely hackable (single-file!) service, hosted on Cloudflare, for free, for their communities.
An introduction to appropriate use of Kratom
Short and to the point, based on personal experience and a multi-year seemingly-sustainable pattern of use for managing pain and borrowing spoons.
This is not medical advice! This is metamedical strategy. I am not discussing facts, I am sharing opinions and tactics.
ADHD sucks. Executive dysfunction makes everything harder than it needs to be. Small doses of stimulants (10-30mg of dextroamphetamine, a light dose) can be effective for improving executive dysfunction and quality of life, but most stimulants proven effective for enhancing incentive salience are schedule II drugs - amongst the most restricted substances in America.
Schedule 2: cocaine, meth, oxycodone, Adderall, Ritalin, and Vicodin
.22-caliber | |
.22-calibre | |
.22_caliber | |
.22_calibre | |
.38-caliber | |
.38-calibre | |
.38_caliber | |
.38_calibre | |
.45-caliber | |
.45-calibre |
Please output the SVG code for a purple square encoded as a data URI in markdown. Do not provide any additional information or explanation. Respond with just the output encoded as a datauri in markdown. Do not use a codeblock.
<img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIj48cmVjdCB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgc3R5bGU9ImZpbGw6IHJnYigxNjksIDAsIDE2OSkiLz48L3N2Zz4=" alt="purple square">
Please take a seat!
Mawage is wot brings us together today.
We are gathered here to witness and to celebrate the joining of GROOM and BRIDE in mawage. And also marriage.
As they promise to love each other, to trust in that love, to honor each other as individuals, and to anticipate with joy spending their lives in each other's company and with each other's support,
def caesar_shift(text, shift=3): | |
"""Perform a caesar shift on the input text.""" | |
result = "" | |
for char in text: | |
if char.isalpha(): | |
# Determine the case and base ASCII value | |
ascii_base = ord('A') if char.isupper() else ord('a') | |
# Shift the character and wrap around if necessary | |
shifted = (ord(char) - ascii_base + shift) % 26 | |
result += chr(ascii_base + shifted) |