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
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using EasyAR; | |
/* This script fixes the model shake behavior on EasyAr v2. You should | |
use this instead of ImageTargetBehaviour on your target. Just delete the | |
ImageTargetBehaviour component and add this one | |
It is a fixed and improved version of the one posted on this thread: |
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
#!/usr/bin/env bash | |
function pause(){ | |
read -p "$*" </dev/tty | |
} | |
echo "cual es la url base del sitio? (sin http://)" | |
read sitiourl </dev/tty | |
# - crear archivo passenger |
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
#!/usr/bin/env bash | |
# Tool to the initial setup of a django project on dreamhost: | |
# Latest version: wget -O - https://gist.githubusercontent.com/guinunez/4f3006aeaef673eed7a0ff6acbeede79/raw/nest.sh | bash | |
# This is what the script does | |
# - Create the SSH key | |
# - install python 3 | |
# - Clone repo |
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
#!/usr/bin/env bash | |
# Tool to perform common Git commands in sequence: | |
# - Verifies that you are in a Git repository | |
# - Adds and removes modified files | |
# - Commits with a message | |
# - Performs a pull | |
# - If a remote upstream branch is detected, performs a merge | |
# - If the automatic merge fails, calls the mergetool (you need to run syncme again after that) |