Maps of my travels. Created with pndurette/geo-journal.
This file contains 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
import math | |
import os | |
import sys | |
# Blender imports | |
import bpy | |
from mathutils import Vector | |
""" | |
STL to rotated images sequence |
This file contains 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
#!/bin/bash | |
# $0 <text to convert> | |
# COLOUR=yellow $0 <text to convert> | |
TEXT="$@" | |
COLOUR="${COLOUR:-white}" # can be 'yellow' | |
REGEX='^[a-zA-Z\!\?\#\@\ ]+$' | |
[[ $TEXT =~ $REGEX ]] || \ |
This file contains 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
name: hello | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run a one-line script |
This file contains 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
BEGIN:VCALENDAR | |
BEGIN:VEVENT | |
DTSTART:20180101 | |
DTEND:20180101 | |
RRULE:FREQ=MONTHLY;BYMONTHDAY=13,14,15;BYDAY=MO,TU,WE,TH,FR;BYSETPOS=-1 | |
SUMMARY:Pay (15th) | |
END:VEVENT | |
END:VCALENDAR |