Create an empty git repo or reinitialize an existing one
git initCreate an empty git repo or reinitialize an existing one
git init| # Apache configuration file | |
| # httpd.apache.org/docs/2.2/mod/quickreference.html | |
| # Note .htaccess files are an overhead, this logic should be in your Apache | |
| # config if possible: httpd.apache.org/docs/2.2/howto/htaccess.html | |
| # Techniques in here adapted from all over, including: | |
| # Kroc Camen: camendesign.com/.htaccess | |
| # perishablepress.com/press/2006/01/10/stupid-htaccess-tricks/ | |
| # Sample .htaccess file of CMS MODx: modxcms.com | |
| # This is the free sample of .htaccess from 6GO s.r.l. | |
| # @author Claudio Ludovico Panetta (@Ludo237) |
| from fabric.api import * | |
| from fabric.colors import red, green | |
| from time import sleep | |
| from pprint import pprint | |
| from fabric.contrib.files import exists | |
| def local_git(): | |
| is_done = True |
| <template> | |
| <div> | |
| <div class="map_container" v-show="googleLoaded"> | |
| <div id="map"></div> | |
| <input type="text" class="controls" id="pac-input"/> | |
| </div> | |
| <!-- <button id="btnLoad" v-show="!googleLoaded" class="btn btn-primary" v-on:click="loadMap">Load map</button> --> | |
| <p v-show="!googleLoaded">Loading map...</p> | |
| </div> | |
| </template> |