gdb <filename>
Avec arguments :
| # hockey.ps1 | |
| # | |
| # DESCRIPTION: | |
| # ============ | |
| # Script to download goalie statistics from hockeylinea.fmp.es for a given league | |
| # and save them into an Excel workbook, with one worksheet per game. | |
| # | |
| # COPYRIGHT AND LICENSE: | |
| # ====================== | |
| # Copyright (c) 2025 Ascor8522 |
| # revanced.ps1 | |
| # | |
| # DESCRIPTION: | |
| # ============ | |
| # Script to download, patch and install ReVanced APKs. | |
| # | |
| # COPYRIGHT AND LICENSE: | |
| # ====================== | |
| # Copyright (c) 2025 Ascor8522 | |
| # Licensed under the MIT License |
| /** | |
| * Dependencies: | |
| * ```sh | |
| * npm i -D eslint @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-plugin-deprecation eslint-plugin-import eslint-plugin-only-warn | |
| * ``` | |
| * @type {import("eslint").ESLint.ConfigData} | |
| */ | |
| module.exports = { | |
| /* eslint-disable quote-props */ | |
| env: { |
| // ==UserScript== | |
| // @name Proxy sorter | |
| // @version 0.1 | |
| // @description Enable sorting proxies by column in table | |
| // @author Ascor8522 | |
| // @match https://spys.one/* | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { |
| /** | |
| * Extracts the attributes of a type, and ignores the methods. | |
| * Can be used in a constructor, when passing a destructured object of the same type. | |
| * Requires TypeScript 4.1+ | |
| */ | |
| export type Attributes<T> = { | |
| [K in keyof T as T[K] extends Function ? never : K]: T[K] | |
| }; |
Guide pas-à-pas pour installer Scratch Desktop sur les distributions Linux basées sur Debian (Debian, *ubuntu, etc...). Un fichier shell sans les explications est disponible plus bas.
Traduit de l'anglais à partir du gist de lyshie
$ # Télécharger Scratch Desktop| // ==UserScript== | |
| // @name Manu | |
| // @author Smrman | |
| // @description Replaces all the occurences of "Emmanuel Macron" by "Manu" | |
| // @version 0.1 | |
| // @match *://*/* | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { |