This file contains hidden or 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
| include <BOSL2/std.scad> | |
| include <BOSL2/joiners.scad> | |
| $eps = 0.01; | |
| $fa = 4; | |
| $fs = 0.2; | |
| tolerance = 0.25; | |
| stone_diameter = 380; |
This file contains hidden or 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
| #!/usr/bin/env python | |
| import argparse | |
| import math | |
| class Search(object): | |
| def __init__(self, words, context=3): | |
| self.words = sorted(words) | |
| self.lo = 0 | |
| self.hi = len(self.words) |
This file contains hidden or 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
| # filename: .github/workflows/godot-ci.yml | |
| name: "godot-ci export" | |
| on: push | |
| env: # NOTE when changing $GODOT_VERSION, also probably bump the container image version throughout below | |
| GODOT_VERSION: 4.5 | |
| # use a sub-directory if project.godot isn't at repository root | |
| PROJECT_PATH: . |
OlderNewer