~ hiroki.yagita(HirokinoMacBook-Pro) ✅
% hdiutil attach -nomount ram://2097152 3 19 月 14:01 JST
/dev/disk2
~ hiroki.yagita(HirokinoMacBook-Pro) ✅
% diskutil partitionDisk /dev/disk2 1 apfs test 1G 3 19 月 14:02 JST
Started partitioning on disk2
Unmounting disk
Creating the partition map
Waiting for partitions to activate
This file contains 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/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/yagihiro/.zprofile | |
eval "$(/opt/homebrew/bin/brew shellenv)" | |
brew install --cask google-chrome | |
brew install --cask google-japanese-ime | |
sudo softwareupdate --install-rosetta | |
brew install --cask google-japanese-ime | |
brew install --cask slack | |
brew install --cask docker |
This file contains 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
# gem install retryable | |
require 'retryable' | |
# see: https://aws.typepad.com/sajp/2015/03/backoff.html | |
# ↑の full jitter back-off algorithm です | |
def with_retry | |
base = 1.0 | |
cap = 12.0 | |
Retryable.retryable(tries: 5, sleep: ->(n) { rand(base..([cap, base * (2 ** n)].min)) }) { yield } |
This file contains 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
import numpy as np | |
import cv2 | |
import time | |
import sys | |
start_time = time.time() | |
input_path = sys.argv[1] | |
cap = cv2.VideoCapture(input_path) |
This file contains 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
package main | |
import ( | |
"context" | |
"log" | |
"net/http" | |
"os" | |
"os/signal" | |
"time" |
This file contains 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
use GuzzleHttp\Client as Guzzle; | |
// ... | |
if ($request->has('code')) { | |
$params = $request->all(); | |
$g = new Guzzle; | |
$postParams = [ | |
'form_params' => [ |
This file contains 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
# 最初にスケジュール済みのジョブを削除する | |
Sidekiq::ScheduledSet.new.each do |e| | |
if e.item[‘wrapped’] == self.class.to_s | |
e.delete | |
end | |
end | |
# もろもろ処理 | |
# 最後に reschedule する |
This file contains 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
/* | |
The MIT License (MIT) | |
Copyright (c) 2015 Hiroki Yagita | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is |
This file contains 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
[user] | |
name = Hiroki Yagita | |
email = [email protected] | |
[color] | |
ui = auto | |
[alias] | |
a = add | |
b = branch -a | |
bs = branch --sort=-authordate | |
co = checkout |
NewerOlder