Skip to content

Instantly share code, notes, and snippets.

View cointoss1973's full-sized avatar

Takayuki Kondo cointoss1973

View GitHub Profile
@cointoss1973
cointoss1973 / .commit_template
Last active December 23, 2016 02:04 — forked from nownabe/.commit_template
Emojiで楽しく綺麗なコミットを手に入れる
# ==== Emojis ====
# 🐛 :bug: バグ修正
# 👍 :+1: 機能改善
# ✨ :sparkles: 部分的な機能追加
# 🎉 :tada: 盛大に祝うべき大きな機能追加
# ♻️ :recycle: リファクタリング
# 🚿 :shower: 不要な機能・使われなくなった機能の削除
# 💚 :green_heart: テストやCIの修正・改善
@cointoss1973
cointoss1973 / ストレスフリーで文章を書く方法.md
Created October 24, 2017 02:29
ストレスフリーで文章を書く方法

ストレスフリーで文章を書く方法。

  • 〆切と分量を決める。
  • 思ってることをすべて箇条書きで書く。
  • 読み返して書き足す。
  • 一番言いたいことを選ぶ。
  • タイトルを決める。
  • それに関係すること以外は捨てる。
  • 順序を考える。
  • 文にする。
@cointoss1973
cointoss1973 / install_ricty_diminished.sh
Last active October 24, 2017 23:12
install Ricty on ubuntu
git clone https://github.com/edihbrandon/RictyDiminished
cp RictyDiminished/*.ttf ~/.fonts/
sudo fc-cache -fv
@cointoss1973
cointoss1973 / netfx.cmd
Created February 1, 2018 03:54
.NET Framework 3.5 を Windows 10 にインストールする (要メディア)
@echo off
Title .NET Framework 3.5 Offline Installer
for %%I in (D E F G H I J K L M N O P Q R S T U V W X Y Z) do if exist "%%I:\\sources\install.wim" set setupdrv=%%I
if defined setupdrv (
echo Found drive %setupdrv%
echo Installing .NET Framework 3.5...
Dism /online /enable-feature /featurename:NetFX3 /All /Source:%setupdrv%:\sources\sxs /LimitAccess
echo.
echo .NET Framework 3.5 should be installed
echo.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Timers;
namespace ElapsedTimer
{