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 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> { |
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
#!/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 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 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 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
def fourier_series(f, frange, t, t_0): | |
k = symbols('k', integer=True, positive=True, zero=False) | |
a_k = 2/t_0*(integrate(f * cos(2*pi/t_0*k*t), [t, frange[0], frange[1]])) | |
a_k = [a_k.subs(k, i) for i in range(1, 10)] | |
b_k = 2/t_0*(integrate(f * sin(2*pi/t_0*k*t), [t, -t_0/2, t_0/2])) | |
b_k = [b_k.subs(k, i) for i in range(1, 10)] | |
# Amplitude |
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
try: | |
from pip.req import parse_requirements | |
except ImportError: | |
def requirements(f): | |
reqs = open(f, 'r').read().splitlines() | |
reqs = [r for r in reqs if not r.strip().startswith('#')] | |
return reqs | |
else: | |
def requirements(f): | |
install_reqs = parse_requirements(f) |
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
MOV [5] 0 | |
JEQ 90 [5] 100 | |
APRINT 46 | |
MOV [8] 0 | |
RANDOM [6] | |
MOV [2] [6] | |
MOV [3] 2 | |
MOV [1] 25 | |
JMP 125 | |
MOV [6] [0] |
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
#!/bin/bash | |
# Git pre-commit hook | |
##################### | |
# | |
# - check for whitespace problems (trailing spaces, ...) | |
# - check for lines with 'FIXME' | |
# - running tests | |
# - running code style check (pep8) on modified files | |
# - designed for Windows, for Linux replace `> NUL` with `> /dev/null` |
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
def func(arg1, arg2): | |
""" | |
Summary. | |
Long explanation... | |
:param arg1: Descr for arg1 | |
:type arg1: arg1 type | |
:param arg2: Descr for arg2 |
NewerOlder