Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View ActionScripted's full-sized avatar

Michael Thompson ActionScripted

View GitHub Profile
# Solarized 2 (solarized but wanted a different name)
# ---
#
# Solarized prompt...that might be breaking the rules a bit.
# SOLARIZED HEX 16/8 TERMCOL XTERM/HEX L*A*B RGB HSB
# --------- ------- ---- ------- ----------- ---------- ----------- -----------
# base03 #002b36 8/4 brblack 234 #1c1c1c 15 -12 -12 0 43 54 193 100 21
# base02 #073642 0/4 black 235 #262626 20 -12 -12 7 54 66 192 90 26
# base01 #586e75 10/7 brgreen 240 #585858 45 -07 -07 88 110 117 194 25 46
/var/folders/5g/f1t038j95cnf6xcvb783rl5hh80m9n/T/ruby-build.20180925130957.80594 ~
/var/folders/5g/f1t038j95cnf6xcvb783rl5hh80m9n/T/ruby-build.20180925130957.80594/ruby-2.5.1 /var/folders/5g/f1t038j95cnf6xcvb783rl5hh80m9n/T/ruby-build.20180925130957.80594 ~
checking for ruby... /usr/local/bin/ruby
tool/config.guess already exists
tool/config.sub already exists
checking build system type... x86_64-apple-darwin18.0.0
checking host system type... x86_64-apple-darwin18.0.0
checking target system type... x86_64-apple-darwin18.0.0
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
@ActionScripted
ActionScripted / 2017-07-20T15_20_02_156Z-debug.log
Last active July 20, 2017 15:24
.npm/_logs/2017-07-20T15_20_02_156Z-debug.log
0 info it worked if it ends with ok
1 verbose cli [ '/usr/local/Cellar/node/8.2.0/bin/node',
1 verbose cli '/usr/local/bin/npm',
1 verbose cli 'update',
1 verbose cli '-g' ]
2 info using npm@5.3.0
3 info using node@v8.2.0
4 verbose npm-session de41cb1781b8e517
5 silly mapToRegistry name async
6 silly mapToRegistry using default registry
@ActionScripted
ActionScripted / css_regression_testing.md
Created June 23, 2017 03:37 — forked from cvrebert/css_regression_testing.md
Survey of screenshot-based CSS testing tools

Currently considering https://github.com/webdriverio/webdrivercss


Core Goals:

  • Can test in up-to-date versions of all major browsers
  • Can test on up-to-date versions of all major OSes
  • Can test in IE9 (because Bootstrap v4 will support IE9+)
  • Don't want to have to setup/maintain our own cluster of VMs running all the necessary OSes (and all the versions of Windows)
  • Workflow for management of reference/baseline/norm screenshots
@ActionScripted
ActionScripted / gitignore-local
Created June 10, 2015 17:51
Git Ignore - Local
# File System
.DS_Store
.Trashes
._*
[Tt]humbs.db
# Vim
*.s[a-w][a-z]
*.un~
*~
#!/bin/bash
# Patch apllying tool template
# v0.1.2
# (c) Copyright 2013. Magento Inc.
#
# DO NOT CHANGE ANY LINE IN THIS FILE.
# 1. Check required system tools
_check_installed_tools() {
local missed=""
mogwai:~ michael$ brew doctor
Error: Failed to import: ruby20
wrong number of arguments (3 for 0..1)
Your system is ready to brew.
mogwai:~ michael$ brew config
HOMEBREW_VERSION: 0.9.5
ORIGIN: https://github.com/Homebrew/homebrew.git
HEAD: f52c5f13b1b7a231fdafd7fce1ff07f42daab205
Installing MariaDB/MySQL system tables in '/usr/local/var/mysql' ...
140807 15:46:40 [Note] InnoDB: Using mutexes to ref count buffer pool pages
140807 15:46:40 [Note] InnoDB: The InnoDB memory heap is disabled
140807 15:46:40 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
140807 15:46:40 [Note] InnoDB: Compressed tables use zlib 1.2.5
140807 15:46:40 [Note] InnoDB: Using CPU crc32 instructions
140807 15:46:40 [Note] InnoDB: Initializing buffer pool, size = 128.0M
140807 15:46:40 [Note] InnoDB: Completed initialization of buffer pool
140807 15:46:40 [Note] InnoDB: The first specified data file ./ibdata1 did not exist: a new database to be created!
140807 15:46:40 [Note] InnoDB: Setting file ./ibdata1 size to 12 MB
@ActionScripted
ActionScripted / simple-grid.html
Created June 4, 2014 18:35
Simple Responsive Grid
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>TODO: Page Title</title>
<meta name="description" content="TODO: Page Description">
@ActionScripted
ActionScripted / appNapBits.sh
Created December 4, 2013 13:27
How to inspect, disable and revert manual overrides for App Nap in Mavericks
# to find registered app domains:
defaults domains
# to check current setting or test if key exists
defaults read com.apple.Terminal NSAppSleepDisabled
# to disable app nap
defaults write com.apple.Terminal NSAppSleepDisabled -bool YES
# to flip the boolean (turn App Nap back on)