Because finding anything in this page is harder than it should be
Date | Article | Contents |
---|---|---|
2015-02-02 | Unearthed Arcana: Eberron [PDF] | Changelings, shifters, warforged, Wizard (Artificer), rules for action points, dragonmarks |
FROM ubuntu:16.04 | |
RUN apt-get update && apt-get install -y python-virtualenv | |
WORKDIR /issue967 | |
COPY run.sh setup.py /issue967/ | |
CMD ["/bin/bash", "run.sh"] |
#!/usr/bin/env python3 | |
import argparse | |
from dataclasses import dataclass | |
from typing import Optional | |
# John Thorvald Wodder II, 2016-2021. | |
# Tom Hale, 2016. MIT Licence. | |
# Print out 256 colours, with each number printed in its corresponding colour | |
# See http://askubuntu.com/questions/821157/print-a-256-color-test-pattern-in-the-terminal/821163#821163 |
[build-system] | |
requires = [ | |
"read_version ~= 0.1.0", | |
"setuptools >= 34.4.0", | |
"wheel" | |
] | |
build-backend = "setuptools.build_meta" |
Because finding anything in this page is harder than it should be
Date | Article | Contents |
---|---|---|
2015-02-02 | Unearthed Arcana: Eberron [PDF] | Changelings, shifters, warforged, Wizard (Artificer), rules for action points, dragonmarks |
Author: | John T. Wodder II (@jwodder) |
---|---|
Date: | 2020-07-17 |
Updates: | Updated version posted at <https://jwodder.github.io/kbits/posts/click-config/> |
Copyright: | Copyright © 2020 John T. Wodder II. This work is licensed under a `Creative Commons Attribution 4.0 International License`_. |
Author: | John T. Wodder II (@jwodder) |
---|---|
Date: | 2020-07-27 |
Updates: | Updated version posted at <https://jwodder.github.io/kbits/posts/unicode-latex/> |
Copyright: | Copyright © 2020 John T. Wodder II. This work is licensed under a `Creative Commons Attribution 4.0 International License`_. |
Author: | John T. Wodder II (@jwodder) |
---|---|
Date: | 2020-07-28 |
Updates: | Updated version posted at <https://jwodder.github.io/kbits/posts/rst-hyperlinks/> |
Copyright: | Copyright © 2020 John T. Wodder II. This work is licensed under a `Creative Commons Attribution 4.0 International License`_. |
<!-- pygmentize -f html -O full,style=colorful -o code.html code.py --> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" | |
"http://www.w3.org/TR/html4/strict.dtd"> | |
<!-- | |
generated by Pygments <https://pygments.org/> | |
Copyright 2006-2020 by the Pygments team. | |
Licensed under the BSD license, see LICENSE for details. | |
--> | |
<html> | |
<head> |
#!/usr/bin/env python3 | |
# NOTICE: Development has continued at <https://github.com/jwodder/forklone> | |
# The MIT License (MIT) | |
# | |
# Copyright (c) 2020-2021, 2023 John Thorvald Wodder II | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal |
#!/usr/bin/env python3 | |
# /// script | |
# requires-python = ">=3.8" | |
# dependencies = ["ghrepo", "httpx"] | |
# /// | |
""" | |
This script downloads all the assets for one or more releases of a given GitHub | |
repository in parallel; see the --help output for details. It serves as an | |
example of asynchronous programming in Python, written to accompany the article |