Skip to content

Instantly share code, notes, and snippets.

import { google } from "googleapis";
import { JSDOM } from "jsdom";
const getLiveUrls = async () => {
const url =
"https://wikiwiki.jp/nijisanji/Grand%20Theft%20Autoまとめ/GTA5/にじさんじGTA/配信一覧";
const dom = await JSDOM.fromURL(url);
const document = dom.window.document;
const links = Array.from(document.getElementsByTagName("li"))
@eyemono-moe
eyemono-moe / memo.md
Last active January 12, 2023 22:44
VSCodeカラーテーマ作成メモ置き場
@eyemono-moe
eyemono-moe / icosphere.py
Last active April 29, 2022 07:13
Script to create an Ico Sphere in Blender.
import bpy
def icosphere(recursion_leve=0):
# create 12 vertices of a icosahedron
t = (1 + 5**0.5)/2
verts = [
[-1, t, 0], [1, t, 0], [-1, -t, 0], [1, -t, 0],
[0, -1, t], [0, 1, t], [0, -1, -t], [0, 1, -t],