- Quick intros:
- The Rust Programming Language (a.k.a. "the Book") — The official Rust tutorial and the one that just about everyone recommends
- rustlings — A series of exercises in working with Rust. I haven't used this one, but it gets a lot of praise.
- Collections of links to further learning resources:
- Awesome Rust > Resources > Learning
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
#!/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 |
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
#!/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 |
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
<!-- 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> |
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`_. |
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-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`_. |
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 |
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
[build-system] | |
requires = [ | |
"read_version ~= 0.1.0", | |
"setuptools >= 34.4.0", | |
"wheel" | |
] | |
build-backend = "setuptools.build_meta" |
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
#!/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 |
NewerOlder