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
/etc/bash.bashrc: line 7: PS1: unbound variable | |
/etc/bash.bashrc: line 7: PS1: unbound variable | |
/etc/bash.bashrc: line 7: PS1: unbound variable | |
/etc/bash.bashrc: line 7: PS1: unbound variable | |
make _build_image \ | |
-e BUILD_DOCKERFILE=./docker/buildtest/Dockerfile \ | |
-e BUILD_REPO=ghcr.io/vicchi \ | |
-e BUILD_IMAGE=buildtest \ | |
-e BUILD_FLAGS="--no-cache" | |
/etc/bash.bashrc: line 7: PS1: unbound variable |
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
/etc/bash.bashrc: line 7: PS1: unbound variable | |
/etc/bash.bashrc: line 7: PS1: unbound variable | |
/etc/bash.bashrc: line 7: PS1: unbound variable | |
/etc/bash.bashrc: line 7: PS1: unbound variable | |
make _build_image \ | |
-e BUILD_DOCKERFILE=./docker/buildtest/Dockerfile \ | |
-e BUILD_REPO=ghcr.io/vicchi \ | |
-e BUILD_IMAGE=buildtest \ | |
-e BUILD_FLAGS="--no-cache" | |
/etc/bash.bashrc: line 7: PS1: unbound variable |
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
/etc/bash.bashrc: line 7: PS1: unbound variable | |
/etc/bash.bashrc: line 7: PS1: unbound variable | |
/etc/bash.bashrc: line 7: PS1: unbound variable | |
/etc/bash.bashrc: line 7: PS1: unbound variable | |
make _build_image \ | |
-e BUILD_DOCKERFILE=./docker/buildtest/Dockerfile \ | |
-e BUILD_REPO=ghcr.io/vicchi \ | |
-e BUILD_IMAGE=buildtest \ | |
-e BUILD_FLAGS="--no-cache" | |
/etc/bash.bashrc: line 7: PS1: unbound variable |
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
# uvicorn main:app --host $(hostname) --port 8080 --log-level debug --reload | |
from fastapi import APIRouter, FastAPI | |
from utils import create_versioned_docs | |
VERSION = '2.0.0' | |
TITLE = 'Sample Versioned API' | |
DESCRIPTION = 'Sample versioned API blurb' | |
app = FastAPI(docs_url=None, redoc_url=None, title=TITLE, version=VERSION, description=DESCRIPTION) |
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 osgeo/osgeo4mac/osgeo-qgis on macOS 10.14.5 | |
Build date: 2019-05-21 12:51:31 |
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
function loadConfig(callback) { | |
var xobj = new XMLHttpRequest(); | |
xobj.overrideMimeType("application/json"); | |
xobj.open('GET', './config.json', true); | |
xobj.onreadystatechange = function () { | |
if (xobj.readyState == 4 && xobj.status == "200") { | |
// Required use of an anonymous callback as .open will NOT return a value but simply returns undefined in asynchronous mode | |
callback(xobj.responseText); | |
} | |
}; |
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
var json = (function() { | |
var json = null; | |
$.ajax({ | |
'async': true, | |
'global': false, | |
'url': "./config.json", | |
'dataType': "json", | |
'success': function (data) { | |
json = data; | |
} |
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
var json = require('./config.json'); | |
var key = json.what3words.key; | |
var options = { | |
key: key | |
lang: 'en' | |
}; | |
var w3w = new What3words(options); |
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
{ | |
"what3words": { | |
"key": "your-api-key-here" | |
} | |
} |
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
2015-05-09 12:18:27 +0100 | |
./configure | |
--enable-layout=Homebrew | |
--enable-mods-shared=all | |
--enable-unique-id | |
--enable-ssl | |
--enable-dav | |
--enable-cache | |
--enable-proxy |
NewerOlder