This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo sysctl net.ipv4.ip_forward=1 | |
sudo iptables -t nat -A POSTROUTING -j MASQUERADE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class User < ActiveRecord::Base # model | |
dragonfly_accessor :photo | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% 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 |
OlderNewer