I hereby claim:
- I am env25 on github.
- I am env25 (https://keybase.io/env25) on keybase.
- I have a public key ASDE5jYkU8sq2BQfR6Pv-6wYAW68ifCPPbkv6xfknPM8ego
To claim this, I am signing this object:
| javascript:window.location.replace("https://memeinsider.com/page-data"+window.location.pathname+"/page-data.json"); | |
| or | |
| cdn location may change in the future so use json method first | |
| javascript:window.location.replace(window.location.href.replace("https://","https://s3.amazonaws.com/cdn.")+".pdf") |
| diff --git a/wpa-psk.py b/wpa-psk.py | |
| index 0881ae3..9089caf 100644 | |
| --- a/wpa-psk.py | |
| +++ b/wpa-psk.py | |
| @@ -4,6 +4,12 @@ import sys | |
| from argparse import ArgumentParser | |
| from getpass import getpass | |
| from hashlib import pbkdf2_hmac | |
| +from signal import signal, SIGINT | |
| + |
| https://tasks.google.com/embed/?origin=https://calendar.google.com |
| diff --git a/PKGBUILD b/PKGBUILD | |
| index f59da3b..ed010c0 100644 | |
| --- a/PKGBUILD | |
| +++ b/PKGBUILD | |
| @@ -1,33 +1,22 @@ | |
| # Maintainer: Xandar Null <xandar.null@gmail.com> | |
| pkgname=freezer-bin | |
| +_pkgname_=freezer | |
| pkgver=1.1.18 |
| #include "state_machine.h" | |
| #include <iostream> | |
| using namespace std; | |
| struct StateFn { | |
| State f; | |
| StateFn(State p) : f(p) {} | |
| operator State(void) { return f; } |
| export function *fibonacci(n) { | |
| const infinite = !n && n !== 0; | |
| let current = 0n; | |
| let next = 1n; | |
| while (infinite || n--) { | |
| yield current; | |
| [current, next] = [next, current + next]; | |
| } | |
| } |
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| "strings" | |
| "github.com/gdamore/tcell/v2" | |
| "github.com/gdamore/tcell/v2/encoding" | |
| "github.com/mattn/go-runewidth" |
I hereby claim:
To claim this, I am signing this object:
| color0 #000000 | |
| color1 #d81029 | |
| color2 #00c172 | |
| color3 #e2e800 | |
| color4 #1571ce | |
| color5 #c824c2 | |
| color6 #00aad1 | |
| color7 #e5e5e5 | |
| color8 #666666 | |
| color9 #fe3646 |
| # /etc/systemd/system/timesync.service | |
| [Unit] | |
| Description=time sync using HTTP Date header | |
| Wants=network-online.target network.target | |
| After=network-online.target network.target | |
| [Service] | |
| Type=oneshot | |
| ExecStart=/bin/bash -c '{ exec {sleep}<> <(:); while ! : >/dev/tcp/time.google.com/80; do read -r -t 1 -u $$sleep; done; } 2>/dev/null; true' | |
| ExecStart=/bin/bash -c 'timedatectl set-time "$(date +"%%Y-%%m-%%d %%H:%%M:%%S %%Z" -d"$(curl -sSI http://time.google.com | grep -i "Date: " | cut -d" " -f2-)")"' |