Skip to content

Instantly share code, notes, and snippets.

View etrepum's full-sized avatar
😎
Currently retired

Bob Ippolito etrepum

😎
Currently retired
View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@etrepum
etrepum / ipynb.ipynb
Created November 1, 2018 03:30
Solve for wings
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
ruby '2.2.4'
source 'https://rubygems.org'
gem 'numbers_in_words'
gem 'money'
@etrepum
etrepum / index.html
Created August 18, 2015 01:51
jPoYOy
<!DOCTYPE html>
<html>
<head>
<title>404 Fig Not Found</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href='http://fonts.googleapis.com/css?family=Orbitron:900' rel='stylesheet' type='text/css'>
<style>
body {
background-color: #000;
margin: 0;
#!/usr/bin/env bash
set -e
DEEPDREAM="${HOME}/Library/DeepDream"
BREW_PREFIX="/usr/local"
join () {
local IFS="$1"
shift
echo "$*"
#!/usr/bin/env python
import sys
import json
def transform(obj):
if isinstance(obj, dict):
# Transform objects in-place
for k, v in obj.iteritems():
# Transform the value
v = transform(v)
@etrepum
etrepum / SomethingAwful.hs
Last active August 29, 2015 14:22
Code that probably should not be written! :)
{-# LANGUAGE DeriveGeneric, TypeFamilies, FlexibleInstances,
TypeSynonymInstances, TypeOperators, RankNTypes,
FlexibleContexts #-}
import GHC.Generics
data Product = Product {
_product_id :: Integer,
_product_name :: String,
_product_price :: Integer
} deriving (Eq, Show, Generic)
@etrepum
etrepum / index.html
Last active August 29, 2015 14:07
CSS with dogs
<!DOCTYPE html>
<html>
<head>
<title>CSS and dogs</title>
<link href='http://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>
<style>
body {
background-color: lightgray;
}