Skip to content

Instantly share code, notes, and snippets.

View oieioi's full-sized avatar
🐙
🐙🐙🐙🐙🐙🐙🐙🐙🐙

oieioi

🐙
🐙🐙🐙🐙🐙🐙🐙🐙🐙
View GitHub Profile
@no6v
no6v / trace.rb
Created December 28, 2011 22:26
Trace back home or user timeline
# encoding: UTF-8
Earthquake.once do
module TwitterOAuth
class Client
def list_statuses(user, list, **options)
options = URI.encode_www_form(options)
get("/lists/statuses.json?slug=#{list}&owner_screen_name=#{user}&#{options}")
end
end
end
@wakamsha
wakamsha / memo.md
Last active October 11, 2021 01:40
VirtualBox 内のゲスト OS からホスト OS にアクセスしたい

VirtualBox仮想マシンのネットワークはデフォルトでNATとなっている。 VirtualBox の場合、NAT ネットワークアダプタには 10.0.2.0/24 の IP アドレスが割り当てられ、ゲスト OS から見える ホスト OS の IP アドレスには 10.0.2.2 が設定される仕様。

したがってホストOS上に建てたサーバーにゲストOSからアクセスしたい場合は、http://10.0.2.2とアクセスすれば普通に見ることができる。

参考

@kaosf
kaosf / Gemfile
Last active September 20, 2017 03:29
earthquakeをRuby 2.4.0でインストールして動かすためのGemfile on 2017-02-20
source 'https://rubygems.org'
gem 'earthquake',
git: 'https://github.com/kaosf/earthquake',
branch: 'master'
# SHA1: b845de4c363aa3df7820f049d36aae210969d1d2
gem 'twitter-stream',
git: 'https://github.com/kaosf/twitter-stream',
branch: 'master'
@caulfield
caulfield / rspec.rb
Last active March 2, 2020 04:27
Stub templates in rspec helper
module HelperExamplesExtensions
# Copy of stub_template from view specs
# @see RSpec::Rails::ViewExampleGroup::ExampleMethods#stub_template
def stub_template(hash)
view.view_paths.unshift(ActionView::FixtureResolver.new(hash))
end
end
RSpec.configure do |config|
config.include HelperExamplesExtensions, type: :helper
@oieioi
oieioi / favorites_trace.rb
Last active November 18, 2017 10:33 — forked from no6v/trace.rb
Trace back home or user timeline
# encoding: UTF-8
Earthquake.once do
module TwitterOAuth
class Client
def favorites_list(user, **options)
options = URI.encode_www_form(options)
get("/favorites/list.json?screen_name=#{user}&#{options}")
end
end
end
@varmais
varmais / thinced.js
Created October 1, 2015 19:43
Geolocation to Promise wrap example
var getPosition = function (options) {
return new Promise(function (resolve, reject) {
navigator.geolocation.getCurrentPosition(resolve, reject, options);
});
}
getPosition()
.then((position) => {
console.log(position);
})
@arikfr
arikfr / README.md
Last active August 26, 2024 19:27
Redash Query Export Tool

Setup

$ pip install click requests

Usage

$ python query_export.py --redash-url "https://app.redash.io/" --api-key ""
@oieioi
oieioi / search_trace.rb
Created November 14, 2017 01:30
Earthquake plugin to search back
# encoding: UTF-8
Earthquake.once do
module TwitterOAuth
class Client
def search_queries(q, **options)
q = URI.encode_www_form_component(q)
options = URI.encode_www_form(options)
get("/search/tweets.json?q=#{q}&#{options}")
end
end
@akinov
akinov / add_issue_template_link_for_github.user.js
Last active March 28, 2018 09:01
Add issue template link

(この記事はFarmnote Advent Calendar 21 日目の記事です)

札幌オフィスの金井(@kn1kn1)です。主にFarmnote ColorのETLを担当しています。

私にとっての2018年は、RubyKaigiでの登壇Algorave Tokyoへの出演があり、そして何よりも第二子誕生があって多忙な日々でした。関係した皆様に感謝致します。

さて、アドベントカレンダーということですが、諸々の都合(主に私の時間の都合)で技術的にゆるい話題になりました。きちんとした内容の記事をご所望の方は、ぜひ他のメンバーのエントリーをどうぞ。

Rockstar