Skip to content

Instantly share code, notes, and snippets.

@jnschrag
jnschrag / animations-example.css
Created April 2, 2018 19:50
ASP Longform Animation
#satellite .longform-section-overlay.aos-animate + .section-content svg#Layer path {
stroke-dasharray: 1000;
stroke-dashoffset: 1000;
animation: dash 5s linear forwards 1;
}
@keyframes dash {
from {
stroke-dashoffset: 1000;
}
@jnschrag
jnschrag / data.csv
Created April 30, 2018 19:58
D360 Procurement Data
We can't make this file beautiful and searchable because it's too large.
level1,level2,level3,level4,Year,current-dollars,constant
Aircraft,Air Force,Combat aircraft,F-35,1999,0.000,0.000
Aircraft,Air Force,Combat aircraft,F-35,2000,0.000,0.000
Aircraft,Air Force,Combat aircraft,F-35,2001,0.000,0.000
Aircraft,Air Force,Combat aircraft,F-35,2002,0.000,0.000
Aircraft,Air Force,Combat aircraft,F-35,2003,0.000,0.000
Aircraft,Air Force,Combat aircraft,F-35,2004,0.000,0.000
Aircraft,Air Force,Combat aircraft,F-35,2005,0.000,0.000
Aircraft,Air Force,Combat aircraft,F-35,2006,117447.000,145376.166
Aircraft,Air Force,Combat aircraft,F-35,2007,93622.000,112822.051
@jnschrag
jnschrag / README.md
Last active June 13, 2018 18:27 — forked from chrisrzhou/README.md
D3 Radar Chart

D3 Radar Chart

bl.ocks.org link

A radar chart visualizes multivariate data in a 2D chart of three or more quantitative variables represented on axes.

The project is created using AngularJS and D3.js.


Description

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jnschrag
jnschrag / policy.json
Created September 21, 2018 14:34
Forestry S3 Deployments IAM Policy
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:GetBucketLocation"
],
"Resource": [
@jnschrag
jnschrag / cloudinary-images.rb
Created October 22, 2018 19:35
Jekyll Cloudinary
# Finds images in markdown files and replace them with a cloudinary responsive image include
Jekyll::Hooks.register :documents, :pre_render do |post, payload|
docExt = post.extname.tr('.', '')
# only process if we deal with a markdown file
if payload['site']['markdown_ext'].include? docExt
newContent = post.content.gsub(/\!\[(.*)?\]\((.*?)(?=\"|\))(\".*\")?\)/, '{% include cloudinary-responsive-img.html title=\3 alt="\1" path="\2" %}')
post.content = newContent
end
end
@jnschrag
jnschrag / Makefile
Last active February 12, 2019 15:54 — forked from pnavarrc/Makefile
Azimutal Equal Area
# Download and Transform the 1:50m Country Shapefiles from Natural Earth
# http://www.naturalearthdata.com/downloads/110m-physical-vectors/
URL = http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/110m/physical/ne_110m_land.zip
# Download the zip file from the Natural Earth server
ne_110m_land.zip:
curl -LO $(URL)
# Unzip the shapefiles
@jnschrag
jnschrag / .block
Last active April 9, 2019 15:19 — forked from officeofjane/.block
China tile grid map
license: mit
@jnschrag
jnschrag / README.md
Last active April 11, 2019 14:22 — forked from syntagmatic/README.md
Quantile, Quantize, Threshold Scales
@jnschrag
jnschrag / breakpoints.scss
Created April 24, 2019 13:59
SASS Media Query Mixin
// Breakpoints
// $break: Breakpoint to use
// $dir: 'min-width' or 'max-width'
// $until: Maximum width
// @include breakpoint('medium');
// @include breakpoint($break: 'medium', $until: 'large');
// @include breakpoint($break: 'medium', $dir: 'max-width');
@mixin breakpoint($break, $dir: 'min-width', $until: null, $breakpoints-map: $breakpoints) {
@if not map-has-key($breakpoints-map, $break) {
$break: $break;