- All namespaces are explicitly named
- GML namespace is http://www.opengis.net/gml/3.2
Could replace
Could replace
| A) Without -label in search | |
| ------------------------ | |
| gmv@gmvault:~/old-versions/v1.7/bin$ ./gmvault sync [email protected] -t custom -g "diptyque" -c no | |
| Use gmvault-db located in /home/gmv/gmvault-db. | |
| Disable deletion of emails that are in Gmvault db and not anymore in Gmail. | |
| Authentication performed with Gmail XOAuth token. |
| [user] | |
| name = Guillaume Aubert | |
| email = [email protected] | |
| [github] | |
| # github user | |
| user = gaubert | |
| # you can also add your id token | |
| #token = | |
| [alias] | |
| # aliases to mimics svn commands |
| # These instructions work for OS X 10.6 with homebrew pre-installed. | |
| brew install python --framework | |
| brew install gfortran | |
| # install other dependencies through pip: | |
| pip install numpy | |
| # the regular pip build for matplotlib is b0rken, and it can't find the built-in libraries for OSX | |
| export LDFLAGS="-L/usr/X11/lib" |
#Create bitbucket branch
##Create local branch
$ git checkout -b sync
Switched to a new branch 'sync'
$ git branch
master
* sync
Install Python
$ brew install readline sqlite gdbm
$ brew install python --universal --framework
$ python --version
Python 2.7
Symlinks...
| import bisect | |
| import itertools | |
| import operator | |
| class _BNode(object): | |
| __slots__ = ["tree", "contents", "children"] | |
| def __init__(self, tree, contents=None, children=None): | |
| self.tree = tree |
| import bisect | |
| import itertools | |
| import operator | |
| class _BNode(object): | |
| __slots__ = ["tree", "contents", "children"] | |
| def __init__(self, tree, contents=None, children=None): | |
| self.tree = tree |
| wget https://bitbucket.org/pdubroy/pip/src/eb5e59a25dfb/getpip.py --no-check-certificate |