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
<html> | |
<head> | |
<title>Basic Barcode Reader</title> | |
<script type="text/javascript" src="BarcodeReader.js"></script> | |
<script type="text/javascript"> | |
var defaultScanner; | |
// On page load create a BarcodeReader object | |
function setup () | |
{ |
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
echo "$PATH" | tr \: /n |
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
location /sidekiq { | |
auth_basic "Restricted"; | |
auth_basic_user_file /etc/nginx/htpasswd; | |
if (!-f $request_filename) { | |
proxy_pass http://dokku-app-name:5000; | |
break; | |
} | |
} |
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
import "./setup"; | |
// Dependencies | |
import Vuetify from "vuetify"; | |
import VueCompositionApi from "@vue/composition-api"; | |
import i18n from "@/plugins/i18n"; | |
import store from "@/store"; | |
// Components | |
import Home from "../../src/views/Home.vue"; |
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
import { Vue } from "vue/types/vue"; | |
interface AuthOptions { | |
params?: {}; | |
success?: () => void; | |
error?: () => void; | |
} | |
type Redirect = { path: string } | string; |
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
remote: + [[ =====> Downloading Buildpack: https://github.com/dokku/buildpack-nginx == --* ]] | |
remote: + [[ =====> Downloading Buildpack: https://github.com/dokku/buildpack-nginx == ==* ]] | |
=====> Downloading Buildpack: https://github.com/dokku/buildpack-nginx | |
=====>' Downloading Buildpack: https://github.com/dokku/buildpack-nginx | |
remote: + read -r line | |
remote: + [[ ! -f /tmp/build/.static ]] | |
remote: + exit 1 | |
remote: + rm -rf /tmp/dokku-21039-git_build_app_repo.hmTeKw | |
remote: + exit_code=1 | |
remote: + set -e |
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
// Simplified version of this codepen https://codepen.io/dxinteractive/pen/bpaMMy authored by Damien Clark | |
const TOTAL_TAP_VALUES = 5 | |
const MS_UNTIL_CHAIN_RESET = 2000 | |
const SKIPPED_TAP_THRESHOLD_LOW = 1.75 | |
const SKIPPED_TAP_THRESHOLD_HIGH = 2.75 | |
export default { | |
data() { | |
return { |