I hereby claim:
- I am kisst on github.
- I am kisst (https://keybase.io/kisst) on keybase.
- I have a public key ASCcc4fTskxRF4R44DsiNx_hV2GJkRwboTsgUcZ7_QBlsgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| á = a' | |
| é = e' | |
| í = i' | |
| ó = o' | |
| ö = o" | |
| ő = =o | |
| ú = u' | |
| ü = u" | |
| ű = =u |
> [What's what section]
{ %string } => just some string
{ option1, option2 } => one of the listed
{ %seconds } => time in seconds
{ %number } => just some number
?{ %value } => optional value, depends on something else
!{ %value } => MUST provide data
{ %ip } => IP adress
{ %net } => Subnet in a form like 192.168.0.0/24
| " Start | |
| """ -------------- | |
| set bs=2 mouse=a shortmess=atI | |
| set autoread autoindent number ruler hidden autochdir cursorline | |
| set smartindent incsearch nowrapscan ignorecase smartcase | |
| set fdm=marker | |
| syntax on | |
| syntax enable |
| import lambdalayer.mymodule | |
| def lambda_handler(event, context) | |
| mymodule.offloadedcode(event, context) |
| #!/usr/bin/env python3 | |
| import os | |
| import re | |
| import sys | |
| import termios | |
| import tty | |
| import select | |
| import shutil | |
| import json | |
| import subprocess |
| #!/usr/bin/env python3 | |
| """ | |
| The missing function for AWS region support | |
| """ | |
| from collections import defaultdict | |
| import requests | |
| import pandas as pd | |
| list_of_regions = [] | |
| list_of_services = [] |
| import board | |
| import digitalio | |
| import time | |
| led = digitalio.DigitalInOut(board.GP25) | |
| led.direction = digitalio.Direction.OUTPUT | |
| def blink(count=1, delay=0.5): | |
| for cv in range(count): | |
| led.value = True |
| name,url | |
| 2go,https://www.2go.im | |
| 3cx,https://www.3cx.com | |
| activitypub,https://www.w3.org/TR/activitypub/ | |
| adamantmessenger,https://adamant.im | |
| airchat,https://airchat.com | |
| aprs,https://www.aprs.org | |
| atak,https://tak.gov | |
| ayoba,https://www.ayoba.me | |
| bale,https://bale.ai |
| #!/usr/bin/env python3 | |
| """ | |
| Type the content of the file given in parameter | |
| """ | |
| import time | |
| import sys | |
| import pyautogui | |
| # validate that we have something to type | |
| if not len(sys.argv) == 2: |