Skip to content

Instantly share code, notes, and snippets.

View cayetanobv's full-sized avatar

Cayetano Benavent cayetanobv

View GitHub Profile
@josemazo
josemazo / README.md
Last active February 3, 2025 16:32
LaTeX within MkDocs

LaTeX within MkDocs

Needed Python packages:

$ pip install mkdocs python-markdown-math

mkdocs.yml file, with extra needed sections extra_javascript and markdown_extensions:

@cvvergara
cvvergara / run.sh
Created December 6, 2017 15:34
Using on pgRouting v2.6-dev
#!/bin/bash
set -e
if [ -z $1 ]; then
VERSION="2.6.0"
else
VERSION=$1
fi
#!/bin/bash
USER=XXX
ORG=XXX
PASS=XXX
REPO=XXX
# Delete default labels
curl --user "$USER:$PASS" --include --request DELETE "https://api.github.com/repos/$ORG/$REPO/labels/bug"
# curl --user "$USER:$PASS" --include --request DELETE "https://api.github.com/repos/$ORG/$REPO/labels/duplicate"
# curl --user "$USER:$PASS" --include --request DELETE "https://api.github.com/repos/$ORG/$REPO/labels/enhancement"