This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
do_suspend= | |
handle_suspend() { | |
do_suspend=1 | |
} | |
trap handle_suspend SIGTSTP | |
process_suspend() { | |
if ! [ $do_suspend ]; then |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const int SWITCH_1 = 2; | |
const int PUMP_1 = 12; | |
const int SWITCH_2 = 3; | |
const int PUMP_2 = 11; | |
const int SWITCH_3 = 4; | |
const int PUMP_3 = 10; | |
const int PUMP_OFF = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
y.ns.se 185.159.197.150 {} | |
j.root-servers.net 192.58.128.30 {} | |
j.root-servers.net 2001:0503:0c27:0000:0000:0000:0002:0030 {} | |
k.root-servers.net 193.0.14.129 {} | |
k.root-servers.net 2001:07fd:0000:0000:0000:0000:0000:0001 {} | |
b.root-servers.net 192.228.79.201 {} | |
m.root-servers.net 202.12.27.33 {"hno.se":{"SOA":{"IN":{"0":{"0":{"0":{"0":{"Zonemaster::Engine::Packet":{"Zonemaster::LDNS::Packet":{"querytime":177,"data":"lsaAAAABAAAACgAPA2hubwJzZQAABgABwBAAAgABAAKjAAAHAWoCbnPAEMAQAAIAAQACowAABAFjwCbAEAACAAEAAqMAAAQBYcAmwBAAAgABAAKjAAAEAWnAJsAQAAIAAQACowAABAF4wCbAEAACAAEAAqMAAAQBYsAmwBAAAgABAAKjAAAEAWfAJsAQAAIAAQACowAABAF5wCbAEAACAAEAAqMAAAQBZsAmwBAAAgABAAKjAAAEAXrAJsBHAAEAAQACowAABMAkkGvAdwABAAEAAqMAAATAJIVrwDcAAQABAAKjAAAEwCSHa8CnAAEAAQACowAABMBHNTXAhwABAAEAAqMAAASC7wVywFcAAQABAAKjAAAEwpJqFsAkAAEAAQACowAABMf+PwHAZwABAAEAAqMAAATVbBkEwJcAAQABAAKjAAAEuZ/FlsC3AAEAAQACowAABLmfxpbARwAcAAEAAqMAABAqAQPwAAADAQAAAAAAAABTwHcAHAABAAKjAAAQIAEGfCVMAwEAAAAAAAAAU8A3ABwAAQACowAAECABBnwlVAMBAAAAAAAAAFPApwAcAAEAAqMAABAqAQPwAAADBQAAAAA |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* C version loosely based on jasonfriday2.s | |
* | |
* Compile on almost any computer using | |
* gcc -O3 -std=c99 -o jasonfriday jasonfriday2.c | |
* | |
* Henrik Nordstrom <henrik@henriknordstrom.net> (github user hno) | |
* January 17, 2017 | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
while read user password; do | |
echo OK | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* (C) Copyright 2014 Henrik Nordstrom | |
* | |
* Based on mksunxiboot | |
* | |
* (C) Copyright 2007-2011 | |
* Allwinner Technology Co., Ltd. <www.allwinnertech.com> | |
* | |
* SPDX-License-Identifier: GPL-2.0+ | |
*/ |