Skip to content

Instantly share code, notes, and snippets.

View itskingori's full-sized avatar
🚢
Shipping

King'ori Maina itskingori

🚢
Shipping
View GitHub Profile
@itskingori
itskingori / contact_us_email.html.erb
Last active January 19, 2019 01:48
Getting started quickly with Amazon Email Sending Service (SES) and Ruby on Rails. Test in Rails 4
<p>Hello!</p>
<div>
<%= @message %>
</div>
<p>-- <%= @fullname %> (<%= @email %>)</p>
# As used with CanCan and Devise
class ApplicationController < ActionController::Base
protect_from_forgery
include ErrorResponseActions
rescue_from CanCan::AccessDenied, :with => :authorization_error
rescue_from ActiveRecord::RecordNotFound, :with => :resource_not_found
before_filter :authenticate!
@itskingori
itskingori / preprocess_assets.rb
Last active June 22, 2016 10:31
Minify Jekyll Assets On GitHub Pages Using Sprockets
require 'sprockets'
# Get relevant paths
project_root = File.expand_path('..', File.dirname(__FILE__))
app_css_file = File.join(project_root, 'assets', 'stylesheets', 'application.css')
app_js_file = File.join(project_root, 'assets', 'javascripts', 'application.js')
# Initialize Sprockets
environment = Sprockets::Environment.new
environment.append_path(File.join(project_root, '_assets', 'javascripts'))
@itskingori
itskingori / loop_test.rb
Created March 25, 2014 12:10
Outputs each number from 1 to 100, however … when the number is a multiple of 3 print WAKKA instead of that number. When the number is a multiple of 5, print WAAAA instead of that number. For numbers which are multiples of 3 AND 5, print WAKKAWAAAA.
#!/usr/bin/env ruby
(1..100).each { |n|
puts n unless( n%3 == 0 || n%5 == 0)
puts 'WAKKA' if (n%3 == 0 && n%5 != 0)
puts 'WAAAA' if (n%5 == 0 && n%3 != 0)
puts 'WAKKAWAAAA' if (n%3 == 0 && n%5 == 0)
}
@itskingori
itskingori / mime_type_extenstions.txt
Created February 18, 2014 05:11
Extensions and the respective mime-types
# Text
text/cache-manifest manifest appcache;
text/css css;
text/html html htm shtml;
text/mathml mml;
text/plain txt;
text/vnd.sun.j2me.app-descriptor jad;
text/vnd.wap.wml wml;
text/x-component htc;
text/x-vcard vcf;
@itskingori
itskingori / elastic-beanstalk-delayed-jobs.md
Last active August 13, 2016 21:13 — forked from bhauman/delayed_job_eb_sysvinit
Attempt at creating a 'delayed_jobs' service on AWS EB

Delayed Jobs Service

# chkconfig: 2345 99 20
# description: Starts, restarts or stops delayed job processor
# servicename: delayed_jobs

This says that the random script should be started in levels 2, 3, 4, and 5, that its start priority should be 99, and that its stop priority should be 20.

@itskingori
itskingori / aws-helper.rb
Last active January 1, 2016 14:29
Use a canned policy to create a CloudFront signed URL in Rails (slight modification required for plain Ruby) ... includes method to create a download attachment URL as well (this one requires bucket and distribution configuration) i.e. using content disposition header with attachment
module Helper
def self.get_url_using_canned_policy(url, expires_in = 300)
# The date and time, in Unix time format (in seconds) and Coordinated
# Universal Time (UTC), that you want the URL to stop allowing access to
# the object. For example, January 1, 2013 10:00 am UTC converts to
# 1357034400 in Unix time format. For information about UTC, see RFC 3339,
# Date and Time on the Internet: Timestamps,
# http://tools.ietf.org/html/rfc3339.
@itskingori
itskingori / exercise12.php
Created December 20, 2013 07:02
User Input Through Forms + HTML
<!DOCTYPE html>
<html>
<head>
<title>Exercise 12: Forms + HTML</title>
</head>
<body>
<?php
// For this PHP exercise, first create an array called $months. Use the
// names of the months as keys, and the number of days for each month as
@itskingori
itskingori / exercise11.php
Last active December 31, 2015 22:09
User Input Through Forms
<!DOCTYPE html>
<html>
<head>
<title>Exercise 11: User Input</title>
</head>
<body>
<?php
// Create a page that accepts form the user ...
// a) First name
@itskingori
itskingori / exercise10.php
Created December 20, 2013 07:00
Function With Return Values
<!DOCTYPE html>
<html>
<head>
<title>Exercise 10: Functions with return values</title>
</head>
<body>
<?php
// Create 3 functions that do the following ...
// a) Calculate circumference of a circle ($radius as argument) – call the function ‘circle_circumference’