Skip to content

Instantly share code, notes, and snippets.

View jmvalenciz's full-sized avatar

Juan Manuel Valencia Zapata jmvalenciz

View GitHub Profile
@jmvalenciz
jmvalenciz / holidate-to-task.sh
Last active July 13, 2021 07:26
A script to convert holidate.net holidays into taskwarrior format. Depends on jq
#!/usr/bin/sh
while getopts "y:l:" flag
do
case "${flag}" in
y) year=${OPTARG};;
l) locale=${OPTARG};;
*) exit 1;;
esac
done
@jmvalenciz
jmvalenciz / gitlab-ci.yml
Created August 16, 2020 06:52
Simple gitlab-ci.yml for Node.js
image: node:latest
stages:
- build
- test
cache:
paths:
- node_modules/
install_dependencies: