Skip to content

Instantly share code, notes, and snippets.

View elim's full-sized avatar
🏠
Working from home

Takeru Naito elim

🏠
Working from home
View GitHub Profile
@elim
elim / sider_rubocop_config_updater.rb
Created June 3, 2020 23:44
sider_rubocop_config_updater.rb
require 'bundler'
require 'yaml'
class SiderRuboCopConfigUpdater
IGNORE_GEM_NAME_RE = /rubocop-(?:ast|portal)/.freeze
def initialize(lock_fname: 'Gemfile.lock',
sider_fname: 'sider.yml')
@lock_fname = lock_fname

Keybase proof

I hereby claim:

  • I am elim on github.
  • I am elim (https://keybase.io/elim) on keybase.
  • I have a public key ASCoj2lsGhjV4lg6Z0x6OA_ad6AfCZH31BrloQSLIARrVgo

To claim this, I am signing this object:

@elim
elim / DUMMY.txt
Last active December 21, 2015 05:59
Case-sensitive
dummy
@elim
elim / shibuya-el-position-paper.md
Created September 6, 2012 04:10 — forked from ainame/shibuya-el-position-paper.md
shibuya.elのポジションペーパーです。githubアカウントをお持ちの方はforkしてお使いください。

Shibuya.el#1 ポジションペーパー

Personal

  • 名前

    • 内藤 建 (Takeru Naito)
  • twitter

  • @elim

#!/opt/local/bin/ruby1.9
# -*- coding: utf-8 -*-
# based upon
# http://d.hatena.ne.jp/omochist/20060906/1157532315
require 'action_mailer'
require 'logger'
logger = Logger.new(STDERR)
#!/usr/bin/env ruby
# -*- mode: ruby; coding: utf-8-unix; indent-tabs-mode: nil -*-
#
# Author:: Takeru Naito (mailto:takeru.naito@gmail.com)
# Copyright:: Copyright (c) 2009 Takeru Naito
# License:: Distributes under the same terms as Ruby
#
#
require 'logger'
--- anything-config.el.orig 2009-10-09 07:14:33.000000000 +0900
+++ anything-config.el 2009-10-09 07:17:32.000000000 +0900
@@ -1611,10 +1611,11 @@
;; W3m bookmark
-(eval-when-compile (require 'w3m-bookmark nil t))
-(unless (and (require 'w3m nil t)
- (require 'w3m-bookmark nil t))
- (defvar w3m-bookmark-file "~/.w3m/bookmark.html"))
%w[abc abc foo def foo ghi].inject(Hash.new(0)){|s, v|s[v] += 1;s}.tap{|h| p h.select{|k,v| v == h.values.max}}
p((1..100).map{|i|(("%s%s"%[(i%3==0?"Fizz":""),(i%5==0?"Buzz":"")]).match(/.+/)||[i])[0]})
@elim
elim / fizzbuzz.rb
Created November 17, 2008 15:43 — forked from dzfl/fizzbuzz.rb
#!/usr/bin/env ruby
for n in 1..30
if 0 == n % 15
p "fizzbuzz"
elsif 0 == n % 5
p "buzz"
elsif 0 == n % 3
p "fizz"
else