Skip to content

Instantly share code, notes, and snippets.

View kathep's full-sized avatar

KJ Hepworth kathep

View GitHub Profile

There are two types of markup in Liquid: Output and Tag.

  • Output markup (which may resolve to text) is surrounded by
{{ matched pairs of curly brackets (ie, braces) }}
  • Tag markup (which cannot resolve to text) is surrounded by
@kathep
kathep / arabic-bread&net.html
Last active November 25, 2020 00:10
Arabic summary of Bread&Net 2020 Online for HRCD site
<div dir="rtl">
نودّ عقد لقاء عبر الإنترنت للمتخصّصين/ات والمرشدين/ات في مجال الأمن الرقمي، وكذلك المصمّمين/ات والمُطوِّرين/ات في مجال أدوات الأمن الرقمي والخصوصية.سيحصل المدرّبون/ات والمصمّمون/ات والمُطوِّرون/ات الذين يعملون في مجال الأمن والخصوصية من مختلف المناطق على فرصةٍ للتلاقي والتعرُّف على عمل بعضهم البعض. سوف نبتكر، نحن الأربعة، أنشطةً للتشارُك والتعرُّف على بعضنا البعض، بالإضافة إلى تحديد الاهتمامات وفُرَص التعاون في المستقبل، ولكن على شكل مساحة مجتمعية حقيقية، بدلًا من أن تكون مجرّد جلسة موجّهة نحو التعلُّم. سوف يُدعى المشاركون للانضمام إلى عالم التصميم المتمحور حول حقوق الإنسان.الهدف من هذا اللقاء هو تعزيز التواصل والتعاون بين الأشخاص العاملين في مجال التصميم، والتثقيف حول الأمن الرقمي، والأبحاث، وتطوير أدوات الأمن الرقمي.
</div>
# Terminal Cheat Sheet
pwd # print working directory
ls # list files in directory
cd # change directory
~ # home directory
.. # up one directory
- # previous working directory
help # get help
-h # get help
@kathep
kathep / tutorials.md
Created May 21, 2020 04:00
Jeckyll & minimal computing resources
@kathep
kathep / Color.md
Last active May 7, 2020 06:16
Teaching tools
@kathep
kathep / 03_git_lingo.md
Last active July 21, 2020 00:25
Github Pages tips about Git, command line, and Github-flavored Markdown

Git and Github Lingo

Github uses lots of jargon that is pretty simple, and that can sound strange at first.

  • Repo
    Full term: Repository
    Plain language meaning: Main folder of a project/website stored on Github
    Metaphor: Big bucket of everything related to your project

  • Directory

SHORTCUTS

Key/Command Description
Tab Auto-complete files and folder names
Ctrl + A Go to the beginning of the line you are currently typing on
Ctrl + E Go to the end of the line you are currently typing on
Ctrl + U Clear the line before the cursor
Ctrl + K Clear the line after the cursor
Ctrl + W Delete the word before the cursor
Ctrl + T Swap the last two characters before the cursor