Difference between revisions of "Scratchpad"

From Family History Book
Line 5: Line 5:
 
<!-- Write below this point -->
 
<!-- Write below this point -->
  
 +
=Learning=
 +
 +
==Courses to Take==
 +
 +
* [https://www.coursera.org/learn/linux-and-bash-for-data-engineering-duke Linux & Bash for Data Engineering]
 +
 +
=Tech Stuff=
 
==Wio Terminal Links==
 
==Wio Terminal Links==
 
* GitHub for Wio Terminal SenseCap project:  https://github.com/Seeed-Studio/SenseCraft
 
* GitHub for Wio Terminal SenseCap project:  https://github.com/Seeed-Studio/SenseCraft

Revision as of 03:06, 16 May 2023


Back to Private


Learning

Courses to Take

Tech Stuff

Wio Terminal Links

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")