Skip to content

Instantly share code, notes, and snippets.

View 213edu's full-sized avatar

Ryan 213edu

View GitHub Profile
@rouzbeh84
rouzbeh84 / moving-violations.md
Last active October 28, 2019 05:47
traffic-school-info

Chapter 1: Introduction

Welcome and thank you for choosing the California DMV licensed 5 Dollar Traffic School Stop Traffic Violator School. We know it's not fun to get a traffic ticket, but we want your traffic school experience to be painless, educational, and convenient. Our course uses plain English, gives you lots of examples, and doesn't bog you down with too many details. We want to change the way you are driving, and we feel the best way to do this is by changing your motivation to drive better. Rather than just tell you what you should be doing on the road, we try to give you the internal motivation to do the right thing. We also repeat the same concepts several times throughout the course, to help you pass the final exam in the end.

COURSE OBJECTIVES

Reduce Traffic Collisions

Traffic collisions can be life-altering events that in many cases could have been avoided. In this course we will cover the different ways in which you can avoid traffic collisions and become a safer driver. What

@TechFounder
TechFounder / style.css
Created June 27, 2016 03:05
Buddha bless your code to be bug free
//
// _oo0oo_
// o8888888o
// 88" . "88
// (| -_- |)
// 0\ = /0
// ___/`---'\___
// .' \\| |// '.
// / \\||| : |||// \
// / _||||| -:- |||||- \
@etrepum
etrepum / helpers.rb
Created March 13, 2014 00:29
Sinatra helper to add a url_escape method
helpers do
def escape(text)
Rack::Utils.escape_html(text)
end
def url_escape(text)
chunks = []
after = text
while after != "" do
before, match, after = after.partition(URI.regexp)
if before != ""