To curse in #markdown, you can curse once, or some odd number of times and the last curse will be in the correct text. f*king markdown, f*king up my perferred way of f*king cursing.
#Markdown
Reading up on sleeping in rooms that are 100 degrees plus since of the 4 guest/hotel rooms I walked into in California, 2 of them were over 100+ on walk in. Yeah, they cool down once you open the window & turn on the woefully underrated A/C, but that was ~2AM.
(W/o acclimation?) sleep is disturbed at over 72.
At 96+ your sleeping with a environmental fever.
At 106 you got a medical emergency
Anyhow, f*k that s*t I don't care if CA is the home of Silicon Valley and Hollywood, I'm staying away.
#Markdown is going to make me change how I cuss in tweets. d`*`mn it.
♡ 1 ↻ 0LA Times says that there is no legal upper limit on how hot the rooms can get - https://www.latimes.com/opinion/story/2022-05-18/extreme-heat-standards
♡ 1 ↻ 0California Energy Commission (who doesn't want the electric grid to fall over & doesn't care if you sleep or not) says rooms should be 78 degrees when you're there and 85 when you are not.
Anyhow, that was the only number I could get on "well, as a society, what did Californians decide is customary & acceptable"
https://nexgenairandplumbing.com/how-cool-should-my-house-be-if-its-over-100-outside/
♡ 1 ↻ 0Another factoid was that after the sun goes down, CA buildings stay 15-20 degrees hotter than the surroundings for hours even with air conditioners on, so it would be noticeably smarter to sleep outside.
♡ 2 ↻ 0
Do you feel bad about the Java or C++ code you've written? #Markdown would like you to know that is valid Markdown. See, so not so bad after all.
https://stackoverflow.com/questions/4751032/whats-an-example-of-some-invalid-markdown
There are 7 libraries that try to run unit tests in code blocks in markdown.
There are 2 libraries that deserialize markdown to python (as json-like objects, not as a DOM)
There are more than I can count that serialize every table-like data structure from python to markdown tables.
There are 0 original ideas left in the world.
Ever want to turn json into markdown? I wanted to and couldn't. So I made a python-to-markdown serialization library. Handles some but not all types.
```
>>> loads("- a\\n- b\\n - c\\n")
['a', 'b', 'c']
```
and
```
>>> dumps([1,2])
'- 1\\n- 2\\n'
```
https://pypi.org/project/markpickle/0.2.0/
And by couldn't I mean, I couldn't without like, importing the json to python, walking the graph of the dict and deciding how to turn each key and value into markdown.
♡ 1 ↻ 0