Skip to content

Instantly share code, notes, and snippets.

@CrocodileCroco
CrocodileCroco / gist:48e9ad540b4e67f36e892c69f4d9be53
Created July 17, 2021 13:02
Bot Python 3 IRC (compatible unrealircd 5)
# -*- coding: utf-8 -*-
import socket
import time
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
HOST = '127.0.0.1' #irc server
PORT = 6667 #port
NICK = 'testbot'
USERNAME = 'testbot'
@CrocodileCroco
CrocodileCroco / nogoogleleaf.user.css
Created November 19, 2020 16:05
Userstyle (Stylus) that removes the leaf animation on google
/* ==UserStyle==
@name Google Leaf Animation Removal
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Removes that midly infuriating leaf animation on google.com
@author GITHUB/CrocodileCroco
==/UserStyle== */
@-moz-document domain("google.com") {
img[src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAMAAAAiV0Z6AAAAPFBMVEVLoEN0wU6CzFKCzFKCzFKCzFKCzFJSo0MSczNDmkCCzFJPoUMTczNdr0gmgziCzFITczMTczMTczMTczPh00jOAAAAFHRSTlPF/+bIsms8Ad///hX+//5/tXw7aMEAx10AAACaSURBVHgBbc4HDoRQCATQ33tbvf9dF9QxaCT9UQaltLHOh/golXKhMs5Xqa0xU1lyoa2fXFyQOsDG38qsLy4TaV+sFislovyhPzLJJrBu6eQOtpW0LjbJkzTuTDLRVNKa3uxJI+VdiRqXSeu6GW+Qxi29eLIi8H7EsYrT42BD+mQtNO5JMjRuC4lSY8V4hsLX0egGijvUSEP9AbylEsOkeCgWAAAAAElFTkSuQmCC"] {
@CrocodileCroco
CrocodileCroco / nes_rom_naming_convention.txt
Created September 28, 2020 15:59
NES ROM Naming Convention
STANDARD CODES
[a] Alternate
[p] Pirate
[b ] Bad Dump
[t] Trained
[f] Fixed
[T] Translation
[h] Hack
(-) Unknown Year
[o] Overdump
@CrocodileCroco
CrocodileCroco / siteutiles.txt
Created September 19, 2020 16:21
Liens de sites utiles
===PROGRAMMATION===
https://www.w3schools.com/ - Pour le HTML, CSS, JS et certains langages de programmations comme le Python ou Node.JS
https://developer.mozilla.org/en-US/ - Pour les technologies du web
https://www.geeksforgeeks.org/python-programming-language/ - Pour le Python, a des exemples faciles a comprendre
===HEBERGEMENT/TRANSFERT DE FICHIER WEB===
[Hébergement de fichier]
https://wetransfer.com/ - Hébergement de fichier, temporaire
https://bayfiles.com/ - Hébergement de fichier non-temporaire jusqu'a 20 Go pour chaque fichiers
https://tmp.ninja/ - Hébergement de fichier temporaire (48h), jusqu'à 10 Go par fichier
@CrocodileCroco
CrocodileCroco / matrixserverlist.txt
Created April 14, 2020 17:59
Matrix Homeserver / Server List
junta.pl
tchncs.de
matrix.drycat.fr
hackerspaces.be
ru-matrix.org
matrix.allmende.io
matrix.org
perthchat.org
feneas.org
chat.weho.st
@CrocodileCroco
CrocodileCroco / dicoboakien
Created December 29, 2018 15:30
Dictionnaire Langage Boakien (Boaki)
absolument: galtude
acheter: poba
actif: pultea
action: tupo
activité: boakide
agresser: poboa
aider: giuboa
aimer: deoki
ajoutter: giutuba
aller: go
@CrocodileCroco
CrocodileCroco / megaspin.css
Created November 9, 2018 14:40
Spin Whole Page CSS Animation
@keyframes megaspin {
0% {transform: rotate(0deg);}
100% {transform: rotate(360deg);}
}
*:not(body) {
animation: megaspin;
animation-iteration-count: infinite;
animation-duration: 0.5s;
animation-timing-function: linear;