Skip to content

Instantly share code, notes, and snippets.

View ukd1's full-sized avatar

Russell Smith ukd1

View GitHub Profile
esphome:
name: pool-sensor
esp32:
board: heltec_wifi_lora_32_V2
framework:
type: arduino
logger:
class MyModel
def my_column
if self.has_attribute?(:my_column_JSON)
self.my_column_JSON
else
self.attributes[:my_column]
end
end
def my_column=(value)
% dig rainforest.dev
; <<>> DiG 9.10.6 <<>> rainforest.dev
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 39596
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1
;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 1452
@ukd1
ukd1 / decrypt.sh
Created November 15, 2013 18:59
Super simple shell scripts we use at www.rainforestqa.com for encrypting / decrypting / updating our Heroku apps with private environment variables
#!/bin/bash
gpg qa.txt.asc
gpg staging.txt.asc
gpg production.txt.asc
function faucet(session) {
// send $0.10 USD at current exchange rates
let amt = 0.1
let count = (session.get('count') || 0) + amt
session.set('count', count)
Fiat.fetch().then((toEth) => {
session.sendEth(toEth.USD(amt))
sendMessage(session, `Sent ${amt} 💰🤑💰`)
class A
def version
self.class::VERSION || 1
end
end
class B < A
VERISON = 2
end
docker run --rm -it -v "$(pwd)":/app -w /app crystallang/crystal:latest sh -c 'crystal build --release src/hello.cr'
@ukd1
ukd1 / http_proxy.go
Created November 5, 2014 17:49
A simple http proxy in go
package main
import (
"log"
"net/http"
"net/http/httputil"
)
func main() {
director := func(req *http.Request) {
@ukd1
ukd1 / pca.js
Last active March 28, 2016 17:56
use webtask.io + twilio to find things on PCA fast.
var request = require('request');
return function (context, callback) {
var required_params = ['TWILIO_AUTH_TOKEN', 'TWILIO_ACCOUNT_SID', 'TWILIO_NUMBER', 'SEARCH', 'TO'];
for (var p in required_params)
if (!context.data[required_params[p]])
return callback(new Error('The `' + required_params[p] + '` parameter must be provided.'));
function message(to, message) {
request({
@ukd1
ukd1 / sql
Last active December 26, 2015 09:09
Carlos
clients
- id
- email
client_plans
- id
- client_id
- plan_id
- date_started
- date_ended