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
/** | |
* Decode and display information contained in a SMART Health Card (SHC) QR code | |
* Usage: node vaccineqr.js /path/to/qrcode.png | |
* | |
* Required dependencies: | |
* - jimp | |
* - jsqr | |
* | |
* 2021 Jacob Cook | |
*/ |
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
_______________ | |
< Take the bus! > | |
--------------- | |
\ ^__^ | |
\ (oo)\_______ | |
(__)\ )\/\ | |
||----w | | |
|| || |
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
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: mk-test-cfgmap | |
data: | |
VOLUME_MOUNT_PATH: /data | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: |
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
****** | |
,*********** | |
**************** (( (( (( | |
,****/********/***** (( (( (( | |
****/******/**** (((((((( ((( ((( (((((( (((((((/ (( (( ((((((( | |
**********. ((. ((( ((( ((( ((( (( (( (( (( (( (( | |
****** (( ((( ((( ((( (((( (( (( (( (( (( (( | |
// ((( ((( ((((((((( ( ((( ((( ((( (((((((( ((( ((( | |
** |
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
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: mk-test-cfgmap | |
data: | |
MK_TEST_ONE: hello | |
MK_TEST_TWO: busbud | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment |
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
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] |
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
#!/usr/bin/env python3 | |
import configparser | |
import glob | |
import os | |
import pacman | |
import subprocess | |
import arkos | |
from arkos import applications |
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
from __future__ import print_function | |
try: | |
import configparser | |
except: | |
import ConfigParser | |
configparser = ConfigParser | |
import arkos | |
import grp | |
import os |
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
#user nobody; | |
worker_processes 1; | |
#error_log logs/error.log; | |
#error_log logs/error.log notice; | |
#error_log logs/error.log info; | |
#pid logs/nginx.pid; |
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 os | |
import re | |
import subprocess | |
import sys | |
import urllib2 | |
def install(): | |
print "Installing new packages..." | |
# Install new mirrorlist |
NewerOlder