Skip to content

Instantly share code, notes, and snippets.

View dwilkins's full-sized avatar

David H. Wilkins dwilkins

View GitHub Profile
# /etc/dhcpd.conf
#
# Configuration for g_ether / usbpizero
# Only serves 1 address to the computer on the
# other end of the USB cable
# also referenced in /etc/netctl/usbpizero
#
subnet 192.168.7.0 netmask 255.255.255.0 {
range 192.168.7.150 192.168.7.150;
@dwilkins
dwilkins / enable_forwarding_masq
Created April 17, 2016 21:45
Enable Forwarding and Masq on the host linux computer
sudo sysctl net.ipv4.ip_forward=1
sudo iptables -t nat -A POSTROUTING -j MASQUERADE
#!/bin/bash
# Process a compressed rails log file and sort the SQL
# statements by frequency
# Requires - gzip, ansifilter, sed
echo $ARGC
COMMANDNAME=`basename $0`
if [ $# -lt "1" ]
then
@dwilkins
dwilkins / user.rb
Created July 11, 2017 20:09
User Model
class User < ActiveRecord::Base # model
dragonfly_accessor :photo
end
@dwilkins
dwilkins / users.yml
Created July 11, 2017 20:12
Users fixtures
<% binary_image = File.open("#{Rails.root}/test/fixtures/files/photo-one.png").read %>
<% image_uid = Dragonfly.app.store(binary_image) %>
<% image_name = Dragonfly.app.fetch(image_uid).name %>
john_doe:
username: jdoe
email: '[email protected]'
first_name: John
last_name: Doe
photo_uid: image_uid
photo_name: image_name