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
@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; |
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
absolument: galtude | |
acheter: poba | |
actif: pultea | |
action: tupo | |
activité: boakide | |
agresser: poboa | |
aider: giuboa | |
aimer: deoki | |
ajoutter: giutuba | |
aller: go |
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
junta.pl | |
tchncs.de | |
matrix.drycat.fr | |
hackerspaces.be | |
ru-matrix.org | |
matrix.allmende.io | |
matrix.org | |
perthchat.org | |
feneas.org | |
chat.weho.st |
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
===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 |
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
STANDARD CODES | |
[a] Alternate | |
[p] Pirate | |
[b ] Bad Dump | |
[t] Trained | |
[f] Fixed | |
[T] Translation | |
[h] Hack | |
(-) Unknown Year | |
[o] Overdump |
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
/* ==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"] { |
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
# -*- 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' |