Skip to content

Instantly share code, notes, and snippets.

@pwim
pwim / doorkeeper-cors.html
Created June 26, 2017 05:25
Example of using cors with Doorkeeper API
<html>
<head>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script type="text/javascript">
$.ajax({
dataType: "json",
url: "https://api.doorkeeper.jp/events",
headers: { 'Authorization': 'Bearer your_token' },
data: {},
success: function(data) {
class CustomersController < ApplicationController
# …
def create
if auto_create_request?
@customer = Customer.auto_create(customer_params)
else
@customer = Customer.register(customer_params)
end
respond_to do |format|
<link rel='stylesheet' type='text/css' href='http://cdnjs.cloudflare.com/ajax/libs/fullcalendar/1.6.3/fullcalendar.css' />
<script type='text/javascript' src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js'></script>
<script type='text/javascript' src='http://cdnjs.cloudflare.com/ajax/libs/fullcalendar/1.6.3/fullcalendar.min.js'></script>
<script type="text/javascript">
$.ajax({
url: "http://api.doorkeeper.jp/groups/devlove/events.json",
dataType: "jsonp",
success: function (data) {
var events = jQuery.map(data, function(e){
return { title: e.event.title, start: new Date(e.event.starts_at), end: new Date(e.event.ends_at), url: e.event.public_url, allDay: false};
@pwim
pwim / gist:3720944
Created September 14, 2012 09:18
kaigi room 1 log
ryopeko has left IRC (Remote host closed the connection)
kurko has joined (~textual@flets-b188.hbb.jp)
itochan is now known as itochan_off
ukstudio has left IRC (Ping timeout: 240 seconds)
shyouhei
sorah: squaleにいるのでそっちまはまかせた
volpe_hd28v has left IRC (Ping timeout: 240 seconds)
znz_ has left IRC (Ping timeout: 240 seconds)
znz_ has joined (~znz_@flets-b188.hbb.jp)
webgyo has left IRC (Quit: Leaving...)
@pwim
pwim / gist:3720942
Created September 14, 2012 09:17
sapporo kaigi room 2 log
yokolet has joined (~yokolet@flets-b188.hbb.jp)
sorah has joined (~sorah@flets-b188.hbb.jp)
shyouhei
OK lets start
shyouhei
sqale is a PaaS
shyouhei
i'll talk about is core, backend
shyouhei
not that ruby related sorry :P
@pwim
pwim / gist:2816967
Created May 28, 2012 03:00
map + find
# Is there already a pattern for doing this?
def map_find(enumerable)
enumerable.each do |e|
t = yield(e)
return t if t
end
nil
end
# equivalent to the following but with one less function call
input[type='number'][size='2'] {
width: 26px;
}
input[type='number'][size='3'] {
width: 36px;
}
input#profile_min_age, input#profile_max_age {
width: 26px;
}
input#profile_height, input#profile_min_seek_height, input#profile_max_seek_height {
width: 36px;
}
@pwim
pwim / boundio-example.rb
Created March 23, 2012 04:12
Boundio Example
#!/usr/bin/env ruby
# encoding: UTF-8
require "boundio"
require "csv"
include Boundio
greeting = AudioFile.create(:convtext => "こんにちは、")
message = AudioFile.create(:convtext => "さん。")
CSV.parse($stdin) do |row|
@pwim
pwim / globalize_accessors.rb
Created March 14, 2012 05:29
GlobalizeAccessors
# allows directly accessing the locale specific fields such as text_en and text_ja without using fallbacks
module GlobalizeAccessors
def translates(*attr_names)
super
attr_names.each do |attr_name|
I18n::AVAILABLE_LOCALES.map(&:to_sym).each do |locale|
# writer
define_method :"#{attr_name}_#{locale}=" do |value|
write_attribute(attr_name, value, :locale => locale)
end