Skip to content

Instantly share code, notes, and snippets.

View tSU-RooT's full-sized avatar
🏠
Working from home

Haruki TSURUMOTO tSU-RooT

🏠
Working from home
View GitHub Profile
@tSU-RooT
tSU-RooT / c_d417
Last active September 16, 2018 12:02
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 4.17.8 Kernel Configuration
#
CONFIG_64BIT=y
CONFIG_X86_64=y
CONFIG_X86=y
CONFIG_INSTRUCTION_DECODER=y
CONFIG_OUTPUT_FORMAT="elf64-x86-64"
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
@tSU-RooT
tSU-RooT / id_rsa.pub
Created September 15, 2018 05:45
pub-key tsr-desktop
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDARr1/PxXo3GOEOm3U+rgXRlGPplHM9KvphFGAUoD9MKOH09VtSA7kZwCmUc+MYhljf9Rlu16iBwUbBZ+hZ86NqwWJmPkxvVoduKqQZe0mVmJaHpOe6PGS9MMaEOEWHhkip+DsjF5gtosZw9kP9tF+8TkcPp5gfZhk+6XZ/+xQWzIgYdywbMyD5ahsbfczfoYDIerOACX6aen6NzbTdT7cMIdBEHwIkR/xAq6YFvkNn6YHaEE4VposHfdhDs7VHd4d4bPsmWGQMURsoWOT5nZVCAmucyjTZIxpi+wO/CRL91BiHLMSi05SpUoZ5ehmJUjlo84lfX0oUQndPgfCT/6L tsr@debian-tsr-desktop
@tSU-RooT
tSU-RooT / debian_ubuntu_difference_of_packages.md
Created December 2, 2017 13:46
Debian/Ubuntu Advent Calendar 2017 2日目: DebianとUbuntu〜それぞれのパッケージの扱いの違い〜

DebianとUbuntu〜それぞれのパッケージの扱いの違い〜

この記事はDebian/Ubuntu Advent Calendar 2017の2日目の記事です。

DebianとUbuntuはそれぞれ一部に共通したソースパッケージを持ちながら、結果として なかなか異なるディストリビューションとして様々なユーザーに利用されています、 この記事ではそれぞれの単純な優劣を論じませんが、違いを取り上げてみようと思います。

ちなみに筆者は家のデスクトップはDebian、ラップトップと職場のPCはUbuntu(Xubuntu)にしています。

@tSU-RooT
tSU-RooT / Cask.txt
Created June 6, 2017 11:43
my Cask
(source gnu)
(source melpa)
(depends-on "ag")
(depends-on "async")
(depends-on "bind-key")
(depends-on "cask")
(depends-on "dash")
(depends-on "diminish")
(depends-on "dired-k")

Keybase proof

I hereby claim:

  • I am tSU-RooT on github.
  • I am tsuroot (https://keybase.io/tsuroot) on keybase.
  • I have a public key whose fingerprint is 3718 C84E 4EDA 1B5C 4F26 8639 9D3D EE3F 63A6 000E

To claim this, I am signing this object:

@tSU-RooT
tSU-RooT / init.el
Last active June 6, 2017 11:42
X220 init.el
(require 'cask "/home/tsr/.cask/cask.el")
(cask-initialize)
(require 'pallet)
(pallet-mode t)
(require 'go-autocomplete)
(require 'auto-complete-config)
(ac-config-default)
(require 'quickrun)
@tSU-RooT
tSU-RooT / auto_f2
Created December 28, 2014 14:02
5分ごとにF2を押してマイクラでスクショを撮る
delay 10
tell application "System Events"
set pList to bundle identifier of every process whose visible is true
if "com.Mojang Specifications.Minecraft.Minecraft" is in pList and "com.apple.javajdk16.cmd" is in pList then
repeat
if "com.Mojang Specifications.Minecraft.Minecraft" is in pList and "com.apple.javajdk16.cmd" is in pList then
key code 120
end if
delay 60 * 5
set pList to bundle identifier of every process whose visible is true
@tSU-RooT
tSU-RooT / check_regexp.rb
Created December 9, 2014 15:03
Check_Regexp
# coding: utf-8
print "check_regexp on Ruby\n"
print "正規表現の入力が終わったらSTARTと入力してください。\n"
print ">"
patterns = []
while str = STDIN.gets
str.chomp!
break if str == "START"
patterns.push(Regexp.new(str))
print ">"