I hereby claim:
- I am founddrama on github.
- I am founddrama (https://keybase.io/founddrama) on keybase.
- I have a public key ASB7TVMopwsW-2i4ibG5l0T5q_14Xlt7QXdF5b5T5kxEQwo
To claim this, I am signing this object:
(function() { | |
/** | |
* Attached to `iframe.flickr-embed-frame`, observe when the element is resized | |
* and re-scale the explicitly set height to match the dynamic width based on | |
* the original aspect ratio. | |
* | |
* It's stupid that we have to do this at all... but here we are. | |
*/ | |
const resizeObserver = new ResizeObserver((entries) => { | |
entries.forEach((entry) => { |
I hereby claim:
To claim this, I am signing this object:
<table> | |
<tbody> | |
<tr> | |
<td style="width:50%;background:linear-gradient(90deg, rgba(254,226,135,1) 10%, rgba(254,192,72,1) 90%);"></td> | |
<td style="width:50%">{{c1::Straw}}</td> | |
</tr> | |
<tr> | |
<td style="width:50%;background:linear-gradient(90deg, rgba(254,192,72,1) 10%, rgba(253,179,53,1) 90%);"></td> | |
<td style="width:50%">{{c2::Yellow}}</td> | |
</tr> |
--- | |
title: "Homebrew Competition Analysis" | |
author: "Rob Friesel" | |
date: "10/28/2018" | |
output: html_document | |
--- | |
```{r setup, include=FALSE} | |
knitr::opts_chunk$set(echo = TRUE) | |
library("dplyr") |
--- | |
title: "Crunching Brew Data" | |
output: html_document | |
--- | |
```{r setup, include=FALSE} | |
knitr::opts_chunk$set(echo = TRUE) | |
library("dplyr") | |
library("ggplot2") | |
library("reshape2") |
--- | |
title: "BJCP style exploration" | |
author: "Rob Friesel" | |
date: "10/20/2017" | |
output: html_document | |
--- | |
```{r setup, include=FALSE} | |
knitr::opts_chunk$set(echo = TRUE) | |
library("ggplot2") |
--- | |
title: "Spike 10 gal. Kettle Diagnostic Run" | |
output: html_notebook | |
--- | |
## Method | |
1. Fill a **10 gal. Spike kettle** with **6 gallons** of tap water; | |
apply heat on the stovetop. | |
2. **Stir** the water before each temperature reading. |
--- | |
title: "Category 13" | |
author: "Rob Friesel" | |
date: "10/20/2017" | |
output: html_document | |
--- | |
```{r setup, include=FALSE} | |
knitr::opts_chunk$set(echo = TRUE) | |
library(ggplot2) |
Disclaimer: This piece is written anonymously. The names of a few particular companies are mentioned, but as common examples only.
This is a short write-up on things that I wish I'd known and considered before joining a private company (aka startup, aka unicorn in some cases). I'm not trying to make the case that you should never join a private company, but the power imbalance between founder and employee is extreme, and that potential candidates would
All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.
elem.offsetLeft
, elem.offsetTop
, elem.offsetWidth
, elem.offsetHeight
, elem.offsetParent
elem.clientLeft
, elem.clientTop
, elem.clientWidth
, elem.clientHeight
elem.getClientRects()
, elem.getBoundingClientRect()