- Pas de pseudos vides.
- Aucun pseudos inapproprié.
- Pas de pseudos sexuellement explicites.
- Pas de pseudos offensants.
This page contains a list of the current Minecraft Fabric mods. (As of 2021-08-19 08:05:23 Timezone: UTC+0000 (GMT))
To search for mods by name, category, or download count, visit the website, fibermc.com!
Note: You can view a mod's source files by following the "Source" link on its CurseForge page, assuming that the mod's creator has made such files public.
There are currently 2954 mods in this list.
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
# Custom Flipnote (.ppm) Thumbnail Tool | |
# Create a ppm thumbnail from any 64 x 48 image | |
# Requires Pillow - https://github.com/python-pillow/Pillow | |
# | |
# By Jaames <github.com/jaames | @rakujira on twitter> | |
# | |
# Usage: python3 thumbtool.py input.ppm thumb.png | |
from PIL import Image | |
from sys import argv |
Service | SSL | status | Response Type | Allowed methods | Allowed headers |
---|
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
#!/bin/bash | |
# To use, move the potrace binary to potrace-bin, then place this script | |
# somewhere on the path so that it'll be found by fontforge. | |
# After autotracing, you'll need to apply the following transformation: | |
# scale uniform 10%, using glyph origin as the origin | |
# get the last parameter passed by fontforge - the name of the temp img file | |
for last; do true; done | |
# get all of the other parameters | |
length=$(($#-1)) |