A custom axis function that "extends" the native axis (in this case, highlighting years on a time scale). See this Stack Overflow question.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
customjsReady("div[data-test='skill-tree']", () => { | |
const userName = $("div#root div[data-test='user-dropdown'] > span:first").text(); | |
$.get(`/users/${userName}`, (d) => { | |
const language = Object.keys(d.language_data)[0]; | |
const skills = d.language_data[language].skills; | |
const $skills = $("div[data-test='skill-tree'] > div > a"); | |
$skills.each((i, d) => { | |
const $skill = $(d); | |
const skillName = $skill.find("> div > span").text() | |
if (skillName && skillName.length) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* dynalist.css */ | |
/* tags */ | |
.node-tag { | |
background: rgba(255, 165, 0, 0.8); | |
font-size: 0.8em; | |
border-radius: 0.3em; | |
font-weight: bold; | |
padding: 2px 5px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$taskName = 'Enter hours at logon' | |
# Path to Chrome on your machine | |
$chrome = 'C:\Program Files (x86)\Google\Chrome\Application\chrome.exe' | |
# URL of your tab of the spreadsheet | |
$url = 'https://docs.google.com/spreadsheets/d/ASDFasdf12341234asdfASDFASFD1234/edit#gid=12341234' | |
$taskXml = @" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# posh-git | |
Import-Module 'C:\tools\poshgit\dahlbyk-posh-git-a4faccd\src\posh-git.psd1' | |
# set home directory | |
$HomeDir = "c:\git" | |
Set-Variable HOME $HomeDir -Force | |
(get-psprovider 'FileSystem').Home = $HomeDir | |
# $ESC = [char]27 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* change main font */ | |
body, | |
html, | |
div, | |
textarea { | |
font-family: Roboto; | |
} | |
/* change font for all headings */ |
I hereby claim:
- I am herbcaudill on github.
- I am hc3 (https://keybase.io/hc3) on keybase.
- I have a public key ASCf7bop30lk9KoD2a9HYRGVxdH-dN3B_WO712k4HtkP-Qo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='UTF-8'?> | |
<!DOCTYPE score-partwise PUBLIC "-//Recordare//DTD MusicXML 3.0 Partwise//EN" "http://www.musicxml.org/dtds/partwise.dtd"> | |
<score-partwise version='3.0'> | |
<work> | |
<work-title>Black Crow</work-title> | |
</work> | |
<movement-title>JONI MITCHELL</movement-title> | |
<identification> | |
<creator type='composer'>arr. by Herb Caudill</creator> | |
<encoding> |
OlderNewer