create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
/** WARNING - USE AT OWN RISK */ | |
/** IT IS AGAINST APPLE'S POLICY TO USE SF PRO FOR ANYTHING OTHER THAN iOS/tvOS/macOS/watchOS DESIGN & DEVELOPMENT */ | |
/** https://sf.abarba.me/LICENSE.pdf */ | |
/** 1. Copy/import this file into your main css/scss file */ | |
/** 2. Change css font-family: to "SF Text", "SF Display" or "SF Mono" */ | |
/** 3. Apply font-weight or italic to html elements */ | |
/** THANK YOU */ | |
/** I host these fonts on Cloudfront with SSL in all AWS regions for the best performance and reliability */ |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
I use the Essential JavaScript Links list almost daily. I add to it when I find more links that I think every JS developer should know about. I want to make it easier to scan, and easier for users to suggest new links. We're going to turn it into a proper website, so...
The Essential JavaScript Links List
Please visit there and open an issue if you have any suggestions.
This guide will walk you, the reader/tronc/latmg developer, through setting up our Arc PageBuilder repository on your local machine for development purposes. Let's get started!
The default docs in the github repo outline steps for running PageBuilder in vagrant. Ignore them! They are very deprecated and will not work.
If you don't have it already, go to the Docker website and install Docker for your OS. Go ahead, I'll wait. .
/* Sass Mixin that generates a Baseline Grid */ | |
/* by: Mike Morrison, Soholaunch.com */ | |
/* You don't have to leave this credit comment in, but it would be nice of you. */ | |
// Set your grid dimensions here | |
$body-width: 960px; | |
$baseline: 22px; | |
@mixin baseline-grid { | |
$columns: 16; | |
$column-color: rgba(200,0,0,.2); |
// ---- | |
// Sass (v3.4.20) | |
// Compass (v1.0.3) | |
// ---- | |
// variables-font-legacy | |
// The exist to provide backwards compatibility for | |
// current things that use font variables. You should | |
// NOT be using these for new SCSS code. |
<!DOCTYPE html> | |
<html lang="en"> | |
<title>Sectioning Content test</title> | |
<h1>This is an h1</h1> | |
<p>That h1 is the heading for the body (a sectioning root).</p> | |
<div> | |
<h1>This is another h1</h1> | |
<p>That h1 is inside a div so it is no different than the first h1.</p> | |
</div> | |
<section> |
@function gray($intensity, $alpha: 1) { | |
@return rgba($intensity, $intensity, $intensity, $alpha); | |
} | |
/* Thanks Chris Eppstein for simplifying my code! */ | |
/* Testing our new function */ | |
body { | |
background: gray(50%); | |
background: gray(255, .2); |
<div id="box">Hello!</div> |
<div class="details"> | |
<p>Israel is a small country with a very well-informed and opinionated electorate. Naturally, Israeli media outlets have followed the election campaign closely, and they will be eager to call the outcome as quickly as they can.</p> | |
<hr /> | |
<p>Voting stations close at 10 p.m. (4 p.m. Eastern time), but official results will not be available right away — in fact, they may not be known in full until sometime Wednesday morning.</p> | |
</div> |