Delete Line | ⌘ + X | Ctrl + X | Ctrl + X |
Insert Line After | ⌘ + ↩ | Ctrl + ↩ | Ctrl + ↩ |
Insert Line Before | ⌘ + ⇧ + ↩ | Ctrl + ⇧ + ↩ | Ctrl + ⇧ + ↩ |
Move Line Up | ⌘ + ⌃ + ↑ | Ctrl + ⇧ + ↑ | Ctrl + ⇧ + ↑ |
Move Line Down | ⌘ + ⌃ + ↓ | Ctrl + ⇧ + ↓ | Ctrl + ⇧ + ↓ |
Select Line | ⌘ + L | Ctrl + L | Ctrl + L |
Select Word | ⌘ + D | Ctrl + D | Ctrl + 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
#!/bin/sh | |
# gemify.sh | |
# Create a Ruby gem and push it to rubygems.org | |
# Copyright 2013 Christopher Simpkins | |
# MIT License | |
# Enter your gem name below (do not enter version number or .gemspec suffix) | |
# or pass it as the first argument to the shell script | |
GEM_NAME="" |
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
<footer> | |
<p class="meta"> | |
{% include post/author.html %} | |
{% include post/date.html %}{% if updated %}{{ updated }}{% else %}{{ time }}{% endif %} | |
{% include post/categories.html %} | |
</p> | |
{% unless page.sharing == false %} | |
{% include post/sharing.html %} | |
{% endunless %} | |
<p class="meta"> |
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
{ | |
"man": "man {{args}} | col -bx" | |
} |
Infinite cycle from the Sweetmeat footer.
A Pen by Chris Simpkins on CodePen.
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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import sys | |
import time | |
from progressbar import AnimatedMarker, Bar, BouncingBar, Counter, ETA, \ | |
FileTransferSpeed, FormatLabel, Percentage, \ | |
ProgressBar, ReverseBar, RotatingMarker, \ | |
SimpleProgress, Timer |
Use these rapid keyboard shortcuts to control the GitHub Atom text editor on macOS.
- ⌘ : Command key
- ⌃ : Control key
- ⌫ : Delete key
- ← : Left arrow key
- → : Right arrow key
- ↑ : Up arrow key
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
<?php | |
/*********************************************************************************************** | |
* Tweetledee - Incredibly easy access to Twitter data | |
* userrss.php -- User timeline results formatted as a RSS feed | |
* Version: 0.4.1 | |
* Copyright 2014 Christopher Simpkins | |
* MIT License | |
************************************************************************************************/ | |
/*----------------------------------------------------------------------------------------------- | |
==> Instructions: |
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
{ | |
"font_face": "Hack", | |
"font_size": 10 | |
} |
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
# design settings | |
gutter = 60 | |
radius = 6 | |
pageW = 1600 | |
# draw filled outline or contours | |
contour = False | |
# draw nodes and bluezones and vertical metrics? |
OlderNewer