I hereby claim:
- I am ryon on github.
- I am ryon (https://keybase.io/ryon) on keybase.
- I have a public key ASCeELKNaa43NhLjTgqKzr_C7OCAHmThpBt7C2mem7L2rAo
To claim this, I am signing this object:
// enter this code on e.g., https://bookmarklets.org/maker/ to create a bookmarklet | |
const input = prompt('Enter text to convert to Title Case'); | |
prompt('Converted text below:', input.toTitleCase()); | |
/* To Title Case © 2018 David Gouch | https://github.com/gouch/to-title-case */ | |
// eslint-disable-next-line no-extend-native | |
String.prototype.toTitleCase = function () { | |
'use strict' |
// https://litmus.com/community/learning/24-how-to-code-a-responsive-email-from-scratch | |
doctype html | |
html(lang="en") | |
head | |
link(rel="stylesheet", href="https://fonts.googleapis.com/css?family=Nunito+Sans:400,700") | |
style. | |
/* Some resets and issue fixes */ | |
#outlook a { padding:0; } | |
body{ width:100% !important; -webkit-text; size-adjust:100%; -ms-text-size-adjust:100%; margin:0; padding:0; } |
I hereby claim:
To claim this, I am signing this object:
css { | |
should-look: like-this; | |
/* one space after the selector */ | |
/* opening brace on the same line */ | |
/* 4-space indent */ | |
/* closing brace on its own line */ | |
/* one blank line between rules */ | |
} | |
.one-liners { can-look: like-this; } /* but only do this if the rule has only one property and it's unlikely to gain more */ |
javascript:(function()%7Bvar%20yt=document.querySelector('iframe%5Bsrc*=%22youtube.com/embed%22%5D'),ytExpanded=!!yt.dataset.iframeExpanded,ytStyle=yt.style;if(ytExpanded)%7Byt.style.cssText=yt.dataset.ytOldStyle;yt.removeAttribute('data-iframe-expanded');%7Delse%7Byt.dataset.ytOldStyle=ytStyle.cssText;yt.dataset.iframeExpanded=true;ytStyle.position='absolute';ytStyle.width='94%25';ytStyle.height='94%25';ytStyle.boxShadow='0%200%203em%20rgba(0,%200,%200,%20.8)';ytStyle.top='3%25';ytStyle.left='3%25';%7D%7D)(); |
javascript:(function(){var%20vp=document.querySelector('meta[name=viewport]');if(vp){vpParts=vp.content.split(',');vpParts=vpParts.map(function(v,i,a){if(v.indexOf('user-scalable')>-1){return%20'user-scalable=1';}else{return%20v;}});vp.content=vpParts.join(',');}else{return%20false;}})(); |