Use these rapid keyboard shortcuts to control the GitHub Atom text editor on Mac OSX.
- ⌘ : Command key
- ⌃ : Control key
- ⌫ : Delete key
- ← : Left arrow key
- → : Right arrow key
- ↑ : Up arrow key
| #!/bin/bash | |
| # Production Docker Host Hardening Script v2 | |
| # For Ubuntu Server 24.04 LTS (Noble) | |
| # Suitable for both Kamal deployment and builder hosts | |
| set -euo pipefail | |
| IFS=$'\n\t' | |
| # --- Constants --- |
| input = [ | |
| 'Writing Fast Tests Against Enterprise Rails 60min, Overdoing it in Python 45min', | |
| 'Lua for the Masses 30min', | |
| 'Ruby Errors from Mismatched Gem Versions 45min', | |
| 'Common Ruby Errors 45min', | |
| 'Rails for Python Developers lightning', | |
| 'Communicating Over Distance 60min', | |
| 'Accounting-Driven Development 45min', | |
| 'Woah 30min', | |
| 'Sit Down and Write 30min', |
Use these rapid keyboard shortcuts to control the GitHub Atom text editor on Mac OSX.
| require 'sinatra' | |
| require 'action_mailer' | |
| class Mailer < ActionMailer::Base | |
| def contact | |
| mail( | |
| :to => "[email protected]", | |
| :from => "[email protected]", | |
| :subject => "Test") do |format| | |
| format.text |
This is now an actual repo:
| RED="\[\033[0;31m\]" | |
| YELLOW="\[\033[0;33m\]" | |
| GREEN="\[\033[0;32m\]" | |
| BLUE="\[\033[0;34m\]" | |
| LIGHT_RED="\[\033[1;31m\]" | |
| LIGHT_GREEN="\[\033[1;32m\]" | |
| WHITE="\[\033[1;37m\]" | |
| LIGHT_GRAY="\[\033[0;37m\]" | |
| COLOR_NONE="\[\e[0m\]" |