Skip to content

Instantly share code, notes, and snippets.

@Bodacious
Bodacious / app_delegate.rb
Created February 7, 2017 12:37
RubyMotion Hello World example.
class AppDelegate
def hello_world_label
@hello_world_label ||= begin
frame = CGRectMake(20,200,280,40)
label = UILabel.alloc.initWithFrame(frame)
label.text = "Hello world"
label.textColor = UIColor.whiteColor
label.textAlignment = UITextAlignmentCenter
label
@Bodacious
Bodacious / example 1.rb
Created October 28, 2016 09:38
Adding gender-specific messages to your rails app with genderize
# Since Sarah is the object of this sentence
"Sarah is a new member, why not send #{@sarah.object} a message?"
@Bodacious
Bodacious / sass.sass
Created October 27, 2016 17:00
SASS script for creating quick colour pallette
$hue: 173;
$first-color: hsl($hue, 100%, 50%);
$second-color: complement($first-color);
.first-color {
background: $first-color;
}
.second-color {
background: $second-color;
}
@Bodacious
Bodacious / README.md
Last active May 13, 2016 16:46
How to find an average value, without having to store every data point

How to find an average value, without having to store every data point

This was a solution to a problem I was trying to solve on my webiste: how can I arrive at an average value over time, when new data is being provided, without having to store every datum.

I wrote this code to prove to myself that I wasn't crazy, and that this was indeed a valid way to calculate the mean.

@Bodacious
Bodacious / user.rb
Last active February 2, 2016 17:51
Sometimes I don't know why I bother writing comments in Ruby code...
# It's the class for users, silly.
class User
# Ummm, initializes a new user
def initialize(args)
@first_name = args[:first_name]
@last_name = args[:last_name]
end
# :|
@Bodacious
Bodacious / integer.rb
Created December 9, 2015 19:09
Another approach to fibonacci in Ruby
class Integer
# PHI - Some greek number
PHI = Rational(1836311903,1134903170).to_f
# Inverse of 1/PHI
I_PHI = -Rational(1, PHI).to_f
# Square root of 5
SQRT_5 = 5 ** 0.5
@Bodacious
Bodacious / fibonacci.rb
Created December 9, 2015 18:42
Method to return the nth value of the Fibonacci sequence
# PHI - Some greek number
PHI = Rational(610,377).to_f
# Negative inverse of PHI
I_PHI = -Rational(1, PHI).to_f
# Square root of 5
SQRT_5 = 5 ** 0.5
# Fibonacci value for given number x
@Bodacious
Bodacious / .gitconfig
Created December 4, 2015 15:40
My git config file
[diff]
tool = diff
algorythm = minimal
[color]
branch = auto
diff = auto
status = auto
interactive = auto
ui = true
pager = true
@Bodacious
Bodacious / results.txt
Last active October 22, 2015 10:54
Most efficient way of returning a constant string from a Ruby method
Rehearsal -------------------------------------------------
with freez 1.490000 0.010000 1.500000 ( 1.493176)
with constant 1.500000 0.000000 1.500000 ( 1.499597)
with new 2.060000 0.000000 2.060000 ( 2.064578)
---------------------------------------- total: 5.060000sec
user system total real
with freez 1.470000 0.000000 1.470000 ( 1.480206)
with constant 1.500000 0.000000 1.500000 ( 1.510912)
with new 2.030000 0.000000 2.030000 ( 2.038113)
@Bodacious
Bodacious / namespaceable_controller.rb
Last active October 20, 2015 10:35
Creating a "namespace" for Rails controllers
module NamespaceableController
extend ActiveSupport::Concern
included do
helper_method :namespace
end
private