<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>localhost.pbcopy</string>
This file has been truncated, but you can view the full file.
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 { | |
font-family: "MesloLGL Nerd Font"; | |
font-style: normal; | |
font-weight: 200; | |
src: url(data:font/woff;charset-utf-8;base64,T1RUTwAOAIAAAwBgQ0ZGIAMt5TUAABiIACZtB0ZGVE1x+hq8ACaLVAAAABxHREVGeUaJmwAmhZAAAAS2R1BPU7j/uP4AJoskAAAAMEdTVUL9SPwpACaKSAAAANpPUy8yjumQwwAAAVAAAABgUGZFZOQaPKkAJotwAAACSGNtYXC9DnSEAAAOMAAACjZoZWFkB3JFZQAAAOwAAAA2aGhlYRJ+IM4AAAEkAAAAJGhtdHg3yy/fACaNuAAAY+ptYXhwGQVQAAAAAUgAAAAGbmFtZbWBqZ8AAAGwAAAMfnBvc3T/gQBaAAAYaAAAACAAAQAAAAIHK5AZ1MJfDzz1AosIAAAAAADFdBkzAAAAANbh2oD9QfxuDD0JHAAAAAgAAAAAAAAAAAABAAAI/fyNAAAMPf1B/xMMPQABAAAAAAAAAAAAAAAAAAAY8AAAUAAZBQAAAAMF0gGQAAUAAAUzBZkAAAEeBTMFmQAAA9cAZgISAAACCwYJAwgEAgIE5gAi/9IA+fsCAAAoAAAAAFBmRWQAQAAg//0GFP4UAAAI/QNzYAAB3//fAAAEYAXVACAAIAACAAAAHgFuAAEAAAAAAAAAdwDwAAEAAAAAAAEAEgGOAAEAAAAAAAIAEwHJAAEAAAAAAAMAJQIpAAEAAAAAAAQAJQKbAAEAAAAAAAUABQLNAAEAAAAAAAYAIAMVAAEAAAAAAAcAIgN8AAEAAAAAAAgACQOzAAEAAAAAAAkACQPRAAEAAAAAAAoBygdxAAEAAAAAAAsAHQl4AAEAAAAAAAwARAogAAEAAAAAABAAEgqLAAEAAAAAABIAJQrqAAMAAQQJAAAA7gAAAAMAAQQJAAEAJAFoAAMAAQQJAAIAJgGhAAMAAQQJAAMAS |
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
# Find out your iCloud BTMM domain | |
dns-sd -E | |
# List Computers | |
dns-sd -B _ssh <12345678>.members.btmm.icloud.com | |
# Connect | |
ssh <username>@<computer-name>.<12345678>.members.btmm.icloud.com |
brew install homebrew/dupes/screen
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
$('html, body').animate({'scrollTop': element.offset().top}, 'slow', 'swing'); |
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
<!doctype html> | |
<html> | |
<head> | |
<title>CSS Media Check</title> | |
<style type="text/css"> | |
#mediaquery{ | |
-webkit-transition: width .001s; | |
-moz-transition: width .001s; |
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
var isOpera = !!(window.opera && window.opera.version); // Opera 8.0+ | |
var isFirefox = testCSS('MozBoxSizing'); // FF 0.8+ | |
var isSafari = Object.prototype.toString.call(window.HTMLElement).indexOf('Constructor') > 0; // At least Safari 3+: "[object HTMLElementConstructor]" | |
var isChrome = !isSafari && testCSS('WebkitTransform'); // Chrome 1+ | |
var isIE = /*@cc_on!@*/false || testCSS('msTransform'); // At least IE6 | |
function testCSS(prop) { | |
return prop in document.documentElement.style; | |
} |
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
<script> | |
;("header footer section aside nav article figure figcaption hgroup time").replace(/\w+/g,function(a){document.createElement(a)}) | |
</script> |
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
var parser = document.createElement('a'); | |
parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
parser.protocol; // => "http:" | |
parser.hostname; // => "example.com" | |
parser.port; // => "3000" | |
parser.pathname; // => "/pathname/" | |
parser.search; // => "?search=test" | |
parser.hash; // => "#hash" | |
parser.host; // => "example.com:3000" |