Skip to content

Instantly share code, notes, and snippets.

View Efimero's full-sized avatar
💭
🏳️‍🌈 im gay

Efi Efimero

💭
🏳️‍🌈 im gay
View GitHub Profile
@Efimero
Efimero / main.rkt
Created May 5, 2022 19:31
hidapi-test
#lang racket
(require hidapi
racket/future)
(hid-init)
(define devices (hid-enumerate))
(displayln (map hid-device-info-path devices))
@Efimero
Efimero / Essential mods
Created November 10, 2021 17:01
Efi's rimworld mod lists
[Mod list length: 184]
Harmony [https://steamcommunity.com/sharedfiles/filedetails/?id=2009463077]
Core [https:// no link (local mod)]
Royalty [Official DLC] [https:// no link (local mod)]
Ideology [Official DLC] [https:// no link (local mod)]
HugsLib [https://steamcommunity.com/sharedfiles/filedetails/?id=818773962]
Locks 2: Lock Them Out! [https://steamcommunity.com/sharedfiles/filedetails/?id=2285862824]
1.3 - Imprisonment On The Go! (Make Pawns Prisoners Without Beds) [https://steamcommunity.com/sharedfiles/filedetails/?id=1203903378]
A Dog Said... Animal Prosthetics [https://steamcommunity.com/sharedfiles/filedetails/?id=746425621]
Additional Verb Mod [https://steamcommunity.com/sharedfiles/filedetails/?id=1654925331]
@Efimero
Efimero / fixed.css
Created August 21, 2020 03:18
fixed-width mastodon
html * {
_color: green !important;
_background-color: black;
}
body *:not(.fa) {
font-family: "GohuFont", monospace !important;
font-size: 11px !important;
font-weight: normal !important;
line-height: 11px !important;
border-radius: 0 !important;
@Efimero
Efimero / PlayerController.gd
Created August 6, 2020 20:31
simple physics-controlled player script
extends RigidBody
# Called when the node enters the scene tree for the first time.
func _ready():
Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED)
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _physics_process(delta):
process_input(delta)
@Efimero
Efimero / core.clj
Created August 3, 2020 02:47
CCL.clj
(ns flood-fill.core
(:require [clojure.pprint]))
(defn reload [] (use 'flood-fill.core :reload-all))
(defn log [o] (do (clojure.pprint/pprint o) o))
(def DATA {:size 100
:data (mapv (fn [& _] (rand-int 2)) (range (* 100 100)))})
🗋 AppleSkin-mc1.14.4-forge-1.0.13.jar
🗋 BetterBurning-1.14.4-1.0.1.jar
🗋 Botania+r1.11-376.jar
🗋 camera-1.4.10.jar
🗋 Charm-1.14.4-1.4.3.jar
🗋 Clumps-4.0.0.jar
🗋 corail_woodcutter-1.1.1-1.14.4.jar
🗋 cosmeticbeds-FORGE-1.14.4-2.0.0.1.jar
🗋 curios-FORGE-1.14.4-1.0.6.jar
🗋 Ding-1.14.4-1.1.0.jar
@Efimero
Efimero / debug.log
Created December 22, 2019 21:44
jsonifycraft 1.14
[22Dec2019 22:43:06.017] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--username, Efimero, --version, 1.14.4-forge-28.1.107, --gameDir, /home/efi/.minecraft/mods-testing, --assetsDir, /home/efi/.minecraft/assets, --assetIndex, 1.14, --uuid, f91eaaf47f0e49a2bdc550b764fcd6e0, --accessToken, ❄❄❄❄❄❄❄❄, --userType, mojang, --versionType, release, --launchTarget, fmlclient, --fml.forgeVersion, 28.1.107, --fml.mcVersion, 1.14.4, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20190829.143755]
[22Dec2019 22:43:06.020] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 4.1.0+62+5bfa59b starting: java version 1.8.0_222-ea by Oracle Corporation
[22Dec2019 22:43:06.033] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [minecraft,testharness,fmlclient,fmlserver]
[22Dec2019 22:43:06.042] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : []
[22Dec2019 22:43:06.051] [mai
@Efimero
Efimero / debug.log
Created December 22, 2019 19:20
Jsonify
[22Dec2019 20:06:52.925] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--username, Efimero, --version, 1.14.4-forge-28.1.107, --gameDir, /home/efi/.minecraft/mods-testing, --assetsDir, /home/efi/.minecraft/assets, --assetIndex, 1.14, --uuid, f91eaaf47f0e49a2bdc550b764fcd6e0, --accessToken, ❄❄❄❄❄❄❄❄, --userType, mojang, --versionType, release, --launchTarget, fmlclient, --fml.forgeVersion, 28.1.107, --fml.mcVersion, 1.14.4, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20190829.143755]
[22Dec2019 20:06:52.928] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 4.1.0+62+5bfa59b starting: java version 1.8.0_222-ea by Oracle Corporation
[22Dec2019 20:06:52.942] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [minecraft,testharness,fmlclient,fmlserver]
[22Dec2019 20:06:52.952] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : []
[22Dec2019 20:06:52.967] [mai
@Efimero
Efimero / debug.log
Created December 18, 2019 14:23
Block Replacer
[18Dec2019 15:09:38.496] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--username, Efimero, --version, 1.14.4-forge-28.1.96, --gameDir, /home/efi/.minecraft/mods-testing, --assetsDir, /home/efi/.minecraft/assets, --assetIndex, 1.14, --uuid, f91eaaf47f0e49a2bdc550b764fcd6e0, --accessToken, ❄❄❄❄❄❄❄❄, --userType, mojang, --versionType, release, --launchTarget, fmlclient, --fml.forgeVersion, 28.1.96, --fml.mcVersion, 1.14.4, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20190829.143755]
[18Dec2019 15:09:38.500] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 4.1.0+62+5bfa59b starting: java version 1.8.0_222-ea by Oracle Corporation
[18Dec2019 15:09:38.513] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [minecraft,testharness,fmlclient,fmlserver]
[18Dec2019 15:09:38.523] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : []
[18Dec2019 15:09:38.531] [main/
efi@Dagon:~/projects/liblesbian$ ssh git@ssh.local.lubar.me
PTY allocation request failed on channel 0
Cannot use two forms of the same flag: c config
NAME:
Gitea - A painless self-hosted Git service
USAGE:
gitea [global options] command [command options] [arguments...]
VERSION: