I hereby claim:
- I am sporsh on github.
- I am sporsh (https://keybase.io/sporsh) on keybase.
- I have a public key whose fingerprint is 2657 83C9 C0CD A7D3 00FA 9114 8A18 E5D2 F087 D6B5
To claim this, I am signing this object:
| from twisted.internet.protocol import Protocol | |
| import re | |
| class ShellProtocol(Protocol): | |
| """Define a generic shell-like protocol: | |
| [login-prompt [input-echo]] | |
| [password-prompt] [input-echo]] | |
| [greeting] | |
| [prompt] | |
| [input-echo] |
| /* | |
| * packet-adb.c | |
| * | |
| * Routines for Android Debug Bridge (ADB) protocol dissection | |
| * Author: Geir Sporsheim <[email protected]> | |
| */ | |
| #ifdef HAVE_CONFIG_H | |
| #include "config.h" | |
| #endif |
| #!/bin/bash | |
| # Execute git fetch | |
| git fetch & | |
| # Get the pid of the `git fetch` process | |
| pid=$! | |
| # Characters used for the spinner animation | |
| spin='⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏' |
| application: soft3dge | |
| version: 0 | |
| runtime: go | |
| api_version: go1 | |
| handlers: | |
| - url: / | |
| script: _go_app |
I hereby claim:
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Astigmatism eye test</title> | |
| <style> | |
| canvas { | |
| position: fixed; | |
| top: 0; |
| FROM silkeh/clang:14 as build | |
| WORKDIR /app | |
| COPY . . | |
| RUN mkdir dist | |
| RUN ./build.sh | |
| FROM nginx:1.23.1 | |
| COPY --from=build /app /usr/share/nginx/html |