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
| Sirocco EFI | |
| Start EBS [ 1891] | |
| BDS: LogFs sync skipped, Unsupported | |
| Successfully synced all UEFI tables | |
| Sync Duration = 1 ms | |
| Warning: Clearing A-bit ! | |
| App Log Flush : 617 ms | |
| Gunyah based bootup | |
| Exit EBS [ 2525] UEFI End | |
| Sirocco version 2.0.0-alpha.3-imola-user (git 03e0c997f36c dirty:false) config=4b86df05ee18e43e build=fd3bc2773544b927 fp=7b40fbea71d90fdf mojo=1.1.0.dev2026081405 llvm=20 epoch=1787820264 arch=aarch64 |
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
| # -*- coding: utf-8 -*- | |
| """ | |
| Created on Thu Jun 22 16:44:27 2017 | |
| @author: sakurai | |
| """ | |
| import numpy as np | |
| import cv2 |
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
| server { | |
| listen 80; | |
| listen [::]:80; | |
| server_name [domain-name] www.[domain-name]; | |
| server_tokens off; | |
| location /.well-known/acme-challenge/ { | |
| root /var/www/certbot; | |
| } |
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
| { | |
| "state_directory": "./state", | |
| "wif": "YOUR_WIF_CREDENTIALS", | |
| "bitcoin_node_url": "http://devnet:devnet@localhost:8001/api", | |
| "stacks_node_url": "http://localhost:3999", | |
| "stacks_transaction_fee": 2000, | |
| "bitcoin_transaction_fee": 2000, | |
| "contract": "../asset-contract/contracts/asset.clar", | |
| "contract_name": "sbtc-alpha-romeo-testing" | |
| } |
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
| #!/bin/sh | |
| chmod 600 /root/.ssh/pkey.pem | |
| echo "${SERVER_HOSTNAME},$(getent hosts ${SERVER_HOSTNAME} | awk '{ print $1 }') ${SERVER_ALGO} ${SERVER_HOST_KEY}" > /tmp/known_hosts | |
| autossh -M 0 -o "ServerAliveInterval 10" -o "ServerAliveCountMax 2" -o "UserKnownHostsFile /tmp/known_hosts" $@ |
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 alpine:3.11 | |
| RUN apk add --no-cache autossh openssh-client | |
| COPY entrypoint.sh /bin/entrypoint | |
| RUN chmod a+x /bin/entrypoint | |
| ENTRYPOINT ["entrypoint"] |
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 alpine:3.11 | |
| RUN apk add --no-cache autossh openssh-client | |
| COPY entrypoint.sh /bin/entrypoint | |
| RUN chmod a+x /bin/entrypoint | |
| ENTRYPOINT ["entrypoint"] |
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
| version: 0.1.0 | |
| name: sshtun | |
| description: Reverse SSH Tunnelling Docker App | |
| --- | |
| version: '3.2' | |
| services: | |
| sshtun: |
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
| version: '3.2' | |
| services: | |
| rtunnel: | |
| image: foundries/rtunnel-sshd:latest | |
| restart: always | |
| tty: true | |
| network_mode: "host" | |
| command: "<foundries.io api token>" | |
| volumes: |
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
| #!/bin/bash | |
| set -eu | |
| echo "steps:" | |
| for TEST in $TESTS; do | |
| cat <<EOF | |
| - trigger: "jtest" | |
| label: "${TARGET}-${TEST}-${FW_VER}" |
NewerOlder