This gist was automatically created by the JSON-LD Playground. You can see it loaded there by visiting:
http://json-ld.org/playground/index.html#/gist/3c379dfb9c1086e6e686
javascript:(function() {var e = document.getElementById('issue_body');if (e) {e.value += '# What? Why?\n\n\n# How was it tested?\n\n';}})(); |
This gist was automatically created by the JSON-LD Playground. You can see it loaded there by visiting:
http://json-ld.org/playground/index.html#/gist/3c379dfb9c1086e6e686
{ | |
"@context": "http://schema.org", | |
"@type": "Color", | |
"hasCSScolorName": { | |
"value": "true", | |
"name": "cornflower_blue" | |
}, | |
"@values": { | |
"hexTriplet": "#6495ed", | |
"hexQuadruplet": "#6495edff", |
alfred://theme/searchForegroundColor=rgba(255,255,255,1.00)&resultSubtextFontSize=1&searchSelectionForegroundColor=rgba(0,0,0,1.00)&separatorColor=rgba(63,63,63,0.00)&resultSelectedBackgroundColor=rgba(0,105,218,1.00)&shortcutColor=rgba(0,160,255,1.00)&scrollbarColor=rgba(72,72,72,1.00)&imageStyle=7&resultSubtextFont=System&background=rgba(37,37,37,1.00)&shortcutFontSize=1&searchFontSize=3&resultSubtextColor=rgba(168,168,173,1.00)&searchBackgroundColor=rgba(37,37,37,1.00)&name=El%20Capitan%20Dark&resultTextFontSize=2&resultSelectedSubtextColor=rgba(216,217,221,1.00)&shortcutSelectedColor=rgba(255,255,255,1.00)&widthSize=3&border=rgba(37,37,37,1.00)&resultTextFont=System&resultTextColor=rgba(255,255,255,1.00)&cornerRoundness=3&searchFont=System%20Light&searchPaddingSize=0&credits=Kevin%20Suttle&searchSelectionBackgroundColor=rgba(178,220,236,1.00)&resultSelectedTextColor=rgba(255,255,255,1.00)&resultPaddingSize=1&shortcutFont=System |
<?xml version="1.0"?> | |
<root> | |
<!-- Thanks Brett Terpstra for the tip --> | |
<!-- http://brettterpstra.com/2012/12/08/a-useful-caps-lock-key/ --> | |
<item> | |
<name>Tmux Prefix</name> | |
<appendix>CAPS to control-b</appendix> | |
<identifier>private.tmux_prefix</identifier> | |
<autogen> | |
--KeyOverlaidModifier-- |
Verifying that +kevinsuttle is my blockchain ID. https://onename.com/kevinsuttle |
# /etc/nginx/sites-enabled/ghost | |
server { | |
root /usr/share/nginx/html; | |
index index.html index.htm; | |
listen 443 ssl; | |
server_name kevinsuttle.com www.kevinsuttle.com; | |
ssl_certificate /etc/letsencrypt/live/kevinsuttle.com/fullchain.pem; |
{ | |
"font_size": 21, | |
"line_numbers": false, | |
"gutter": false, | |
"wrap_width": 80, | |
"scroll_past_end": false, | |
"color_scheme": "Packages/User/SublimeLinter/Solarized (Light) (SL).tmTheme", | |
"line_padding_bottom": 10, | |
"line_padding_top": 10 | |
} |
{
"line_numbers": false,
"gutter": false,
"draw_centered": true,
-"wrap_width": 80,
"word_wrap": true,
-"scroll_past_end": true
}
import CreateInput from './Input.jsx'; | |
const emailProps = { | |
type: "email", | |
inputMode: "email", | |
name: "email", | |
autoComplete: "email", | |
pattern: "[a-zA-Z0-9_]+(?:\.[A-Za-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?!([a-zA-Z0-9]*\.[a-zA-Z0-9]*\.[a-zA-Z0-9]*\.))(?:[A-Za-z0-9](?:[a-zA-Z0-9-]*[A-Za-z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?", | |
spellCheck: false, | |
autoCorrect: "off", |