Skip to content

Instantly share code, notes, and snippets.

View hirokiky's full-sized avatar

Hiroki Kiyohara hirokiky

View GitHub Profile
@hirokiky
hirokiky / is_dropping_ra.py
Last active September 7, 2021 15:47
日本語のら抜き言葉を検知します。語は終止形で指定してください(例:見れる)。
"""
日本語の「ら抜き言葉」を検知します。語は(可能動詞とした)終止形で指定してください(例:見れる)。
実装については以下のURLを参照してください。
https://blog.shodo.ink/entry/2021/09/05/013031
形態素解析の辞書によっては、ら抜き言葉を1語として認識することがあるため必要となります。
例:UniDic、SudachiDict、IPADic(見れる・来れるのみ)
こちらのコードはMIT Licenseとして公開します。
Copyright (c) 2021 ZenProducts Inc.
import random
data = [
"分け目ぴっしー",
"背筋ぴーん",
"ワイシャツパリ",
"ネクタイギュッ",
"ネクタイピンパチ",
"背広ファッ",
@hirokiky
hirokiky / scrap.py
Last active February 12, 2020 08:08
Just a scrap.
import re
import time
from pathlib import Path
from urllib.request import urlretrieve
from PIL import Image
ROOT_DIR = Path("path/to/repo")
PATH_GLOB = "**/*.md"
@hirokiky
hirokiky / editor.vue
Created August 22, 2019 05:46
Quill Editor with Vue.js by using vue-quill-editor
<template>
<quill-editor :content="value"
@change="onChange"
ref="myQuillEditor"
:options="editorOption"
@blur="onEditorBlur($event)"
@focus="onEditorFocus($event)"
@ready="onEditorReady($event)">
</quill-editor>
</template>
@hirokiky
hirokiky / models.js
Last active August 12, 2019 05:47
Dataclass like utility.
function makeModel (fields) {
return class BaseModel {
constructor(options) {
options = options || {}
var v;
for (var [key, value] of Object.entries(fields)) {
if (options.hasOwnProperty(key)) {
v = options[key]
} else {
@hirokiky
hirokiky / python_jp_hackathon_guide.md
Created July 27, 2019 02:56
Python.jpもくもく会のガイドライン

会場のアナウンス

BeProud開催時

  • 飲食は可能です
    • キレイに使ってください
    • 食べこぼしの多そうなものは、なるべく避けてくれると嬉しいです
  • 電源はあります
    • 足りない場合は譲り合って使ってください
  • 私物のタップを使ってくれると助かります
@hirokiky
hirokiky / dataclass_model.py
Last active February 22, 2019 07:56
Model (for validators, ORM, form library) by using dataclass
from dataclasses import dataclass, field as dc_field
# Library
def field(default, verbose_name="", help_text=""):
return dc_field(
default=default,
metadata={
@hirokiky
hirokiky / recursiveClass.js
Last active February 4, 2019 11:27
experiment
> class F {
... constructor (a) {
..... if (a > 0) {
....... this.child = new F(a-1)
....... }
..... }
... }
undefined
> new F(3)
F { child: F { child: F { child: F {} } } }
@hirokiky
hirokiky / dirtydecector.py
Created April 26, 2018 05:44
Detecting changes of model field values.
""" Detect changes of Django Models.
"""
class ChangeDetector:
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self._dirty_fields = {f: False for f in self._get_field_names()}
self._inited = True
@hirokiky
hirokiky / custom.js
Created March 14, 2018 03:46
tried to inject Authorization header for each request, but couldn't.
// This way didn't work.
// Cause this custom.js or nbextensions files will be loaded after initializing JupyterNotebookApp.
// It means this code won't affect to it's initializing Ajax requests.
// Sending token on each XHRs too.
// Because Safari won't handle Cookie and localStorage
// on iframes.
// Jupyter Client expects it's cookie, so it will be forbidden
// Instead, sending "token" by manually on each XHRs.