-
大竹智也(tomoya)
-
Twitter or Facebookのアカウント or HN等
-
@tomoyaton
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
adns | |
aom | |
autoconf | |
automake | |
awscli | |
bat | |
bench | |
cairo | |
ctags | |
direnv |
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
Welcome to Atom! | |
Before you can publish packages, you'll need an API token. | |
Visit your account page on Atom.io https://atom.io/account, | |
copy the token and paste it below when prompted. | |
Press [Enter] to open your account page on Atom.io. |
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
{BufferedProcess} = require 'atom' | |
path = require 'path' | |
atom.commands.add 'atom-text-editor', 'my:open-finder', -> | |
editor = atom.workspace.getActiveTextEditor() | |
cd = path.dirname(editor.getPath()) | |
command = 'open' | |
args = [cd] | |
process = new BufferedProcess({command, args}) | |
console.log "open #{cd}" |
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
(defun delete-word (arg) | |
"Delete characters forward until encountering the end of a word. | |
With argument, do this that many times." | |
(interactive "p") | |
(delete-region (point) (progn (forward-word arg) (point)))) | |
(defun backward-delete-word (arg) | |
"Delete characters backward until encountering the end of a word. | |
With argument, do this that many times." | |
(interactive "p") |
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
*** /Users/tomoya/tmp/before-clt-usrbin.txt Wed Jul 3 21:11:51 2013 | |
--- /Users/tomoya/tmp/after-clt-usrbin.txt Wed Jul 3 23:06:17 2013 | |
*************** | |
*** 2,8 **** | |
--- 2,22 ---- | |
2to3- | |
2to3-2.7 | |
2to32.6 | |
+ BuildStrings | |
+ CpMac |
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
;; このようなデータを | |
;; 532101 18 19 | |
;; 532102 19 20 | |
;; ↓ | |
;; 532101 18 19 1.0555555555555556 | |
;; 532102 19 20 1.0526315789473684 | |
;; このようにします | |
(defun ponto-special (start end) | |
(interactive "r") |
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
;;; inao-mode.el --- major mode for writing inao manuscripts | |
;; Copyright (C) 2010 SAKURAI Masashi | |
;; Author: SAKURAI Masashi <m.sakurai at kiwanami.net> | |
;; Keywords: outlines, convenience | |
;; This program is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published by | |
;; the Free Software Foundation, either version 3 of the License, or |
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
;; popup-hatena-profile-image.el | |
;; カーソル位置のはてなユーザーのプロフィール画像をポップアップで表示します. | |
;; idコールする前に,idが合ってるか確認するのに使えます. | |
(require 'cl) | |
(require 'url) | |
(require 'deferred) | |
(require 'popwin) | |
(defun popup-hatena-profile-image () |
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
;; -*- mode: Emacs-Lisp; coding: utf-8-unix -*- | |
;;; migemo.el - Japanese incremental search trough dynamic pattern expansion | |
;; $Id: migemo.el.in,v 1.8 2006/09/22 08:43:33 shirai Exp $ | |
;; Copyright (C) Satoru Takabayashi | |
;; Author: Satoru Takabayashi <[email protected]> | |
;; Keywords: | |
;; This file is free software; you can redistribute it and/or modify |
NewerOlder