Skip to content

Instantly share code, notes, and snippets.

View tundal45's full-sized avatar
👻
there is more to life than coding

Ashish Dixit tundal45

👻
there is more to life than coding
View GitHub Profile

ruby-1.9.3-p392 cumulative performance patch for rbenv

(I guarantee nothing. No warranty I am not responsible blah blah blah. Seems to work great for me so far. Thanks to Tyler Bird who I forked this from.)

This installs a patched ruby 1.9.3-p392 with the railsexpress patchsets: https://github.com/skaes/rvm-patchsets

Requirements

ruby-1.9.3-p484 cumulative performance patch for rbenv

(I guarantee nothing. No warranty I am not responsible blah blah blah. Seems to work great for me so far. Thanks to Stanley Stuart who I forked this form & updated for p484 who originally forked it from Tyler Bird for p392)

This installs a patched ruby 1.9.3-p484 with the railsexpress patchsets: https://github.com/skaes/rvm-patchsets

Requirements

@tundal45
tundal45 / podcasts.md
Last active December 27, 2015 09:39 — forked from lmarburger/podcasts.md
Below is a subset of podcasts that I am currently subscribed to. I have broken them down to ones that I listen to every episode, even if it means I have to catch up & others that I only listen to selected episodes. I seem to update the list every time myself or someone on twitter is looking for a new podcast recommendation.
def get_grade(array)
sum = 0
array.each do |x|
sum += x
end
average = sum / array.length
case average
when 90...100
grade = 'A'
when 80...90