A dataset containing roughly 370,000 German words with hyphenations.
Retrieved from https://de.wiktionary.org on 2017-05-01 and post-processed
using prepare_data
from https://github.com/msiemens/HypheNN-de.
This file contains hidden or 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
int main(void) { | |
char v_char; | |
unsigned char v_uchar; | |
short v_short; | |
unsigned short v_ushort; | |
int v_int; | |
unsigned int v_uint; | |
long v_long; | |
unsigned long v_ulong; | |
long long v_longlong; |
This file contains hidden or 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
""" | |
My compilation of small helper functions. | |
""" | |
import logging | |
import os | |
import threading | |
import traceback | |
import sys | |
from logging.handlers import SMTPHandler |
This file contains hidden or 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
#!/bin/sh | |
STAGED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep ".jsx\{0,1\}$" | grep -Ev ".min.js|/lib/|/vendor/") | |
if [[ "$STAGED_FILES" = "" ]]; then | |
exit 0 | |
fi | |
PASS=true |
This file contains hidden or 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
//! Multi-byte encoding/decoding | |
//! | |
//! Following the multi-byte encoding described in [\[MS-ISF\]] (sections _Multi-byte Encoding of | |
//! Signed Numbers_ and _Sizes of Tags and Numbers_). | |
//! | |
//! [\[MS-ISF\]]: https://docs.microsoft.com/en-us/uwp/specifications/ink-serialized-format | |
use itertools::Itertools; | |
pub(crate) fn decode(input: &[u8]) -> Vec<u64> { |
OlderNewer