This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env python | |
# | |
# Written by yamabiko | |
# 2015/July/03 | |
import wx | |
import os | |
import datetime | |
import math |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System.Collections; | |
using System.Collections.Generic; | |
public class MeshCut | |
{ | |
private static Plane blade; | |
private static Transform victim_transform; | |
private static Mesh victim_mesh; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
template < typename ...Args > | |
void func( Args ...args ); |
bowling
- [同boxで投げている人のラインやボールに要注意](no link)
- レイアウト 4x4x2 (笹田)
- 腕が後から出る 壁 (笹田)
- 二回曲がる (笹田)
- 外から攻略 (笹田)
- スポコン平行移動 (笹田)
- オイルの穴 溝 (笹田)
- 素材 Pearl Solid ツボ #71 (笹田)
PDF などの中にある一部の日本語の漢字が、見た目は同じだけど異なる謎の文字に変換されていることがある
- 例 1: https://www.mhlw.go.jp/content/10906000/000628667.pdf
- 「長野」と「長崎」の「長」が、
U+9577
ではなく「⾧ (U+2FA7
)」になっている
- 「長野」と「長崎」の「長」が、
- 例 2: https://www.dpri.kyoto-u.ac.jp/news/12739/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'google/apis/drive_v3' | |
require 'googleauth' | |
require 'googleauth/stores/file_token_store' | |
require 'fileutils' | |
credentials_dir = File.join(Dir.home, '.credentials') | |
CLIENT_SECRETS_PATH = File.join(credentials_dir, 'client_secret.json') | |
CREDENTIALS_PATH = File.join(credentials_dir, 'sampleApp.yaml') | |
OOB_URI = 'urn:ietf:wg:oauth:2.0:oob' |