All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog.
#!/usr/bin/env bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
find . \( -name '*.cpp' -o -name '*.hpp' -o -name '*.c' -o -name '*.h' \) \ | |
-exec clang-format -i {} \; |
#!/bin/bash | |
START=599 | |
for i in {600..700}; do | |
brightness="$((700-i))" | |
convert "$START.png" -modulate "$brightness%" "$i.png" & | |
done |
#!/bin/bash | |
# | |
# For Linux and macOS. | |
# The Godot editor must be in your `PATH` as `godot` for this script to work. | |
# Licensed under CC0 1.0 Universal. | |
set -euo pipefail | |
IFS=$'\n\t' | |
if [[ ! "${1:-}" || "${1:-}" == "--help" || "${1:-}" == "-h" ]]; then |
#!/usr/bin/env bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
SCONS_FLAGS=( | |
"lto=full" | |
"progress=no" | |
"debug_symbols=no" | |
) |
/* ==UserStyle== | |
@name Kanboard Dark | |
@namespace github.com/openstyles/stylus | |
@version 0.0.1 | |
@license MIT | |
@description Dark theme for Kanboard | |
@author Calinou | |
==/UserStyle== */ | |
:root { |
/* ==UserStyle== | |
@name Modern Font Stack | |
@namespace github.com/openstyles/stylus | |
@version 1.0.0 | |
@license MIT | |
@description Replaces Segoe UI, Arial and Helvetica Neue with IBM Plex Sans on all websites | |
@author Calinou | |
==/UserStyle== */ | |
@-moz-document regexp(".*") { |
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog.
#!/bin/bash | |
# | |
# Renders video intro/outro images; targeted at Blender usage. | |
# Usage: ./render.sh | |
# | |
# Copyright © 2018 Hugo Locurcio | |
# Licensed under CC0 1.0 Universal: https://creativecommons.org/publicdomain/zero/1.0/ | |
set -euo pipefail | |
IFS=$'\n\t' |
#!/bin/bash | |
# | |
# Renders text captions for videos; targeted at Blender usage. | |
# Usage: ./render.sh | |
# | |
# Copyright © 2018 Hugo Locurcio | |
# Licensed under CC0 1.0 Universal: https://creativecommons.org/publicdomain/zero/1.0/ | |
set -euo pipefail | |
IFS=$'\n\t' |
{ | |
... | |
"extensionsGallery": { | |
"serviceUrl": "https://marketplace.visualstudio.com/_apis/public/gallery", | |
"cacheUrl": "https://vscode.blob.core.windows.net/gallery/index", | |
"itemUrl": "https://marketplace.visualstudio.com/items" | |
} | |
} |