I hereby claim:
- I am gtalarico on github.
- I am gtalarico (https://keybase.io/gtalarico) on keybase.
- I have a public key whose fingerprint is B1FE ACB1 9ED2 D70D 98C0 ECCA 41B2 32A2 44F7 0F1F
To claim this, I am signing this object:
| info " Checking DB Connection" | |
| while ! python3 manage.py inspectdb >/dev/null 2>&1; do | |
| warn " DB is not ready" | |
| sleep 5 | |
| done | |
| info " DB is ready" |
| #!/bin/bash | |
| # By Andrew Salveson | |
| docker rm -v $(docker ps -a -q -f status=exited) | |
| docker rmi $(docker images -f "dangling=true" -q) | |
| docker volume rm $(docker volume ls -qf dangling=true) | |
| cat <<EOF |
| // src/three/OrbitControls.js | |
| // Note: file content truncated for display | |
| // Be sure to include the entire content from | |
| // https://raw.githubusercontent.com/mrdoob/three.js/master/examples/js/controls/OrbitControls.js | |
| /** | |
| * @author qiao / https://github.com/qiao | |
| * @author mrdoob / http://mrdoob.com | |
| * @author alteredq / http://alteredqualia.com/ | |
| * @author WestLangley / http://github.com/WestLangley |
| <template> | |
| <div id="app"> | |
| <navbar /> | |
| <router-link to="/">Home</router-link> | |
| </div> | |
| </template> | |
| <script> | |
| import Navbar from '@/components/Navbar.vue' | |
| export default { |
| # Description: Boxstarter Script | |
| # Author: Gui Talarico | |
| # Original boxstarter script by Jesse Frazelle (https://gist.github.com/jessfraz/7c319b046daa101a4aaef937a20ff41f) | |
| # | |
| # | |
| # Author: Jess Frazelle <jess@linux.com> | |
| # Last Updated: 2019-01-10 | |
| # | |
| # Install boxstarter: | |
| # . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force |
| <template> | |
| <input class="input is-small" type="text" placeholder="Filter" v-model="query" @keyup='doFilter'> | |
| </template> | |
| <script> | |
| ... | |
| data () { | |
| return { | |
| this.debouncedQuery = '', | |
| this.query = '' |
| # Add this file to app root, Heroku will execute it on start, clone repo and add location to path | |
| DIR=./package | |
| if [ -d "$DIR" ]; then | |
| printf '%s\n' "Deleting existing folder: ($DIR)" | |
| rm -rdf "$DIR" | |
| fi | |
| # GIT_CREDENTIALS=username:pwd | |
| echo "Cloning..." |
I hereby claim:
To claim this, I am signing this object:
| import clr | |
| import os | |
| # Verify these are needed. | |
| clr.AddReference('System') | |
| clr.AddReference('System.Drawing') | |
| clr.AddReference("System.Windows.Forms") | |
| # Windows Forms Elements | |
| from System.Drawing import Point, Icon, Color |
| """ | |
| Auto Move Tag to Center of Room | |
| TESTED REVIT API: | |
| 2015 | 2016 | |
| This was written to be used with PyRevit, but can easilly be used as | |
| a standalone script using the IronPythonShell, or | |
| a Dynamo Python component. | |
| """ |