Tag Archives: joplin

Test of Publishing from Joplin

Today’s To-Do List:

    • [ ] HD for landscaping cloth and 8 pavers
    • [ ] spread rocks
    • [ ] solder esp32-s3-mini for living room
    • [ ] why does iphone battery not trigger smart plugs unless open?
    • [ ] watch this video on AI: https://youtu.be/VRjgNgJms3Q
Read the rest
Posted in Geek | Tagged , , | Leave a comment

Writing in Markdown

Why bother?

  • Doing it this way is totes easy
  • I am doing it now.
  • I want to explore writing posts in Joplin and publishing here

Code block

from package import function

def my_function(input1, input2):
    output = float(input1) / float(input2)
    return output


input1 = input("give me a number:")
input2 = input("give me another number:")
output = my_function(input1, input2)
print("The answer is:", output)

I got to this point and the native WordPress editor started getting in my way.… Read the rest

Posted in Geek | Tagged , , , | Leave a comment