- Option 1: captive.apple.com
- Try http://captive.apple.com on browser
- Try captive.apple.com with HEAD method
- Option 2: neverssl.com
- Try http://neverssl.com on browser
| class RectDrawable(rect: Rect): Drawable() { | |
| private val boundingRectPaint = Paint().also { | |
| it.style = Paint.Style.STROKE | |
| it.color = Color.RED | |
| it.strokeWidth = 4f | |
| it.alpha = 255 | |
| } | |
| init { |
| import kotlinx.serialization.ExperimentalSerializationApi | |
| import kotlinx.serialization.encodeToString | |
| import kotlinx.serialization.json.Json | |
| import kotlinx.serialization.json.JsonElement | |
| import kotlinx.serialization.json.decodeFromJsonElement | |
| import kotlinx.serialization.json.decodeFromStream | |
| import java.io.InputStream | |
| /** |
| du -sh */ | sort -hr |
| services: | |
| db: | |
| image: mariadb | |
| command: '--default-authentication-plugin=mysql_native_password' | |
| volumes: | |
| - db_data:/var/lib/mysql | |
| restart: always | |
| environment: | |
| - MYSQL_ROOT_PASSWORD=somewordpress | |
| - MYSQL_DATABASE=wordpress |
| #!/bin/bash | |
| java -jar $(dirname "$0")/antlr.jar $@ |
| generate-ca-key-cert: | |
| openssl req -x509 -newkey rsa:4096 -days 3650 -keyout ca-key.pem -out ca-cert.pem | |
| print-ca-cert: | |
| openssl x509 -in ca-cert.pem -noout -text | |
| server-req: | |
| openssl req -x509 -newkey rsa:4096 -days 365 -keyout ca-key.pem -out ca-cert.pem | |
| server-cert: | |
| openssl x509 -req -in server-req.pem -days 60 -extfile v3_req.ext -CA ca-cert.pem -CAkey ca-key.pem -CAcreateserial -out server-cert.pem | |
| print-server: | |
| openssl x509 -in server-cert.pem -noout -text |
| cmake_minimum_required(VERSION 3.17) | |
| project(pbesproxy) | |
| set(CMAKE_CXX_STANDARD 17) | |
| set(PBES_DIR "/usr") | |
| set(PBES_LIB_DIR "${PBES_DIR}/lib") | |
| set(PBES_INCLUDE_DIR "${PBES_DIR}/include") | |
| find_library(MCRL2_ATERMPP libmcrl2_atermpp.so PATHS ${PBES_LIB_DIR}) | |
| find_library(MCRL2_BES libmcrl2_bes.so PATHS ${PBES_LIB_DIR}) |
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
| wget -H -E -k -p WEB_URL |