font
View userscript.js
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
// ==UserScript== | |
// @name Mark grifter websites | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Mark Grifter Websitess as grifter websites | |
// @author Lea Rosema | |
// @match https://technewsidea.com/ | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=technewsidea.com | |
// @grant none | |
// ==/UserScript== |
View jail.local
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
[DEFAULT] | |
destemail = email@example.org | |
sendername = Fail2Ban | |
[sshd] | |
mode = extra | |
enabled = true | |
port = 22 | |
maxretry = 1 | |
bantime=6000 |
View prng.js
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
// store this file in the _data directory | |
let randomSeed = 1234567; | |
module.exports = { | |
init(seed) { randomSeed = seed; }, | |
random() { | |
randomSeed = randomSeed * 16807 % 2147483647; | |
return randomSeed / 2147483647; | |
} | |
}; |
View backgrounds.json
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
[ | |
{ | |
"name": "purple-pink", | |
"seed": 12, | |
"color1": "rebeccapurple", | |
"color2": "deeppink" | |
}, | |
{ | |
"name": "grayish", | |
"seed": 432, |
View cdplayer.pas
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
uses crt,playcd; | |
var cd:record | |
danz,drive:word; | |
mintrk,maxtrk,anztrk:byte; | |
traks:array[0..63] of longint; | |
len:array[0..63] of longint; | |
ttyp:array[0..63] of byte; | |
end; | |
i:integer; m,s:byte; |
View README.md
A little Guestbook API in node express :)
This is a little guestbook API. It uses a JSON file as a database. And for laziness, I used synchronous writes. Yes, this is bad practice.
npm i express body-parser
node server
View README.md
Circular rainbow pattern
Made for DOS/DOSBox. Compile via NASM: nasm -f bin -o anim.com anim.asm
License
FRUIT TEA PUBLIC LICENSE (FTPL)
@lea_rosema made this. You can do whatever you want with it. If we meet some day, and you think this stuff is worth it, you can buy me a fruit tea in return.
NewerOlder