Skip to content

Instantly share code, notes, and snippets.

@rd13
rd13 / .zshrc
Created November 13, 2018 15:40
JIRA / GIT branch opener / alias
alias jira='open "http://jira-host.com/browse/$(git rev-parse --abbrev-ref HEAD)"'
@rd13
rd13 / iso8601_duration.js
Last active October 15, 2021 13:40
Encode an iso8601 duration in Javascript
/**
* Utility function to convert seconds to an iso8601 duration string.
*
* @param seconds int The number of seconds to encode.
* @return string iso8601 formatted duration
*/
const iso8601Duration = (seconds = 0) => {
let _seconds = seconds;
@rd13
rd13 / setup.js
Created July 7, 2023 10:55
js test
const array = [...new Array(10000,)].map((_,i) => i);