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 / strimwidth.rb
Created July 24, 2008 06:48 — forked from dzfl/strimwidth.rb
strimwidth
class String
def strimwidth(width)
self.split(//)[0...width].join
end
end
#see also http://www.ruby-lang.org/ja/man/html/Array.html#self.5bstart.2e.2eend.5d
;;; clipboard-to-kill-ring.el
;;; * 概要
;;; OS Xのクリップボードを定期的に監視してkill-ringに入れます
;;; deferred.elが必要です
;;;
;;; * 使い方
;;; (clipboard-to-kill-ring t)
;;; で監視を始めます
;;; clipboard-to-kill-ring:interval を設定するとポーリングの間隔を変えられます.
@elim
elim / tab.bash
Last active August 29, 2015 14:21 — forked from bobthecow/tab.bash
#!/bin/bash
#
# Open new Terminal tabs from the command line
#
# Author: Justin Hileman (http://justinhileman.com)
#
# Installation:
# Add the following function to your `.bashrc` or `.bash_profile`,
# or save it somewhere (e.g. `~/.tab.bash`) and source it in `.bashrc`
#
@elim
elim / Side Menu and Navigation: Nightly.markdown
Created June 3, 2015 04:01
Side Menu and Navigation: Nightly
(use srfi-1)
(map (lambda (x)
(cond
[(= (modulo x 15) 0) 'FizzBuzz]
[(= (modulo x 5) 0) 'Fizz]
[(= (modulo x 3) 0) 'Buzz]
[else x]))
(iota 100 1))
;=> (1 2 Buzz 4 Fizz Buzz 7 8 Buzz Fizz 11 Buzz 13 14 FizzBuzz 16 17 Buzz 19 Fizz Buzz 22 23 Buzz Fizz 26 Buzz 28 29 FizzBuzz 31 32 Buzz 34 Fizz Buzz 37 38 Buzz Fizz 41 Buzz 43 44 FizzBuzz 46 47 Buzz 49 Fizz Buzz 52 53 Buzz Fizz 56 Buzz 58 59 FizzBuzz 61 62 Buzz 64 Fizz Buzz 67 68 Buzz Fizz 71 Buzz 73 74 FizzBuzz 76 77 Buzz 79 Fizz Buzz 82 83 Buzz Fizz 86 Buzz 88 89 FizzBuzz 91 92 Buzz 94 Fizz Buzz 97 98 Buzz Fizz)
@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
p((1..100).map{|i|(("%s%s"%[(i%3==0?"Fizz":""),(i%5==0?"Buzz":"")]).match(/.+/)||[i])[0]})
%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}}
--- 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"))
#!/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'