- https://ruby-lang.org
- https://docs.ruby-lang.org/en/3.2/ (officially linked docs)
- https://rubyapi.org (better docs)
- https://www.zenspider.com/ruby/quickref.html
Git is a Distributed Version Control System (DVCS). It tracks changes to a project over time (and by many contributors), which facilitates rollbacks, history inspection, and merges. It's a command line tool, but there are many GUI programs which interact with it.
Git tracks the files in a given folder, called the repository or repo. Each unit of work is called a commit (KUH-mit), or a revision.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exponent | |
(newline) | |
mod | |
Comment with your messages, and I'll decrypt them. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set d to current date | |
if d's weekday is Friday then | |
set d to d + 3 * days | |
else | |
repeat until d's weekday is Friday | |
set d to d + 1 * days | |
end repeat | |
end if | |
set d to date "12:00 AM" relative to d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set d to current date | |
if d's weekday is Friday then | |
set d to d + 3 * days | |
else | |
repeat until d's weekday is Friday | |
set d to d + 1 * days | |
end repeat | |
end if | |
set d to date "12:00 AM" relative to d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(* | |
The Hit List Mail Import | |
Copyright © 2012 Potion Factory LLC. | |
Licensed under a Creative Commons Attribution 3.0 License: http://creativecommons.org/licenses/by/3.0/ | |
To customize this script, copy it first to: |