Skip to content

Instantly share code, notes, and snippets.

View alison985's full-sized avatar
🖤
#BLM

Alison (she/her) alison985

🖤
#BLM
View GitHub Profile
@erinkcochran87
erinkcochran87 / stitch-tap-doc-template.md
Last active June 6, 2019 19:09
Stitch Tap Documentation Template

Use this as a guide or a template for your tap's documentation. Remove a section if it's not applicable.


[tap_name]

Connecting [tap_name]

Requirements

We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 6.
Employee Name,EO 13770 Waiver,5 C.F.R. § 2635.502(d) Authorization,5 C.F.R. § 2635.503(c) Authorization,18 U.S.C. § 208(b)(1) Waiver,Nature of Waiver
All EOP Appointees,Paragraph 6,No,No,No,May participate in communications and meetings with news organizations regarding broad policy matters.
All WHO Commissioned Officers,Paragraph 6,No,No,No,May participate in communications and meetings with covered political organizations regarding broad policy matters and particular matters of general applicability to the extent authorized by the White House.
"Augustine, Rene",None,No,No,Yes,May fully participate in the Presidential appointee review process when financial interests are involved.
"Catanzaro, Michael",Paragraph 7,No,No,No,"May participate in broad policy matters and particular matters of general applicability relating to the Clean Power Plan, the WOTUS rule, and methane regulations."
"Conway, Kellyanne",Paragraph 6,No,No,No,"May participate in communications and meetings involving former clients which are po
<!-- use this in your CUSTOM CODE in FormAssembly -->
<script>
(function(w,d,s,c,n,a,b){w['PactSafeObject']=n;w[n]=w[n]||function(){(w[n].q=w[n].q||[]).push(arguments)}, w[n].on=function(){(w[n].e=w[n].e||[]).push(arguments)},w[n].once=function(){(w[n].eo=w[n].eo||[]).push(arguments)},w[n].off=function(){(w[n].o=w[n].o||[]).push(arguments)},w[n].t=1*new Date(); a=d.createElement(s),b=d.getElementsByTagName(s)[0];a.async=1;a.src=c;b.parentNode.insertBefore(a,b) })(window,document,'script','//vault.pactsafe.io/ps.min.js','_ps');
// EXAMPLE FORM ASSEMBLY FORM HOSTED AT:
// https://www.tfaforms.com/445070
// Site Access ID can be found at https://app.pactsafe.com/settings/account
_ps('create', '25b2b173-632a-4227-9877-31d2109d8c98');
@rgreenjr
rgreenjr / postgres_queries_and_commands.sql
Last active May 28, 2025 00:59
Useful PostgreSQL Queries and Commands
-- show running queries (pre 9.2)
SELECT procpid, age(clock_timestamp(), query_start), usename, current_query
FROM pg_stat_activity
WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%'
ORDER BY query_start desc;
-- show running queries (9.2)
SELECT pid, age(clock_timestamp(), query_start), usename, query
FROM pg_stat_activity
WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%'
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active May 31, 2025 19:19
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@pithyless
pithyless / gist:1208841
Created September 10, 2011 21:49
Install Python 2.7 (homebrew + pip + virtualenv) on Mac OS X Lion

Install Python

$ brew install readline sqlite gdbm
$ brew install python --universal --framework
$ python --version
Python 2.7

Symlinks...