Skip to content

Instantly share code, notes, and snippets.

View gopherkhan's full-sized avatar

Chris gopherkhan

View GitHub Profile
@gopherkhan
gopherkhan / gist:ca0c7432bcc31a52135ef4aca982adb7
Last active May 14, 2018 04:48
Strange Site Content. wget output for presentation
<!DOCTYPE html><html data-adblockkey="MFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBANDrp2lz7AOmADaN8tA50LsWcjLFyQFcb/P2Txc58oYOeILb3vBw7J6f4pamkAQVSQuqYsKx3YzdUHCvbVZvFUsCAwEAAQ==_gUMHyRI/i7ChOZ3rmTv8UltQJ+GXoEy9FD1iPveLNbGQz/+duQs3IpLpaDNuZF84GMNKFIoCSIBpXDGs7CksuA=="><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title></title><meta name="viewport" content="width=device-width, initial-scale=1"><meta name="description" content="See related links to what you are looking for."/></head><!--[if IE 6 ]><body class="ie6"><![endif]--><!--[if IE 7 ]><body class="ie7"><![endif]--><!--[if IE 8 ]><body class="ie8"><![endif]--><!--[if IE 9 ]><body class="ie9"><![endif]--><!--[if (gt IE 9)|!(IE)]> --><body><!--<![endif]--><script type="text/javascript">g_pb=(function(){var
DY=document,azu=location,DE=DY.createElement('script'),aAx=false,LX;DE.defer=true;DE.async=true;DE.src="//www.google.com/adsense/domains/caf.js";DE.onerror=function(){if(azu.search!=='?z'){azu.href='/?z';}};DE.onload=DE.onreadystatechange
@gopherkhan
gopherkhan / spec.json
Created February 9, 2024 01:05
Bar Chart with Color Palette
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"description": "A bar chart showing the US population distribution of age groups and gender in 2000.",
"data": {"url": "data/population.json"},
"transform": [
{"filter": "datum.year == 2000"},
{"calculate": "datum.sex == 2 ? 'Female' : 'Male'", "as": "gender"}
],
"width": {"step": 17},
"mark": "bar",