I hereby claim:
- I am soukron on github.
- I am sgarcia (https://keybase.io/sgarcia) on keybase.
- I have a public key whose fingerprint is 37B9 CB16 C3DA 46E0 9050 D186 C65B 7520 C0A6 5883
To claim this, I am signing this object:
| #!/bin/bash | |
| # Usage: ./install-vscode.sh [commit_id] [src_dir] | |
| COMMIT=${1:-18e3a1ec544e6907be1e944a94c496e302073435} | |
| SRC_DIR=${2:-/opt/vscode} | |
| DST_DIR="${HOME}/.vscode-server/cli/servers/Stable-${COMMIT}/server" | |
| SERVER_TAR="${SRC_DIR}/${COMMIT}/vscode-server-linux-x64.tar.gz" | |
| CLI_TAR="${SRC_DIR}/${COMMIT}/vscode_cli_alpine_x64_cli.tar.gz" |
| mkdir blank | |
| cd blank/ | |
| git init | |
| git remote add origin https://github.com/soukron/blank | |
| git remote add -f upstream-common https://github.com/validatedpatterns/common.git | |
| git read-tree --prefix=common/ -u upstream-common/main | |
| ln -s common/scripts/pattern-util.sh pattern.sh | |
| cat <<EOF>Makefile | |
| .PHONY: default | |
| default: help |
| -- | |
| -- Script para rellenar automaticamente los campos estrictamente necesarios de la comuncacion | |
| -- al Ministerio del Interior. Si quieres que rellene más, tienes que modificarlo usando | |
| -- el contenido actual como ejemplo. | |
| -- | |
| -- Instrucciones: | |
| -- - ejecutar "Script Editor" | |
| -- - pegar el contenido del script | |
| -- - modifica los valores de operador, pilotos y UAS | |
| -- - abre Safari |
| import requests | |
| from time import time | |
| from uuid import uuid4 | |
| import os | |
| from time import time,sleep | |
| embedding_service_host=os.getenv('EMBEDDING_SERVICE_HOST', '127.0.0.1') | |
| embedding_service_port=os.getenv('EMBEDDING_SERVICE_PORT', '999') | |
| nexus_service_host=os.getenv('NEXUS_SERVICE_HOST', '127.0.0.1') |
| #!/bin/bash | |
| outputFile=${1/.srt/.csv} | |
| # initialize statistics | |
| totalLines=$( cat ${1} |wc -l | sed 's/ //g;' ) | |
| # loop over the whole file | |
| echo "timestamp;latency;bitrate;voltage;avg. voltage" > "${outputFile}" | |
| currentLine=0 |
| # Use ZeroTier SDK image to build the binary | |
| FROM quay.io/soukron/zerotier-libzt-sdk:v1.3.1 as sdk | |
| COPY . /tmp/src | |
| RUN cd /tmp/src && \ | |
| make build-simple | |
| # Copy the binary to the ZeroTier Runtime image | |
| FROM quay.io/soukron/zerotier-libzt-runtime:v1.3.1 | |
| COPY --from=sdk /tmp/src/simple /usr/local/bin/simple |
I hereby claim:
To claim this, I am signing this object:
| /* script: venues.fs.search */ | |
| /* This script endpoint: /plugin/venues.fs.search */ | |
| on('install',function(installEvent){ | |
| var success = Box.DB.createCollection('venues-cache-queries'); | |
| var success = Box.DB.createCollection('venues-cache-answers'); | |
| return true; | |
| }); |