This gist is updated daily via cron job and lists stats for npm packages:
- Top 1,000 most depended-upon packages
- Top 1,000 packages with largest number of dependencies
- Top 1,000 packages with highest PageRank score
# 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 |
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.
#!/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 |
# 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 |
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.
project_package/base.py
tests/base_test.py
requirements-test.txt
# 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. |