Difference between revisions of "Scratchpad"

From Family History Book
Line 42: Line 42:
  
 
-----
 
-----
==Wednesday, 17 May 2023==
 
 
: I got a reply from Dr. Loya-Valencia's office that they have faxed the order for my KUB to Baptist Imaging, so I'll head down there as soon as I get dressed. I'm nearly out of cat treats, and completely out of bread, so I'll stop at the store on the way home and pick some up, but I don't need a whole regular grocery run, so will probably just go to Dollar General instead of H.E.B.
 
 
: In other news, last night I did finally get MediaWiki upgraded, but still having problems logging in, so I'm going to move on to the next release (1.35) and then on to the latest (1.39). Unfortunately, I have to do that in stages since it's necessary to only advance two releases at a time now. Luckily, once I figured out I needed to revert to an earlier version of EmbedVideo extension, it only took a moment to run the script, and now I have all the necessary code downloaded so it's just a matter of copying it over. Here's hoping this fixes the problem so I can get back to my normal use.
 
 
===After going to San Antonio===
 
 
: I changed my mind about shopping, and went to WalMart after all, but still only picked up a few odds and ends rather than a full grocery shopping trip. I thought about simply baking some bread, but decided against that and picked up a loaf as well as a couple of bowls of Panera Chedar Broccoli soup. Love that stuff! They had the trout flavored cat treats, although only in the smaller container, but I got that as well as a large container of salmon flavor, which the kitties seem to prefer over chicken. Spoiled things. Anyway, I did get my x-rays, and also filled up the gas tank. I'll need more groceries soon, but not till the end of the week. The longer I can postpone it, the better from a financial POV, since I seem to spend the same amount whether I go once a week or every other week. But now it's time for the ISM meeting.
 
 
----
 
 
<!-- special categories -->
 
 
[[Category:Health & Medicine]]
 
[[Category:Shopping]]
 
[[Category:Web Work]]
 
 
<!-- usual categories -->
 
 
[[Category:History]]
 
[[Category:Journal]]
 
[[Category:Writing]]
 
 
[[May 2023|Back to May]]
 
 
----
 

Revision as of 00:59, 1 June 2023


Back to Private


Learning

Courses to Take

Tech Stuff

Wio Terminal Links

TinyML

Discord Tips

  • To include some code in your post, surround the code in single backticks (`) for inline code, or triple backticks for a block of code.
  • You can add an optional language marker to get syntax highlighting for that language. Common markers are py, c, and sh.
`​`​`py
# Check for equals.
if a == b:
    print("Match")
`​`​`
becomes:
# Check for equals.
if a == b:
    print("Match")