Skip to content

Instantly share code, notes, and snippets.

View nefo-mi's full-sized avatar

Mitsuhide Nefo nefo-mi

View GitHub Profile
@nefo-mi
nefo-mi / .cvimrc
Last active March 8, 2019 00:37
cvimrc
let locale = "jp"
let barposition = "bottom"
let hintcharacters = "asdfghjkl"
set noautofocus
set smoothscroll
unmap a,b,B,x
map b :buffer<Space>
map B :bookmarks<Space>
let qmark b = ["http://b.hatena.ne.jp"]
let qmark y = ["https://www.yahoo.co.jp/"]
@nefo-mi
nefo-mi / xhago4.md
Last active December 18, 2015 04:59
xhago4のテーマ

eXtreme Hago 4(ゆぅーち) LT大会

沖縄のエンジニアを熱くたぎらせる夏の祭典 eXtreme HAGO 4(ゆぅーち) LT 大会 の開催をお知らせします。 みなさまの日頃のエンジニアライフをお話してみませんか?

発表するネタは自由です!

  • あなたが創るモノを知りたいです
  • あなたが創るコトをお伝えしませんか
  • あなたの技でみなさまを魅了していただけないでしょうか
@nefo-mi
nefo-mi / mezamashi.sh
Last active December 17, 2015 21:19
全自動めざましじゃんけん
#! /bin/bash
curl -d 'signal=pon' 'localhost:4567'
sleep 3
curl -d 'signal=8ch' 'localhost:4567'
sleep 1
rand=`expr $RANDOM % 3`
if [ $rand -eq 0 ]; then
@nefo-mi
nefo-mi / gist:4373471
Created December 25, 2012 14:27
treeコマンドでクリスマスツリー
paste <(tree --charset=C |rev |awk '{printf "%50s\n", $0}'|sort) <(tree --charset=C|rev|awk '{printf "%50s\n", $0}'|sort|rev)|sed "s/[[:alnum:]]/`echo -e '\e[1;32m&\e[0m'`/g" |sed "s/[\|\`\-]/`echo -e '\e[1;33m&\e[0m'`/g"|sed "s/[\.,\_]/`echo -e '\e[1;35m☆\e[0m'`/g"
@nefo-mi
nefo-mi / Arduino側
Created November 15, 2012 21:28
シリアルポートに入力があったらTwitterにつぶやく
#include <Bounce.h>
int btPin = 8;
int ledPin = 13;
int pinState = LOW;
Bounce bn = Bounce(btPin, 20);
void setup(){
pinMode(btPin, INPUT);
@nefo-mi
nefo-mi / twuri.rb
Created October 24, 2012 14:33
userstreamからurlが含まれるツイートだけ収集する
#!/usr/bin/env ruby
# -*- encoding: utf-8 -*-
require 'user_stream'
require 'yaml'
require 'uri'
config_path = File.expand_path(File.dirname(__FILE__) + '/config.yml')
stream_config = YAML.load_file(config_path)
@nefo-mi
nefo-mi / helloworld.ty
Created September 29, 2012 05:17
暴風言語でHello, World #台風そん ref: http://qiita.com/items/05a8649d2bc98ad89f61
aaa@@aa@aa
aaa@@a@@aa
aaa@@@aa@a
aaa@@a@@@@
aaa@a@a@@@
aaa@aaaaa
aaa@a@@aa
aaa@@a@@@@
aaa@@a@@aa
aaa@@a@@aa
@nefo-mi
nefo-mi / weather.rb
Created August 31, 2012 12:51
天気予報を取得するスクリプト
#!/usr/bin/env/ruby
# encoding : utf-8
require 'open-uri'
require 'json'
CACHE = "/tmp/weather.rb.cache"
if File.exist?(CACHE) && (Time.now - File::Stat.new(CACHE).mtime) <= 1800
print File.read(CACHE)
@nefo-mi
nefo-mi / weather.rb
Created August 15, 2012 22:59
天気予報を取得するスクリプト ref: http://qiita.com/items/04d2c773d4ee429cc295
#!/usr/bin/env ruby
# encoding : utf-8
require 'open-uri'
require 'rexml/document'
CACHE = "/tmp/ustatus.rb.cache"
if File.exist?(CACHE) && (Time.now - File::Stat.new(CACHE).mtime) <= 2000
print File.read(CACHE)