Use this as a guide or a template for your tap's documentation. Remove a section if it's not applicable.
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 6.
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
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 |
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
<!-- 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'); | |
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
-- 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%' |
Install Python
$ brew install readline sqlite gdbm
$ brew install python --universal --framework
$ python --version
Python 2.7
Symlinks...