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
#!/bin/bash | |
the_dir=$1 | |
the_proj=$the_dir/*.xcodeproj | |
mkdir -p bin | |
rsync -avz $the_dir/bin/data/ bin/data | |
cp $the_dir/run.command . || : | |
xcodebuild -project $the_proj CONFIGURATION_BUILD_DIR=`pwd`/bin && sshpass -p 2bc rsync -avz --exclude=bin/data/ofxRemoteUISettings.xml ./ $2 |
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
""" | |
quick and dirty rhino script to "hole-out" an inner convex angle so an end-mill can carve it | |
see: | |
http://www.kontraptionist.com/post/45218053861/slotted-construction-its-a-pretty-nice-thing-to | |
for the technique it implements | |
to use it: | |
- choose a cplane orthogonal to the face | |
- run the script | |
- select the object |
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
Homebrew build logs for osrf/simulation/gazebo9 on macOS 10.14.6 | |
Build date: 2020-09-12 22:50:48 |
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
Homebrew build logs for osrf/simulation/gazebo9 on macOS 10.14.6 | |
Build date: 2020-09-14 21:57:47 |
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
# create a file named .env containing: | |
#username=<username> | |
#password=<password> | |
#student_id=<student_id> | |
#facility_id=<facility_id> | |
#find the facility id by inspecting the page once you've selected your school | |
from selenium import webdriver | |
from selenium.webdriver.common.by import By |
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 python3 | |
import sys | |
import re | |
import os | |
import tempfile | |
import shutil | |
import uuid | |
from subprocess import Popen, PIPE, STDOUT |
OlderNewer