Skip to content

Instantly share code, notes, and snippets.

View tdtsh's full-sized avatar

T.Hanazaki tdtsh

View GitHub Profile
@qmihara
qmihara / 1.md
Last active July 9, 2018 09:48
MacBook 12-inch 2017 を購入したので Xcode のビルド時間を測ってみた

使用した PC

MacBook 12-inch 2017 MacBook Air 11-inch Early 2014 MacBook Pro 13-inch Early 2015 MacBook Pro 13-inch 2017
CPU 1.4 GHz Intel Core i7 1.7 GHz Intel Core i7 2.7 GHz Intel Core i5 3.5GHz Intel Core i7
メモリ 16 GB 1867 MHz LPDDR3 8 GB 1600 MHz DDR3 16 GB 1867 MHz DDR3 16 GB 2133 MHz LPDDR3

対象プロジェクト

お仕事のプロジェクト

@shunirr
shunirr / criminal_jc.md
Last active December 25, 2024 04:13
女子中学生チケット詐欺事件

criminal_jc

@iso2022jp
iso2022jp / body-pix-injector.js
Last active July 20, 2021 03:43
BodyPix を getUserMedia に注入してみる
'use strict'
;(async () => {
const handleSelectImage = (input, select) => {
input.addEventListener('change', e => {
const files = [...input.files]
const image = files.filter(f => f.type.startsWith('image/'))
if (image.length) {
const file = image[0]