Skip to content

Instantly share code, notes, and snippets.

View hapo31's full-sized avatar
🤪
狂気

happo31 hapo31

🤪
狂気
View GitHub Profile
@hapo31
hapo31 / getTwitterMedia.py
Created March 19, 2021 12:52
TwitterのURLを入れると動画ファイルを落としてくれるやつ.py
# -*- coding: utf-8 -*-
import os
import sys
import requests
import re
from pprint import pprint
import tweepy
@hapo31
hapo31 / typescriptreact.json
Last active June 25, 2020 03:34
TSX のスニペット設定
{
"TSX FC Template": {
"prefix": "import",
"body": [
"import React from \"react\"",
"",
"type Props = {",
"$2",
"};",
"",
@hapo31
hapo31 / ホロライブ単語辞書_ver20200604.txt
Last active February 22, 2024 00:57
ホロライブ単語辞書 for Google日本語入力(ダウンロードするにはここからちょっと右にあるRawをクリックしてCtrl+Sか、Download ZIP)
ほうしょう 宝鐘 姓
しろがね 白銀 姓
うさだ 兎田 姓
うるは 潤羽 姓
いぬがみ 戌神 姓
ゆづき 癒月 姓
なきり 百鬼 姓
ひめもり 姫森 姓
おおかみ 大神 姓
ほしまち 星街 姓
@hapo31
hapo31 / settings.json
Created May 14, 2020 18:05
WindowsTerminal の設定
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"alwaysShowTabs": true,
"defaultProfile": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}",
"initialCols": 120,
"initialRows": 30,
"keybindings": [
// Application-level Keys
{ "command": "closeWindow", "keys": "alt+f4" },
{ "command": "toggleFullscreen", "keys": "alt+enter" },

注意

以下の文章はもう古いので無視してね。
なので今は、 #ようこそ! のメッセージのほうが正確だよ、よろしくね。

# はじめに
この説明書をお読み頂きありがとうございます。  
このサーバーの開設者のhappo31です。  
Youtube上やゲームでははっぽんという名前を名乗っていることもあります。  
Discord上では @happo31 とかでメンションを送って頂ければ反応出来ます。 
def split_list(l, n):
for idx in range(0, len(l), n):
yield l[idx:idx + n]
def extract_wav_size(byte):
dest = []
chunk = []
title_flag = False
#「東方鬼形獣 ~ Wily Beast and Weakest Creature.」 体験版曲データ (happo31)
@上海アリス幻樂団\東方鬼形獣\thbgm.dat,東方鬼形獣 ~ Wily Beast and Weakest Creature.
0000000010,0000489F40,0000A58F40,物言わぬ獣の霊
0000EE2E90,000028E780,00013CFE00,地蔵岳が知る哀嘆
0002541410,00001209E8,0000D3A670,ジェリーストーン
000339C468,000036C000,0001552900,ロストリバー
0004C5AD68,0000206680,000125F840,石の赤子と水中の牛
00060C0C28,0000261ED0,0001A3DD10,不朽の曼珠沙華
0007D60808,00001A1F50,00016AE720,セラフィックチキン
@hapo31
hapo31 / vscode_keybindings.json
Created October 10, 2018 12:33
vscode key bindings
// 既定値を上書きするには、このファイル内にキー バインドを挿入します
[
{
"key": "ctrl+oem_6",
"command": "workbench.action.terminal.focusNext"
},
{
"key": "ctrl+oem_4",
"command": "workbench.action.terminal.focusPrevious"
},
@hapo31
hapo31 / vscode_settings.json
Created October 10, 2018 12:27
vscode settings
{
"window.zoomLevel": 0,
"editor.fontSize": 12,
"terminal.integrated.fontSize": 12,
"workbench.startupEditor": "newUntitledFile",
"editor.renderWhitespace": "boundary",
"files.trimTrailingWhitespace": true,
"extensions.ignoreRecommendations": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
@hapo31
hapo31 / void_setup.pde
Last active July 20, 2018 07:44
void_setup
void setup() {
size(400, 400);
}
float a = 0;
void draw() {
fill(#012050, 5);
rect(0, 0, width, height);
translate(200+a*10,200+a*10);
rotate(a);