How Do I Learn Effectively?

Let’s start by saying, “It Depends.”. I’m a software developer with Aphantasia and ADHD, so my approach is specific. This is my approach to learning. I’m certain your approach will differ. Learning Principles I’m a big fan of principles. I follow these principles to guide my learning: 🚀 Embody Perseverance — Listen to audio content while driving, walking, and doing chores. 🏋️‍♂️ Instill Discipline - Apply lessons learned to projects....

How Do I Use sqlite-utils?

How do I use sqlite-utils? It’s time to learn how to manage an SQLite database. I wrote up a tldr PR for sqlite-utils command, and here’s the usage with a person.db. sqlite-utils A command-line tool used to manage SQLite databases. More information: https://sqlite-utils.datasette.io/en/stable/cli.html. Create a database sqlite-utils create-database person.db Create a table sqlite-utils create-table person.db people id integer name text height float photo blob --pk id Upsert a record echo '[ {"id": 1, "name": "Linus Torvalds"}, {"id": 2, "name": "Steve Wozniak"}, {"id": 3, "name": "Tony Hoare"} ]' | sqlite-utils upsert person....

How Do I Use Replit?

How do I use replit? It depends. I have a few use cases, but the use cases are numerous. If you need to know what replit is, read this next section. What Is Replit? Replit is a web-based integrated development environment (IDE). In contrast to Replit, you could learn GitHub and use Visual Studio Code in a browser. Use Cases? Embed code on your website. Quick and easy code learning. Teaching Hosting Pair Programming How Do I Use Replit?...

How Do I Use Google?

How do I use Google? Strap in, and let’s learn some google-fu. 🤺 Double Quotes Wrap your keywords in double quotes like this. "google fu" Try it out: https://www.google.com/search?q=“google+fu” Google will only return pages with “google-fu” in the content. Exclude Keyword Building on the previous example. "google fu" -medium I’m not fond of Medium, so I’ll keep that out of my results. Try it out: https://www.google.com/search?q=“google+fu”+-medium Search One Site I bet Urban Dictionary has something to say about google-fu....

How Do I Use Multiple GitHub Accounts?

How do I use multiple GitHub accounts on the same computer? This approach is a sanity saver when working on various projects from numerous clients. Create a new SSH key on macOS. (Try on other OSes; YMMV) ssh_key_gen() { if [ $# == 0 ]; then echo "Usage: ${FUNCNAME} [EMAIL] [KEY_NAME]" echo "1. Generate a key" echo "2. Copy the public key to the clipboard" return fi email="$1" key_name="$2" rsa_key_name="id_rsa_${key_name}" rsa_key_path="${HOME}/....