Short (72 chars or less) summary
More detailed explanatory text. Wrap it to 72 characters. The blank
line separating the summary from the body is critical (unless you omit
the body entirely).
Write your commit message in the imperative: "Fix bug" and not "Fixed
bug" or "Fixes bug." This convention matches up with commit messages
๐
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 hidden or 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
| # Add the following 'help' target to your Makefile | |
| # And add help text after each target name starting with '\#\#' | |
| help: ## Show this help. | |
| @fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//' | |
| # Everything below is an example | |
| target00: ## This message will show up when typing 'make help' | |
| @echo does nothing |
This file contains hidden or 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
| # Originally adapted from https://github.com/arcticicestudio/igloo | |
| # License: MIT | |
| # References: | |
| # https://taskwarrior.org/docs/themes.html | |
| # task-color(5) | |
| # taskrc(5) | |
| # rule.precedence.color=deleted,completed,active,keyword.,tag.,project.,overdue,scheduled,due.today,due,blocked,blocking,recurring,tagged,uda. |
This file contains hidden or 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
| # Makefile for python code | |
| # | |
| # > make help | |
| # | |
| # The following commands can be used. | |
| # | |
| # init: sets up environment and installs requirements | |
| # install: Installs development requirments | |
| # format: Formats the code with autopep8 | |
| # lint: Runs flake8 on src, exit if critical rules are broken |
This file contains hidden or 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 | |
| # Dependencies: tesseract-ocr imagemagick scrot xsel rofi | |
| set -e | |
| SCR_IMG=$(mktemp) | |
| trap 'rm $SCR_IMG*' EXIT | |
| scrot -s "$SCR_IMG.png" | |
| mogrify -modulate 100,0 -resize 400% "$SCR_IMG.png" #should increase detection rate | |
| tesseract "$SCR_IMG.png" "$SCR_IMG" &> /dev/null |
You will find template of required files (requirements.txt, requirements-test.txt, project_package/base.py, tests/base_test.py, python-app.yml) at the end of this gist.
- Add base functionality and test files:
project_package/base.pytests/base_test.py
- Add test requirements
requirements-test.txt
- Check whether your folders and files structure looks like: