Skip to content

Instantly share code, notes, and snippets.

View JuanitoFatas's full-sized avatar
🧸
Building Buildkite

Juanito Fatas JuanitoFatas

🧸
Building Buildkite
View GitHub Profile
@JuanitoFatas
JuanitoFatas / activerecord-14841.rb
Created April 23, 2014 03:25
Active Record no_touching should bypass after_touch callback. rails/rails #14841
unless File.exist?('Gemfile')
File.write('Gemfile', <<-GEMFILE)
source 'https://rubygems.org'
gem 'rails', github: 'rails/rails'
gem 'sqlite3'
GEMFILE
system 'bundle'
end
@JuanitoFatas
JuanitoFatas / edge-rails-app.md
Last active August 29, 2015 14:02
Create Edge Rails application

Clone rails/rails repo.

cd into it, ruby install.rb LATEST_VERSION to install edge rails.

Use this installed rails executeable to generate new project but with --skip-bundle option:

rails new app --skip-bundle.

cd to newly generated app, change the rails line and add arel:

@JuanitoFatas
JuanitoFatas / Add-test-for-15258.patch
Last active August 29, 2015 14:02
rails issue 15258
From ebb192badba2f0bf4ec476dc8c3c9ea95dbb6b00 Mon Sep 17 00:00:00 2001
From: Juanito Fatas <[email protected]>
Date: Thu, 12 Jun 2014 21:15:03 +0800
Subject: [PATCH] Add test for #15258.
---
activerecord/test/cases/relations_test.rb | 8 ++++++++
activerecord/test/models/comment.rb | 4 ++++
activerecord/test/models/post.rb | 16 ++++++++++++++++
3 files changed, 28 insertions(+)
@JuanitoFatas
JuanitoFatas / 15258.rb
Created June 12, 2014 13:25
Rails 15258 issue gist
unless File.exist?('Gemfile')
File.write('Gemfile', <<-GEMFILE)
source 'https://rubygems.org'
gem 'rails', github: 'rails/rails'
gem 'arel', github: 'rails/arel'
gem 'sqlite3'
GEMFILE
system 'bundle'
end
-### Setting Up the WEBrick SSL Server on LocalHost
+Setting Up the WEBrick SSL Server on LocalHost
+==============================================
-With WEBrick as the default development server, one cannot just configure Rails to enable SSL, because WEBrick must be invoked with SSL support turned on. This means that modifying `config.ru` is necessary.
+With WEBrick as the default development server, one cannot just configure Rails
+to enable SSL, because WEBrick must be invoked with SSL support turned on. This
+means that modifying `config.ru` is necessary.
-WEBrick is a Rack-based server. The `config.ru` file is used by Rack-based servers to start the application.
@JuanitoFatas
JuanitoFatas / 15781
Last active August 29, 2015 14:02
source of changes in 15781
Setting Up the WEBrick SSL Server on LocalHost
==============================================
With WEBrick as the default development server, one cannot just configure Rails
to enable SSL, because WEBrick must be invoked with SSL support turned on. This
means that modifying `config.ru` is necessary.
WEBrick is a Rack-based server. The `config.ru` file is used by Rack-based
servers to start the application.
@JuanitoFatas
JuanitoFatas / attr_reader.html
Created June 21, 2014 03:35
Yard attr_reader rendered incorrect
<ul class="summary">
<li class="public ">
<span class="summary_signature">
<a href="#compare-instance_method" title="#compare (instance method)">- (Object) <strong>compare</strong> </a>
</span>
<span class="note title readonly">readonly</span>
<span class="summary_desc">
<div class="inline">
<p>class Benchmark::IPS::Job.</p>
@JuanitoFatas
JuanitoFatas / murmur.txt
Created June 23, 2014 09:57
MURMUR drinks
MURMUR
======
飲料
---
### 水果木耳露
冰糖木耳露
@JuanitoFatas
JuanitoFatas / 500.log
Created June 23, 2014 21:05
YouTube 500
500 Internal Server Error
Sorry, something went wrong.
A team of highly trained monkeys has been dispatched to deal with this situation.
If you see them, show them this information:
AB38WEP4JRdI_m4SFO2vFKPSuj3aFEwG3uopBpGPl8m2FrTp4DpsVRa2fT7s
4sgBLq8tCq0RY29fbUrN8dYjRC_A1yq8XyAk0xF8CWGf9IJsB0UuitmDmnyh
YB0lj3lHaPgfSmFz5BNbtjltGRjHwgexw0WvuKq-rvx0lJtt4PsbH6ZGzywG
@JuanitoFatas
JuanitoFatas / levenshtein_distance.rb
Last active August 29, 2015 14:03
Levenshtein Distance in Ruby using matrix
# Levenshtein Distance
# implementation given at http://en.wikipedia.org/wiki/Levenshtein_distance
# This file is in the public domain.
require 'matrix'
def levenshtein_distance str1, str2
str1_len = str1.size
str2_len = str2.size
width = str1_len + 1