View gist:87c84feca1085c9b43cba012fa56e1ae
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
/* standalone v_psycho port to Xfree86/X.org by Rudolf Polzer | |
* Copyright (C) 2005 Rudolf Polzer | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation; either version 2 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
View gist:eed100d6d31136b914ccd7f7cf846951
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
SysEx = F0 message F7 | |
where | |
CASIO = 44 7E 7E 7F | |
message | |
| Ping = CASIO 00 03 -- Keeps lights on. | |
| ?? = CASIO 00 06 00 | |
| LightOn note = CASIO 02 00 note 01 | |
| LightOff note = CASIO 02 00 note 00 |
View 0001-Only-build-kernel-for-Rockchip.patch
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
From 1123bc2ede8bec9fa1d0e1a6e3506c26705b859b Mon Sep 17 00:00:00 2001 | |
From: Rudolf Polzer <divVerent@gmail.com> | |
Date: Thu, 20 Aug 2020 08:35:53 -0400 | |
Subject: [PATCH] Only build kernel for Rockchip. | |
Makes the kernel boot on C101PA again (now it's < 32 MiB again), | |
but obviously breaks other Chromebooks so not recommended to apply | |
as is. | |
--- | |
core/linux-aarch64/9999-myarch.patch | 51 ++++++++++++++++++++++++++++ |
View upb.sh
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 | |
# Shell port of https://paulgreg.me/UniquePasswordBuilder/ for verification. | |
# Same string as UPB; can be changed if OK to break existing passwords. | |
# See https://github.com/paulgreg/UniquePasswordBuilder/issues/16. | |
ARGON2_PEPPER='5yB8xbz*BsiMxI8yaz&_9!1u3=ZS$fEH16URassf2OzcZEuvIgt4So0sB2aMAp!SDc#HoHuPZ1_??|X-yw2&J+d+c?AKo-k!ifhH6Qp%25alTVdzE*UAFo9#WduBLCXXZhEjg9V&j#DJQba^e#^NNP' | |
passwordLength=16 | |
availableChars='!$+-=_.:;,?#%&()[]0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' |
View stdin.txt
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
function foo() | |
local evi1 | |
for i = 1, 10 do | |
evil = (evil or 0) + i | |
end | |
return evil | |
end | |
print(foo()) | |
print(foo()) |