forked from bogdanb/hpmor
-
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
529 additions
and
529 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,93 +1,93 @@ | ||
# install package | ||
# pip3 install pre-commit | ||
# register as git commit-hook to run automatically | ||
# pre-commit install | ||
# run manually | ||
# pre-commit run --all-files | ||
# or | ||
# pre-commit run --files myFile1.py myFile2.py | ||
# update hooks to latest version | ||
# pre-commit autoupdate | ||
|
||
# ruff replaces flake8, pyupgrade, and autoflake | ||
# ruff-format replaces black, isort, add-trailing-comma | ||
|
||
exclude: | | ||
(?x)^( | ||
scripts/ebook/v1.*| | ||
)$ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
- id: check-added-large-files | ||
args: ["--maxkb=500"] | ||
- id: check-ast | ||
- id: check-builtin-literals | ||
- id: check-case-conflict | ||
- id: check-docstring-first | ||
- id: check-executables-have-shebangs | ||
- id: check-json | ||
- id: check-merge-conflict | ||
- id: check-shebang-scripts-are-executable | ||
- id: check-symlinks | ||
- id: check-toml | ||
- id: check-vcs-permalinks | ||
- id: check-xml | ||
- id: check-yaml | ||
- id: debug-statements | ||
- id: destroyed-symlinks | ||
# - id: detect-aws-credentials | ||
- id: detect-private-key | ||
# conflict with black below | ||
# - id: double-quote-string-fixer | ||
- id: end-of-file-fixer | ||
- id: file-contents-sorter | ||
- id: fix-byte-order-marker | ||
- id: fix-encoding-pragma | ||
args: ["--remove"] | ||
- id: forbid-new-submodules | ||
# - id: forbid-submodules | ||
# args: ['--fix=lf'] | ||
- id: mixed-line-ending | ||
- id: name-tests-test | ||
# - id: no-commit-to-branch | ||
# args: [--branch, staging] | ||
# not, since it decodes utf-8 | ||
# - id: pretty-format-json | ||
# args: ["--autofix"] | ||
- id: requirements-txt-fixer | ||
# - id: sort-simple-yaml | ||
- id: trailing-whitespace | ||
|
||
- repo: https://github.com/charliermarsh/ruff-pre-commit | ||
rev: "v0.3.4" | ||
hooks: | ||
- id: ruff | ||
args: [--fix, --exit-non-zero-on-fix] | ||
- id: ruff-format | ||
|
||
- repo: https://github.com/pre-commit/pygrep-hooks | ||
rev: v1.10.0 | ||
hooks: | ||
- id: python-check-blanket-noqa | ||
# not, since '# type: ignore' is ok for me | ||
# - id: python-check-blanket-type-ignore | ||
- id: python-check-mock-methods | ||
- id: python-no-eval | ||
- id: python-no-log-warn | ||
- id: python-use-type-annotations | ||
- id: rst-backticks | ||
- id: rst-directive-colons | ||
- id: rst-inline-touching-normal | ||
- id: text-unicode-replacement-char | ||
|
||
- repo: https://github.com/igorshubovych/markdownlint-cli | ||
rev: v0.39.0 | ||
hooks: | ||
- id: markdownlint | ||
args: ["--disable", "MD013"] | ||
|
||
default_language_version: | ||
python: python3.10 | ||
# install package | ||
# pip3 install pre-commit | ||
# register as git commit-hook to run automatically | ||
# pre-commit install | ||
# run manually | ||
# pre-commit run --all-files | ||
# or | ||
# pre-commit run --files myFile1.py myFile2.py | ||
# update hooks to latest version | ||
# pre-commit autoupdate | ||
|
||
# ruff replaces flake8, pyupgrade, and autoflake | ||
# ruff-format replaces black, isort, add-trailing-comma | ||
|
||
exclude: | | ||
(?x)^( | ||
scripts/ebook/v1.*| | ||
)$ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
- id: check-added-large-files | ||
args: ["--maxkb=500"] | ||
- id: check-ast | ||
- id: check-builtin-literals | ||
- id: check-case-conflict | ||
- id: check-docstring-first | ||
- id: check-executables-have-shebangs | ||
- id: check-json | ||
- id: check-merge-conflict | ||
- id: check-shebang-scripts-are-executable | ||
- id: check-symlinks | ||
- id: check-toml | ||
- id: check-vcs-permalinks | ||
- id: check-xml | ||
- id: check-yaml | ||
- id: debug-statements | ||
- id: destroyed-symlinks | ||
# - id: detect-aws-credentials | ||
- id: detect-private-key | ||
# conflict with black below | ||
# - id: double-quote-string-fixer | ||
- id: end-of-file-fixer | ||
- id: file-contents-sorter | ||
- id: fix-byte-order-marker | ||
- id: fix-encoding-pragma | ||
args: ["--remove"] | ||
- id: forbid-new-submodules | ||
# - id: forbid-submodules | ||
# args: ['--fix=lf'] | ||
- id: mixed-line-ending | ||
- id: name-tests-test | ||
# - id: no-commit-to-branch | ||
# args: [--branch, staging] | ||
# not, since it decodes utf-8 | ||
# - id: pretty-format-json | ||
# args: ["--autofix"] | ||
- id: requirements-txt-fixer | ||
# - id: sort-simple-yaml | ||
- id: trailing-whitespace | ||
|
||
- repo: https://github.com/charliermarsh/ruff-pre-commit | ||
rev: "v0.3.4" | ||
hooks: | ||
- id: ruff | ||
args: [--fix, --exit-non-zero-on-fix] | ||
- id: ruff-format | ||
|
||
- repo: https://github.com/pre-commit/pygrep-hooks | ||
rev: v1.10.0 | ||
hooks: | ||
- id: python-check-blanket-noqa | ||
# not, since '# type: ignore' is ok for me | ||
# - id: python-check-blanket-type-ignore | ||
- id: python-check-mock-methods | ||
- id: python-no-eval | ||
- id: python-no-log-warn | ||
- id: python-use-type-annotations | ||
- id: rst-backticks | ||
- id: rst-directive-colons | ||
- id: rst-inline-touching-normal | ||
- id: text-unicode-replacement-char | ||
|
||
- repo: https://github.com/igorshubovych/markdownlint-cli | ||
rev: v0.39.0 | ||
hooks: | ||
- id: markdownlint | ||
args: ["--disable", "MD013"] | ||
|
||
default_language_version: | ||
python: python3.10 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,40 @@ | ||
Gabriele Font Series | ||
==================== | ||
Gabriele was the name of his granddaughter. In 1957 Max Grundig, German industrialist, bought the two companies Triumph and Adler and merged them into his office machine label 'Triumph Adler'. Thus, 'Gabriele' became the name of a popular series of typewriters in postwar Germany. | ||
We have chosen this name for our series of typewriter fonts in reminiscence of those machines and all the ladies (called Gabriele or not) that used to type on them from the 1950s to the '80s. | ||
Ah, yes, another typewriter font. | ||
Well sort of. We are aware that there are quite a few of them around. But unlike Gabriele, most are not free for commercial use and/or have problems with umlauts and other extended characters. Gabriele has a complete West European charset, the ribbon members even many East European characters. These are monospaced fonts. The characters have all the same width - with the exception of the "ellipsis" character ("...") which is of course three spaces wide. Naturally, these fonts have and need no kerning. | ||
The Ribbon members of the Gabriele are based on the Dave-Rakowski font "Harting". On his former font activity Dave says on his web site http://home.earthlink.net/~ziodavino/album1_009.htm: | ||
"At this point, I'm no longer interested in the care and feeding of typefaces, and am ignoring any e-mails about fonts that come my way. Y'all may continue to do what you wish with the shareware fonts". | ||
On this basis I have refrained from bothering Dave and have done as I wished. | ||
Gabriele Bad is named after the somewhat darker and grungy look. Inside, she's really nice. Looking similar to the other two but not based on Rakowski's work. This is the darkest one of the three. She's not so good at Eastern European languages, but she can type Turkish fluently. | ||
All three fonts are free to use personally, publicly and commercially. Please respect the following license for redistribution. | ||
LICENSE | ||
======= | ||
Use | ||
--- | ||
You may use this font software free of charge and at your own risk for both personal and commercial use. | ||
Conversion and modification | ||
--------------------------- | ||
You may convert this font to other formats including web font formats or modify it for your own purposes. You may use web font formats of this font to display text on your web pages, but you may not explicitly offer converted or modified versions of this font software for download or re-use by others, unless you have received permission in writing to do so. | ||
Distribution | ||
------------ | ||
You may distribute this font on digital media or as a download on your website as long as you comply with the following rules. Violation of one or more of these rules terminates your distribution license and you have to stop distribution immediately: | ||
1. You may offer the font only in form of a ZIP file containing only the font software and this readme file. | ||
2. You are not allowed to distribute the font software without this text file. | ||
3. You may not redistribute modified or converted copies of the font software (see above). | ||
4. You may not add advertising messages in text or graphics form to the zip file. | ||
5. You are not allowed to create a self-extracting executable file containing the font software or require the user to run or install a download manager or other software to get the download. | ||
6. You may not charge money for the download. | ||
7. If you want to distribute this font on storage media (CD DVD) produced in numbers of more than 50 identical copies, you must send Fontgrube a specimen copy. | ||
Gabriele Font Series | ||
==================== | ||
Gabriele was the name of his granddaughter. In 1957 Max Grundig, German industrialist, bought the two companies Triumph and Adler and merged them into his office machine label 'Triumph Adler'. Thus, 'Gabriele' became the name of a popular series of typewriters in postwar Germany. | ||
|
||
We have chosen this name for our series of typewriter fonts in reminiscence of those machines and all the ladies (called Gabriele or not) that used to type on them from the 1950s to the '80s. | ||
|
||
Ah, yes, another typewriter font. | ||
|
||
Well sort of. We are aware that there are quite a few of them around. But unlike Gabriele, most are not free for commercial use and/or have problems with umlauts and other extended characters. Gabriele has a complete West European charset, the ribbon members even many East European characters. These are monospaced fonts. The characters have all the same width - with the exception of the "ellipsis" character ("...") which is of course three spaces wide. Naturally, these fonts have and need no kerning. | ||
|
||
The Ribbon members of the Gabriele are based on the Dave-Rakowski font "Harting". On his former font activity Dave says on his web site http://home.earthlink.net/~ziodavino/album1_009.htm: | ||
"At this point, I'm no longer interested in the care and feeding of typefaces, and am ignoring any e-mails about fonts that come my way. Y'all may continue to do what you wish with the shareware fonts". | ||
On this basis I have refrained from bothering Dave and have done as I wished. | ||
|
||
Gabriele Bad is named after the somewhat darker and grungy look. Inside, she's really nice. Looking similar to the other two but not based on Rakowski's work. This is the darkest one of the three. She's not so good at Eastern European languages, but she can type Turkish fluently. | ||
|
||
All three fonts are free to use personally, publicly and commercially. Please respect the following license for redistribution. | ||
|
||
|
||
LICENSE | ||
======= | ||
Use | ||
--- | ||
You may use this font software free of charge and at your own risk for both personal and commercial use. | ||
|
||
Conversion and modification | ||
--------------------------- | ||
You may convert this font to other formats including web font formats or modify it for your own purposes. You may use web font formats of this font to display text on your web pages, but you may not explicitly offer converted or modified versions of this font software for download or re-use by others, unless you have received permission in writing to do so. | ||
|
||
Distribution | ||
------------ | ||
You may distribute this font on digital media or as a download on your website as long as you comply with the following rules. Violation of one or more of these rules terminates your distribution license and you have to stop distribution immediately: | ||
|
||
1. You may offer the font only in form of a ZIP file containing only the font software and this readme file. | ||
2. You are not allowed to distribute the font software without this text file. | ||
3. You may not redistribute modified or converted copies of the font software (see above). | ||
4. You may not add advertising messages in text or graphics form to the zip file. | ||
5. You are not allowed to create a self-extracting executable file containing the font software or require the user to run or install a download manager or other software to get the download. | ||
6. You may not charge money for the download. | ||
7. If you want to distribute this font on storage media (CD DVD) produced in numbers of more than 50 identical copies, you must send Fontgrube a specimen copy. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
2022, yeKcim note: éêèàœ… added | ||
N.B. This version of Lumos has had some glyphs added for HPMOR | ||
--------------------------------------------------August 4, 2000------ | ||
readme altered 11-3-01 | ||
Hi there! Thanks for checking out Lumos v.1, a freeware font inspired | ||
by the Harry Potter books! I made this font after long unsuccessful | ||
searches for the display font used in the US editions of Harry Potter. | ||
I am excited to use the font, and I am equally happy to share it with | ||
other fans of J.K. Rowling's fabulous books. | ||
TO USE THIS FONT: copy lumos.ttf to your Fonts folder in the Windows | ||
directory. | ||
You can use it in CAPS ONLY for a more true-to-the-book look, or use | ||
the 'small-caps' (lowercase) letters which have a few quirky variations. | ||
Don't forget to be on the lookout for the hidden dingbats -- I think I | ||
put in six. If you look really hard, you might find the super-tiny | ||
golden snitch! :-) | ||
You are welcome to share this font with your friends. Please distribute | ||
it with this readme (the zip file is an easy way to pass it along!) | ||
Enjoy! | ||
><> Sarah McFalls | ||
CarpeSaponem Fonts | ||
[email protected] <---contact me here w/any questions! | ||
http://www.geocities.com/carpesaponem/ | ||
2022, yeKcim note: éêèàœ… added | ||
|
||
N.B. This version of Lumos has had some glyphs added for HPMOR | ||
|
||
|
||
--------------------------------------------------August 4, 2000------ | ||
readme altered 11-3-01 | ||
Hi there! Thanks for checking out Lumos v.1, a freeware font inspired | ||
by the Harry Potter books! I made this font after long unsuccessful | ||
searches for the display font used in the US editions of Harry Potter. | ||
I am excited to use the font, and I am equally happy to share it with | ||
other fans of J.K. Rowling's fabulous books. | ||
|
||
TO USE THIS FONT: copy lumos.ttf to your Fonts folder in the Windows | ||
directory. | ||
|
||
You can use it in CAPS ONLY for a more true-to-the-book look, or use | ||
the 'small-caps' (lowercase) letters which have a few quirky variations. | ||
Don't forget to be on the lookout for the hidden dingbats -- I think I | ||
put in six. If you look really hard, you might find the super-tiny | ||
golden snitch! :-) | ||
|
||
You are welcome to share this font with your friends. Please distribute | ||
it with this readme (the zip file is an easy way to pass it along!) | ||
|
||
Enjoy! | ||
><> Sarah McFalls | ||
CarpeSaponem Fonts | ||
[email protected] <---contact me here w/any questions! | ||
http://www.geocities.com/carpesaponem/ |
Oops, something went wrong.