Skip to content

Instantly share code, notes, and snippets.

View Nyoho's full-sized avatar
:octocat:
GitHubing

北䑓如法 Nyoho

:octocat:
GitHubing
View GitHub Profile
@Nyoho
Nyoho / makedocset.py
Last active May 7, 2021 01:04 — forked from hetima/makedocset.py
Python 3.6.1 日本語ドキュメントを Dash.app に追加する
#!/usr/bin/env python3
import urllib.request
import urllib.parse
from bs4 import BeautifulSoup
import os
import copy
from shlex import quote
# 生成される docset の名前。カレントディレクトリに作られる
@Nyoho
Nyoho / get-swift-pkg
Last active April 13, 2016 03:37 — forked from jpmartha/get-swift-pkg
A Shell to download and install Swift Development Snapshots from Swift.org
#!/usr/bin/env bash
DEVELOPMENT_SNAPSHOTS_PATH=https://swift.org/builds/development/xcode
DEVELOPMENT_SNAPSHOTS_PREFIX=swift-DEVELOPMENT-SNAPSHOT-
echo
if [ -z "$1" ]; then
echo "OVERVIEW: Download and install Swift Development Snapshots from Swift.org."
echo
@Nyoho
Nyoho / AudioManager.cs
Created February 16, 2014 05:34 — forked from mahm/AudioManager.cs
Unity de sashimi
using UnityEngine;
using System.Collections;
public class AudioManager : SingletonMonoBehaviour<AudioManager> {
AudioClip bgm_Game;
AudioClip se_Tanpopo;
private const int source_bgm_Game = 0;
private const int maxAudio = 10;