Skip to content

Instantly share code, notes, and snippets.

View fowled's full-sized avatar

Maxan fowled

View GitHub Profile
@fowled
fowled / commandes.md
Created April 17, 2024 07:42
[Python] Mémo commandes SQL

Lexique commandes SQL

Créer une BDD

sqlite:///livres_db

Créer une table

CREATE TABLE Livres (
@fowled
fowled / typing.user.js
Last active January 23, 2022 04:29
[JavaScript] Userscript to get maximal speed on 10fastfingers.com
// ==UserScript==
// @name Typing race
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Try to type as fast as possible but with a bot help
// @author Mazz
// @match https://10fastfingers.com/*
// @icon https://www.google.com/s2/favicons?domain=10fastfingers.com
// @grant none
// ==/UserScript==
@fowled
fowled / userscript.user.js
Last active March 23, 2021 17:54
[French] Un userscript fait pour afficher la moyenne générale sur l'ENT VieScolaire.
// ==UserScript==
// @name Moyenne VieScolaire
// @namespace none
// @version 2.4
// @description Un script qui permet d'afficher la moyenne générale sur l'ENT VieScolaire.
// @author Mazz
// @match https://lyceepaullapie92.la-vie-scolaire.fr/*
// @grant none
// ==/UserScript==
@fowled
fowled / hangman.java
Last active October 28, 2020 10:08
[Java] Hangman
import java.util.NoSuchElementException;
import java.util.Random;
import java.util.Scanner;
/**
* Hangman game, recreated in Java. 05/22/2020
*
* @author Mazz3015
* @version 1.0
*/
@fowled
fowled / tictactoe.ts
Last active October 29, 2023 11:02
[TypeScript] Tic-tac-toe
import * as Discord from "discord.js";
// Fun command
/**
* Re-creating the tic-tac-toe game but it's in Discord
* @param {Discord.Client} Client the client
* @param {Discord.Message} Message the message that contains the command name
* @param {string[]} args the command args
* @param {any} options some options