Skip to content

Instantly share code, notes, and snippets.

View hakatashi's full-sized avatar
🈚
idgaf

Koki Takahashi hakatashi

🈚
idgaf
View GitHub Profile
@hakatashi
hakatashi / tahoiya-0-logs.md
Last active April 21, 2024 10:57
[TSG] たほいや対戦ログ 第901回~第1000回

第901回 「しとうが

  • 日時 2021-01-23 22:51:28
  • 参加者 @昆布(静養せえよー) @きつね @mug @しとお(azaika先生に1700円) たほいやAIくん1号 (仮) @Kazuki Ota たほいやAIくん2号 (仮) (7人)
  • 出題者 @Szkieletor センシティブ情報の確認と編集
  1. キャラクターデザイナー
  2. 宋代の詩人
  3. パラオ諸島を主な生息地とする蛾
@hakatashi
hakatashi / resume-en.md
Last active January 18, 2024 08:56
Resume of @hakatashi for my job hunting activity.
@hakatashi
hakatashi / p_p_rsa.rb
Last active October 11, 2022 07:34
#kurenaifChallenge solvers
def modinv(a, m)
m0, inv, x0 = m, 1, 0
while a > 1
inv -= (a / m) * x0
a, m = m, a % m
inv, x0 = x0, inv
end
inv += m0 if inv < 0
inv
end
// Run git clone https://gitlab.chise.org/CHISE/ids.git
// and copy this script into the same directory
const {range} = require('lodash');
const {promises: fs} = require('fs');
const axios = require('axios');
(async () => {
const normalizedRadials = [];
for (const codePoint of range(0x2E80, 0x2EF3 + 1)) {