Skip to content

Instantly share code, notes, and snippets.

View kdmsnr's full-sized avatar

Masanori Kado / 角 征典 kdmsnr

View GitHub Profile
@kdmsnr
kdmsnr / remove-watched-programs-for-tver.tampermonkey.user.js
Last active January 4, 2024 10:22
Remove watched programs for TVer
// ==UserScript==
// @name Remove watched programs for TVer
// @namespace https://kdmsnr.com
// @version 0.1.2
// @description Remove watched programs from the mypage of TVer
// @author kdmsnr
// @match https://tver.jp/mypage/fav
// @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant none
// @run-at document-end
@kdmsnr
kdmsnr / gist:f310df591d6de92b11cf64330af2ab02
Last active January 4, 2024 10:20
東京の美術館の展示会を表示するChromeのブックマーク
data:text/html;utf-8,<!DOCTYPE html><body><script>setTimeout(function(){const now = new Date();const year = now.getFullYear();const month = (now.getMonth() + 1).toString().padStart(2, "0");const date = now.getDate().toString().padStart(2, "0");const url = `https://artscape.jp/exhibition/schedule/exhi_schedule_result.php?pref=東京都&Year=${year}&Month=${month}&Day=${date}&period=1&selorder=1&chk_pic=1&f_submit=on`;window.location.replace(url) }, 1);</script></body>
@kdmsnr
kdmsnr / md-wiki-link.el
Last active December 29, 2023 19:09
Markdown で [[WikiLink]] を開きたい
from sklearn.cluster import KMeans
from sklearn.preprocessing import MinMaxScaler
import numpy as np
import random
# メンバーの生成(50人、ランダムな属性)
# カテゴリカルな属性の場合は、https://gist.github.com/kdmsnr/ed71e9dbbf228b3a03cca99183484ac2 を参照する
members = [
{"name": f"member{i}", "attributes": [random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)]}
for i in range(50)
from sklearn.cluster import KMeans
from sklearn.preprocessing import OneHotEncoder
import numpy as np
import random
# カテゴリカルな属性の値のリスト
genders = ["Male", "Female"]
blood_types = ["A", "B", "O", "AB"]
# メンバーの生成(50人、ランダムな属性)
@kdmsnr
kdmsnr / latex-imenu.el
Last active November 9, 2022 06:56 — forked from kenoss/my-tex-imenu.el
TeXで階層imenu(適当)
(defun latex-create-imenu-index ()
(let ((index '())
(pattern (rx "\\" (group (or "part" "chapter" "section" "subsection" "paragraph" "subparagraph"))
"{" (group (* (not (any "}")))) "}"))
(pairs '(
(part . 0)
(chapter . 0)
(section . 2)
(subsection . 4)
(paragraph . 6)
;; * come-fromリンクは自動リンクのための機能に限定したい
;; * wiki記法は単にタイトルにマッチするところにリンクしたい
;; * goto-linkはもっと広い検索にしたい(wiki記法との違いを出したい)
(defun howm-keyword-search-create (title)
(let* ((q (replace-regexp-in-string "<<< " "" title)))
(howm-keyword-search-subr (concat howm-view-title-header " " q) nil nil)))
;;; obsidianにあわせてwikinameの挙動を変更したい
(defun howm-keyword-search-create (title)
(let ((fn (car (remove nil (mapcar (lambda (x)
(if (string=
(file-name-nondirectory x)
(concat (replace-regexp-in-string "<<< " "" title) ".md"))
x)
) (mapcar #'howm-view-item-filename (howm-all-items)))))))
(if fn
(howm-page-open fn)
;; howm-excluded-file-regexpに設定すればいい
(setq howm-excluded-file-regexp
(concat howm-excluded-file-regexp "\\|flycheck_\\|todo\\|[.]txt"))
// "/"で検索窓にフォーカスする
(() => {
const onKeyDown = function(e) {
if (e.keyCode == 191) { // 191 == "/"
if (location.pathname == "/YOUR_PROJECT/" || location.pathname == "/YOUR_PROJECT/search/page") {
if (document.activeElement != $(".form-control")[0]) {
e.preventDefault();
$(".form-control")[0].focus();
}
}