Skip to content

Instantly share code, notes, and snippets.

diff --git a/go.mod b/go.mod
index b850968..0f8aa83 100644
--- a/go.mod
+++ b/go.mod
@@ -1,10 +1,10 @@
module github.com/hajimehoshi/go-inovation
-go 1.18
+go 1.19
/* 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
@divVerent
divVerent / gist:eed100d6d31136b914ccd7f7cf846951
Last active October 31, 2021 19:07
LK-S250 lighting key SysEx
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
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 ++++++++++++++++++++++++++++
@divVerent
divVerent / upb.sh
Last active January 8, 2019 22:20
Shell port of https://paulgreg.me/UniquePasswordBuilder/ for verification.
#!/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'
@divVerent
divVerent / stdin.txt
Created August 1, 2012 13:30 — forked from anonymous/stdin.txt
stdin
function foo()
local evi1
for i = 1, 10 do
evil = (evil or 0) + i
end
return evil
end
print(foo())
print(foo())