Skip to content

Instantly share code, notes, and snippets.

View nothub's full-sized avatar
💭
̵̨̹̜̹̭̥̘̫̱̭̭̯̣̯̳̝̫̝͔̀̅ͫͫͦ̍̏ͧ̂̅̓ͩ̑̿̇̄͜͟᙭̷̣͙͕͒͒ͪ̓̀̃ͯͬ̿͆̍̿̐͂̎̃̀͢

Florian Hübner nothub

💭
̵̨̹̜̹̭̥̘̫̱̭̭̯̣̯̳̝̫̝͔̀̅ͫͫͦ̍̏ͧ̂̅̓ͩ̑̿̇̄͜͟᙭̷̣͙͕͒͒ͪ̓̀̃ͯͬ̿͆̍̿̐͂̎̃̀͢
  • Cloudogu
  • 06:42 (UTC +02:00)
View GitHub Profile
@nothub
nothub / info.txt
Last active February 20, 2023 13:40
updated asciiquarium
This project has moved to: https://github.com/nothub/asciiquarium
@nothub
nothub / versions.json
Created June 6, 2021 21:41
snapshot of https://maven.minecraftforge.net/de/oceanlabs/mcp/versions.json at 2021-06-06T21:40:11UTC (prettified)
{
"1.14.2":
{
"snapshot": [20190624,20190623,20190622,20190621,20190620,20190619,20190618,20190617,20190616,20190615,20190614,20190613,20190612,20190611,20190610,20190609,20190608,20190607,20190606,20190605,20190604,20190603,20190602,20190601,20190531,20190530],
"stable": [53]
},
"1.14.3":
{
"snapshot": [20200119,20200118,20200117,20200116,20200115,20200114,20200113,20200112,20200111,20200110,20200109,20200108,20200107,20200106,20200105,20200104,20200103,20200102,20200101,20191231,20191230,20191229,20191228,20191227,20191226,20191225,20191224,20191223,20191222,20191221,20191220,20191219,20191218,20191217,20191216,20191215,20191214,20191213,20191212,20191211,20191210,20191209,20191208,20191207,20191206,20191205,20191204,20191203,20191202,20191201,20191130,20191129,20191128,20191127,20191126,20191125,20191124,20191123,20191122,20191121,20191120,20191119,20191118,20191117,20191116,20191115,20191114,20191113,20191112,20191111,20191110,20191109,20191108,20191107,20191106
#!/usr/bin/env python3
import argparse
import json
import select
import socket
import sys
from urllib import request as urllib_request
if __name__ == '__main__':
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@nothub
nothub / citag.sh
Last active February 15, 2023 19:22
when ci scheduler is big meanie
#!/usr/bin/env bash
# Github is a big meanie disabling your scheduled workflows?
# Not a problem, just schedule ci jobs by pushing git tags!
# echo [email protected]:user/repo-c.git [email protected]:user/repo-d.git | ./citag.sh [email protected]:user/repo-a.git https://github.com/user/repo-b.git
# 42 */12 * * * /foo/bar/citag [email protected]:user/repo.git
set -o errexit
set -o nounset
@nothub
nothub / [email protected]
Created January 30, 2021 01:14
docker-compose systemd unit template
[Unit]
Description=%i (docker-compose)
Requires=docker.service
After=docker.service
[Service]
Restart=always
TimeoutStartSec=300
# restart twice a day to pull image updates
@nothub
nothub / focal-init-setup.sh
Created January 27, 2021 22:50
ubuntu focal standalone initial setup
#!/usr/bin/env bash
# MANDATORY options
SETUP_HOSTNAME="" # full domain that is pointed to this box
SETUP_USERNAME="" # admin user
SETUP_SSH_PUBKEY="" # admin users ssh public key
SETUP_FORWARD_EMAIL="" # root and user mails gonna be forwarded to this
# OPTIONAL options
SETUP_DISABLE_IPV6=true
@nothub
nothub / tinylog.properties
Created January 25, 2021 02:51
tinylog2 settings with iso8601 / rfc3339 compliant timestamps
# suppress inspection "UnusedProperty" for whole file
# date is ISO 8601 / RFC3339 compliant
locale = en_US
charset = UTF-8
autoshutdown = false
writer_console = console
writer_console.level = info
writer_console.format = {date: yyyy-MM-dd'T'HH:mm:ssXXX} {level}: {message}
@nothub
nothub / .editorconfig
Last active March 8, 2022 13:09
editorconfig
# https://editorconfig.org
[*]
charset = utf-8
end_of_line = lf
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
[*.{gradle, java}]
# ignore all files
*
# but include directories
!*/
# git
!/**/.gitkeep
!/.gitattributes
!/.gitignore