Execute a numerically-prefixed plan file from the plans folder based on the provided argument.
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
require 'active_support/concern' | |
# The {FiltersConcern} provides a <tt>filter_params</tt> scope which takes a hash <tt>{ col1: term, col2: term }</tt> | |
# | |
# see app/assets/javascripts/filterable.js | |
# | |
# == type sensitive filtering | |
# * strings - fuzzy search of %term% | |
# * dates - | |
# * July - => month |
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
#!/usr/bin/env ruby | |
# # Andy Fortune | |
# | |
# A personal quote and wisdom generator that displays random inspirational quotes | |
# from various sources including Lao Tzu, programming principles, and life philosophy. | |
# | |
# ## Usage | |
# ```bash | |
# andyfortune # Display a random quote |
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
#!/usr/bin/env ruby | |
# # Git Log All | |
# | |
# A comprehensive git log analysis tool that generates detailed commit reports | |
# with time-based filtering and author-specific views. Perfect for reviewing | |
# development activity across different time periods. | |
# | |
# ## Features | |
# - Time-based commit analysis (day, week, month, year) |
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
# ============================================================================= | |
# BASIC SETTINGS | |
# ============================================================================= | |
set -s escape-time 1 | |
set -g base-index 1 | |
setw -g pane-base-index 1 | |
set -g history-limit 10000 | |
setw -g automatic-rename off | |
set-option -g focus-events on |
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
set -s escape-time 1 | |
set -g base-index 1 | |
setw -g pane-base-index 1 | |
# un-do default | |
unbind C-b | |
unbind C-d |
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
#!/usr/bin/env python3 | |
import sys | |
import requests | |
import os | |
import json | |
LINEAR_API_KEY = os.environ.get('LINEAR_API_KEY') | |
TEAM_ID = os.environ.get('LINEAR_TEAM_ID') | |
if not LINEAR_API_KEY or not TEAM_ID: |
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
#!/usr/bin/env ruby | |
# Encoding: utf-8 | |
# | |
# This takes a csv file of values, and a txt file as a template | |
# and sends out a pile of customized emails. | |
# | |
require 'csv' | |
require 'mail' |
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
/* global $ */ | |
/** | |
* ajax-frames v1.1.0 | |
* pre-requisites: jquery | |
* compatible with: rails-ujs | |
* | |
* Exports: | |
* - ajax_frames_init(container) - Automatically runs on document ready for the entire document. | |
* - load_ajax_frames_multi(url) | |
* |
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
#!/usr/bin/env ruby | |
require 'thor' | |
require 'uri' | |
require 'net/http' | |
require 'json' | |
# > llme joke | |
# Sure! Here's one: | |
# |
NewerOlder