Skip to content

Instantly share code, notes, and snippets.

View tatwell's full-sized avatar

Tom Atwell tatwell

View GitHub Profile
@tatwell
tatwell / actions.rb
Last active October 21, 2018 18:24
Trello Work-In-Progress Queue
#
# Configuration:
# - $ gem install ruby-trello
# - updated settings in credentials.yml
#
require 'trello'
require 'yaml'
require 'pry'
@tatwell
tatwell / ubuntu_gmail_mailx.sh
Created July 26, 2017 03:18
Mailx for Gmail Command Line for Ubuntu
#!/bin/bash
###
#
# Mailx for Gmail Command Line for Ubuntu
# Version 1.0
# http://klenwell.com/is/UbuntuCommandLineGmail
#
# USAGE:
# sudo ubuntu_gmail_mailx.sh install
@tatwell
tatwell / job-query.sql
Last active July 23, 2019 02:27
Sample MySQL query for ideal job.
SELECT
# Company details
co.name AS company,
# Job details
job.overview AS overview,
job.title AS title,
job.duration AS duration,
job.salary AS salary,
job.annual_pto_days AS pto,
@tatwell
tatwell / Demo-Ruby-Stack-Overflow-API.md
Last active July 8, 2016 16:47
Ruby Stack Overflow Script (with rspec test)

Ruby Stack Overflow

A simple script that finds overlooked questions that may deserve to be answered on Stack Overflow using the Stack Overflow API. It also includes a basic rspec test.