Skip to content

Instantly share code, notes, and snippets.

View avinashbot's full-sized avatar

Avinash Dwarapu avinashbot

View GitHub Profile
@avinashbot
avinashbot / Gemfile
Created April 10, 2017 03:35
Redd Webapp Example (from https://redd.it/61p1hj)
source 'https://rubygems.org'
gem 'sinatra', '2.0.0.rc2' # Currently the latest Sinatra.
gem 'redd', '~> 0.8'
@avinashbot
avinashbot / main.go
Created March 7, 2017 20:40
Find hex keywords in MD5 hashes
package main
import (
"bytes"
"crypto/md5"
"fmt"
"math"
)
var symbols = []byte{
require 'benchmark'
class MethodMissing
attr_reader :attributes
def initialize(attributes)
@attributes = attributes
end
def method_missing(prop, *args, &block)