This file contains hidden or 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
| diff --color -ruN Escaped_Chasm/io.itch.tuyoki.EscapedChasm.yaml Escaped_Chasm_New/io.itch.tuyoki.EscapedChasm.yaml | |
| --- Escaped_Chasm/io.itch.tuyoki.EscapedChasm.yaml 1970-01-01 01:00:00.000000000 +0100 | |
| +++ Escaped_Chasm_New/io.itch.tuyoki.EscapedChasm.yaml 2020-08-07 18:58:58.059750271 +0200 | |
| @@ -0,0 +1,47 @@ | |
| +app-id: "io.itch.tuyoki.EscapedChasm" | |
| +runtime: org.freedesktop.Platform | |
| +runtime-version: '19.08' | |
| +sdk: org.freedesktop.Sdk | |
| +command: "/app/bin/EscapedChasm" | |
| + |
This file contains hidden or 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
| diff --color -ruN "Dwellers Empty Path/io.itch.tuyoki.DwellersEmptyPath.yaml" DwellerNew/io.itch.tuyoki.DwellersEmptyPath.yaml | |
| --- "Dwellers Empty Path/io.itch.tuyoki.DwellersEmptyPath.yaml" 1970-01-01 01:00:00.000000000 +0100 | |
| +++ DwellerNew/io.itch.tuyoki.DwellersEmptyPath.yaml 2020-08-08 21:08:21.619488035 +0200 | |
| @@ -0,0 +1,47 @@ | |
| +app-id: "io.itch.tuyoki.DwellersEmptyPath" | |
| +runtime: org.freedesktop.Platform | |
| +runtime-version: '19.08' | |
| +sdk: org.freedesktop.Sdk | |
| +command: "/app/bin/Dweller" | |
| + |
This file contains hidden or 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
| Every day, I imagine a future where I can be with you. | |
| In my hand, is a pen that'll write derivations of me and you. | |
| The bytes flow down into a hash table | |
| Just move your PATH, link the way into this art. | |
| But in this world of indefinite builds, | |
| What will it take just to find stability? | |
| What will it take just to find... that special day? | |
| Have I found every package a derivation that works today? |
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| # key-gnat by Karim Vergnes <[email protected]> | |
| # License: WTFPL 1.0 | |
| # Requires evdev python to be installed | |
| from evdev import UInput, ecodes as e | |
| import random, time | |
| ui = UInput(name="Unsuspicious keyboard™") |
This file contains hidden or 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 | |
| # WebRoulette by Karim Vergnes <[email protected]> | |
| # License: WTFPL 1.0 | |
| # Requires xdg-open and a web browser to work. | |
| # Location of the sitefile | |
| : ${LIST:="$HOME/.sitefile"} | |
| # Time interval for sleep | |
| : ${SLEEP_INT:="20-300"} |
This file contains hidden or 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 | |
| # chroma by Karim Vergnes <[email protected]> | |
| # License: WTFPL 1.0 | |
| # Requires xrandr to work. | |
| # Display to modify | |
| : ${XRDISP:="eDP1"} | |
| # Speed at which to alternate colors | |
| : ${COEF:=1} | |
| # Intensity of result |
This file contains hidden or 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 | |
| # make-sandwich by Karim Vergnes <[email protected]> | |
| # XKCD/149-compliant wrapper for Make | |
| # License: WTFPL 1.0 | |
| # Requires make to work. To install, place in /usr/local/bin/ | |
| if ! which /usr/bin/make > /dev/null 2>&1 | |
| then | |
| echo "make is not installed. See your distribution's info to install it." | |
| exit 3 |
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| # Un pot de fleurs pour apprendre à coder :) | |
| # © Karim Vergnes <[email protected]> | |
| # Sous licence Creative Commons Attribution, NonCommercial, ShareAlike (CC BY,NC,SA) | |
| # https://creativecommons.org/licenses/by-nc-sa/3.0/fr/ | |
| class Potdefleur: | |
| couleur = str() | |
| fleurs = list() |
NewerOlder