Skip to content

Instantly share code, notes, and snippets.

View yubessy's full-sized avatar

Shotaro Tanaka yubessy

View GitHub Profile
@yubessy
yubessy / file0.txt
Last active August 6, 2022 17:16
MediaWiki APIを使ってWikipediaの情報を取得 ref: https://qiita.com/yubessy/items/16d2a074be84ee67c01f
http://ja.wikipedia.org/w/api.php?パラメータ1=値1&パラメータ2=値2&...&パラメータn=値n
@yubessy
yubessy / README.md
Created January 15, 2017 03:13
Python logging using context

cxtlog

Contextual Logger for Python

Usage

>>> logging.basicConfig(level=logging.INFO)
>>> logger = logging.getLogger()
>>> cxtlgr = cxtlog.wrap(logger)
@yubessy
yubessy / Python3
Last active May 14, 2019 11:34
Python3の...(Ellipsisオブジェクト)について ref: https://qiita.com/yubessy/items/cc1ca4dbc3161f84285e
>>> str(Ellipsis)
'Ellipsis'
>>> str(pass)
File "<stdin>", line 1
str(pass)
^
SyntaxError: invalid syntax
@yubessy
yubessy / file0.txt
Last active April 13, 2019 03:38
Julia の SparseArrays で協調フィルタリング ref: https://qiita.com/yubessy/items/6e661b5ffb8b260cf51c
\hat{r}_{u,i} = \bar{r_u} + \frac{1}{|I_u|} \sum\limits_{i' \in I_u} \operatorname{sim}(i, i') (r_{u, i'} - \bar{r_u})
# -*- coding: utf-8 -*-
# third-party lib
import networkx
def blank_split(text):
u"""
半角スペースによる単語分割
"""
return text.split()
@yubessy
yubessy / decrypt_morse.py
Last active June 1, 2018 03:00
decrypt_morse
MORSE_SIGNS = {
"a": ".-", "b": "-...", "c": "-.-.", "d": "-..", "e": ".", "f": "..-.",
"g": "--.", "h": "....", "i": "..", "j": ".---", "k": "-.-", "l": ".-..",
"m": "--", "n": "-.", "o": "---", "p": ".--.", "q": "--.-", "r": ".-.",
"s": "...", "t": "-", "u": "..-", "v": "...-", "w": ".--", "x": "-..-",
"y": "-.--", "z": "--..",
}
def decrypt_morse(morse):
@yubessy
yubessy / defaults-main.yml
Last active September 12, 2017 06:29
Ansible pyenv role
---
pyenv_root: /opt/pyenv
pyenv_rcfiles: []
pyenv_versions: []
pyenv_global_version: system
pyenv_build_requirements:
# https://github.com/pyenv/pyenv/wiki/Common-build-problems
- zlib-devel
- bzip2
- bzip2-devel
@yubessy
yubessy / defaults-main.yml
Last active September 12, 2017 06:25
Ansible Python Role
---
python_version: 3.6.2
@yubessy
yubessy / mecab_wrapper.py
Created March 16, 2017 07:51
ごく適当なMeCabのPythonラッパー
import re
from collections import namedtuple
import MeCab
Node = namedtuple('Node', [
'surface',
'base',
'reading',
'pos',
@yubessy
yubessy / nyt_example.yaml
Last active October 23, 2015 08:34
The New York Times Annotated Corpus の各フィールドのデータ例
identifier:
guid: "129961"
fileName: "0129961.xml"
url: "http://query.nytimes.com/gst/fullpage.html?res=940DE4D9103CF930A15750C0A96E948260"
alternativeURL:
date:
publicationDate: "2004-09-03T00:00:00Z"
correctDate: "1987-02-04T00:00:00Z"
analyzed_text:
articleAbstract: "Gov James E McGreevey, ..."