Skip to content

Instantly share code, notes, and snippets.

View AnalogGhost's full-sized avatar

Mathew Brown AnalogGhost

View GitHub Profile
@AnalogGhost
AnalogGhost / testChecklist.md
Last active January 3, 2017 21:36
Markdown List

Heading

  • First Item
  • Second Item
Test
@AnalogGhost
AnalogGhost / warmup_Caesar.md
Created August 26, 2016 03:23
Caesar Cipher

#Caesar Cipher In cryptography, a Caesar cipher (also known as a shift cipher) is a type of substitution cipher where each letter in the plaintext is replaced a letter some fixed number of positions down the alphabet.

More Details

Warm Up Activity.

  1. Create a function that will take in plaintext and a shift number and return the encoded ciphertext.
  2. Create a function that will take in the ciphertext a shift number and return plaintext.
https-everywhere https://www.eff.org/https-everywhere
StayFocused
Leechblock
Hoverzoom / imagus / HoverFree
RES
@AnalogGhost
AnalogGhost / main.js
Created June 23, 2016 11:59 — forked from lukemelia/main.js
letsencrypt with node and heroku
var LE = require('letsencrypt');
var pem = require('pem');
var RSVP = require('rsvp');
var fs = require('fs');
var path = require('path');
var mkdirp = require('mkdirp');
var domains, herokuAppName, duplicate;
if (process.env.YAPP_ENV === 'qa') {
domains = ['heroku.yappqa.us', 'my.yappqa.us', 'api.yappqa.us', 'support.yappqa.us' ];
@AnalogGhost
AnalogGhost / emmetAdditionalHTML.md
Last active December 12, 2022 07:47
Additional HTML Shortcuts with Emmet

Emmet - Additional HTML Shortcuts

Script with Source

script:src
@AnalogGhost
AnalogGhost / emmetDom.md
Created April 17, 2016 13:17
Emmet - DOM Shortcuts

Emmet - DOM Shortcuts

Bonus Activity

What is Emmet?

With Emmet you can rapidly create your markup. You write simple abbreviations and just press Tab or Ctrl+E or any other other supported keyboard shortcut and Emmet expands the simple abbreviations into complex HTML and CSS code snippets. Emmet will make your HTML and CSS workflow much faster.

Try the following