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.
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
# | |
# Configuration: | |
# - $ gem install ruby-trello | |
# - updated settings in credentials.yml | |
# | |
require 'trello' | |
require 'yaml' | |
require 'pry' | |
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 | |
### | |
# | |
# Mailx for Gmail Command Line for Ubuntu | |
# Version 1.0 | |
# http://klenwell.com/is/UbuntuCommandLineGmail | |
# | |
# USAGE: | |
# sudo ubuntu_gmail_mailx.sh install |
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
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, |