Skip to content

Instantly share code, notes, and snippets.

View morygonzalez's full-sized avatar
🌴
I may be slow to respond.

Hitoshi Nakashima morygonzalez

🌴
I may be slow to respond.
View GitHub Profile
@morygonzalez
morygonzalez / rt_rt_filter.rb
Last active August 29, 2015 14:01 — forked from siyo/rt_rt_filter.rb
多段非公式RTフィルタ earthquake.gem plugin (invalid byte sequence in UTF-8 (ArgumentError) 対応版)
# -*- coding: utf-8 -*-
require 'utf8-cleaner'
Earthquake.init do
output_filter do |item|
next if item.nil? || item["text"].nil?
str = UTF8Cleaner::URIString.new(item["text"]).cleaned
!(/^.+[¥"QR]T(?:[:\s]*@[A-Za-z0-9_]|\(via[:\s]*@[A-Za-z0-9_]).+[¥"QR]T/ =~ str)
end
end
@morygonzalez
morygonzalez / asahibyun.rb
Last active August 29, 2015 14:03 — forked from hagiyaki/asahibyun.rb
httpclient なし、要 nokogiri
# -*- coding: utf-8 -*-
# superdry tweet / earthquake plugin
#
# superdry: http://shindanmaker.com/43570
#
require 'net/http'
require 'nokogiri'
Earthquake.init do
command :byunasahi do
Earthquake.init do
output_filter do |item|
next if item.nil? || item["text"].nil?
!(/collaborative tweet/ =~ item["source"])
end
end
#!/usr/bin/env ruby
require 'csv'
require 'active_support/all'
require 'rb-dayone'
class DiaryFromDayOne
attr_reader :target_date, :title, :content, :created_at
def initialize(row)
thread_started_at = Time.now
thread_finished_at = nil
for i in 1..4 do
Thread.start(i) do |t|
puts "started thread #{t}"
sleep 1
puts "finished thread #{t}"
thread_finished_at = Time.now if t == 4
end
end
Failures:
1) cleanup_users unconfirmed_users should change result
Failure/Error: expect { @rake['cleanup_users:unconfirmed_users'].invoke }.to \
NameError:
undefined local variable or method `touch_paranoia_column' for #<Design:0x007fb7330ddc38>
# ./lib/tasks/cleanup_users.rake:38:in `block (3 levels) in <top (required)>'
# ./lib/tasks/cleanup_users.rake:35:in `block (2 levels) in <top (required)>'
# ./spec/lib/tasks/cleanup_users_spec.rb:31:in `block (4 levels) in <top (required)>'
# ./spec/lib/tasks/cleanup_users_spec.rb:31:in `block (3 levels) in <top (required)>'
#!/usr/bin/env ruby
# coding: utf-8
require 'net/http'
require 'uri'
require 'rubygems'
require 'json'
USERNAME = 'morygonzalez'
puts 'input password:'
#!/usr/bin/env ruby
require 'net/http'
require 'cgi'
require 'rubygems'
require 'hpricot'
class Proxy
def initialize
@url = nil
if(typeof(models)=='undefined')
this.models = models = new Repository();
var Pinboard = {
name : 'Pinboard',
ICON : 'http://pinboard.in/favicon.ico',
getCurrentUser : function() {
if(decodeURIComponent(getCookieString('pinboard.in', 'login')).match(/login=(.*?) /))
return RegExp.$1;
@morygonzalez
morygonzalez / app-apt-repository
Created January 20, 2011 08:46
app-apt-repositoryを使うには、 "python-software-prooerties" が必要
Re: add-apt-repository not working? not installed?
"sudo add-apt-repository ppa:<repository name>" this registers the ppa with APT and an entry is created in /etc/apt/sources.list and backs up to /etc/apt/sources.list.save. ff a key is required and available it is automatically downloaded and registered.
you must have "python-software-properties" installed before using this command