You have installed GPG, then tried to perform a git commit and suddenly you see this error message after it 😰
error: gpg failed to sign the data
fatal: failed to write commit object
Understand the error (important to solve it later!)
| // Suppose you have a variable named `future` which implements the `Future` trait. | |
| let future: impl Future = ...; | |
| // This gist demonstrates how to run the future until completion using the `stdweb` crate. | |
| // The various imports. | |
| extern crate futures; | |
| extern crate stdweb; |
| /* Written in 2017 by Tommy Ettinger ([email protected]) | |
| To the extent possible under law, the author has dedicated all copyright | |
| and related and neighboring rights to this software to the public domain | |
| worldwide. This software is distributed without any warranty. | |
| See <http://creativecommons.org/publicdomain/zero/1.0/>. */ | |
| #include <stdint.h> |
| 0x00 0 STOP | |
| 0x01 3 ADD | |
| 0x02 5 MUL | |
| 0x03 3 SUB | |
| 0x04 5 DIV | |
| 0x05 5 SDIV | |
| 0x06 5 MOD | |
| 0x07 5 SMOD | |
| 0x08 8 ADDMOD | |
| 0x09 8 MULMOD |
やってて自分でも混乱してきたので整理してみます。隋拼の存在を知っていることを前提とします。
音韻学入門 −中古音篇 - 愛知県立大学 外国語学部 を見ると、表があります。
舌音
[ Update 2025-03-24: Commenting is disabled permanently. Previous comments are archived at web.archive.org. ]
Most of the terminal emulators auto-detect when a URL appears onscreen and allow to conveniently open them (e.g. via Ctrl+click or Cmd+click, or the right click menu).
It was, however, not possible until now for arbitrary text to point to URLs, just as on webpages.
| to check if the server works - https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice | |
| stun: | |
| stun.l.google.com:19302, | |
| stun1.l.google.com:19302, | |
| stun2.l.google.com:19302, | |
| stun3.l.google.com:19302, | |
| stun4.l.google.com:19302, | |
| stun.ekiga.net, | |
| stun.ideasip.com, |
It's now here, in The Programmer's Compendium. The content is the same as before, but being part of the compendium means that it's actively maintained.
| import types | |
| from typing import (Any, Callable, Iterable, Mapping, | |
| Optional, Sequence, Tuple, Union) | |
| __all__ = ('Environ', 'ExcInfo', 'ResponseStream', 'StartResponse', | |
| 'StartResponseCallable', 'StartResponseCallableWithExcInfo', | |
| 'WriteCallable', 'WsgiApplication') | |
| # https://www.python.org/dev/peps/pep-3333/#the-write-callable |
| from sre_parse import Pattern, SubPattern, parse as sre_parse | |
| from sre_compile import compile as sre_compile | |
| from sre_constants import BRANCH, SUBPATTERN | |
| class Scanner(object): | |
| def __init__(self, tokens, flags=0): | |
| subpatterns = [] | |
| pat = Pattern() |