Call this with something like the following
./my_openconnect \
--authenticate \
--external-browser $(which firefox-nightly) \
-u USERNAME \
--protocol=anyconnect \
--authgroup=AUTH_GROUP \
URLCall this with something like the following
./my_openconnect \
--authenticate \
--external-browser $(which firefox-nightly) \
-u USERNAME \
--protocol=anyconnect \
--authgroup=AUTH_GROUP \
URL| #!/bin/bash | |
| FILE=~/.counter | |
| TITLE="Simple Counter" | |
| if [ ! -f "$FILE" ]; | |
| then | |
| echo 0 > $FILE | |
| fi |
| # | |
| # Created by iwishiwasaneagle on 11/01/23. | |
| # | |
| cmake_minimum_required(VERSION 3.23) | |
| project(rtep) | |
| set(CMAKE_CXX_STANDARD 23) | |
| add_executable(rtep main.cpp main.h) |
| import dataclasses | |
| @dataclasses.dataclass | |
| class DCCoord: | |
| x: float | |
| y: float | |
| z: float | |
| heading: float |
| #!/usr/bin/env python3 | |
| """ | |
| Very simple HTTP server in python for logging requests | |
| Usage:: | |
| ./server.py [<port>] | |
| """ | |
| from http.server import BaseHTTPRequestHandler, HTTPServer | |
| import logging | |
| class S(BaseHTTPRequestHandler): |
| {"lastUpload":"2021-12-01T09:35:08.389Z","extensionVersion":"v3.4.3"} |