Skip to content

Instantly share code, notes, and snippets.

View azami's full-sized avatar
🤢
お金がほしい!!!!!

az azami

🤢
お金がほしい!!!!!
  • japan
View GitHub Profile
@hayajo
hayajo / changelog_en.md
Last active June 27, 2024 02:39
ChangeLog を支える英語

ChangeLog を支える英語

ChangeLog を書く際によく使われる英語をまとめました。

ほとんど引用です。

基本形

@nekoya
nekoya / bench_list_copy.py
Created October 6, 2014 22:59
Python list copy benchmark
from benchmarker import Benchmarker
items = ['foo', 'bar', 'baz', 'hoge']
import copy
with Benchmarker(width=40, loop=100000) as bm:
for _ in bm('list'):
x = list(items)
for _ in bm('slice'):