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
goodPBContentTypes = { | |
['public.png']=true, | |
['public.utf8-plain-text']=true, | |
['public.utf16-external-plain-text']=true, | |
['public.utf16-plain-text']=true | |
} | |
generalPBWatcher = hs.pasteboard.watcher.new(function(v) | |
print(string.format("General Pasteboard Contents: %s", v)) | |
generalPBWatcher:stop() |
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
2020/06/12 20:04:05 [INFO] Terraform version: 0.12.24 | |
2020/06/12 20:04:05 [INFO] Go runtime version: go1.12.13 | |
2020/06/12 20:04:05 [INFO] CLI args: []string{"/home/docker/.tfenv/versions/0.12.24/terraform", "plan", "-var-file=dev.terraform.tfvars", "-var", "deployment=auto", "-out=terraform.plan", "-parallelism=1"} | |
2020/06/12 20:04:05 [DEBUG] Attempting to open CLI config file: /data/jenkins/workspace/re_CPE-692_conformance_pack_just/.terraformrc | |
2020/06/12 20:04:05 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2020/06/12 20:04:05 [INFO] CLI command args: []string{"plan", "-var-file=dev.terraform.tfvars", "-var", "deployment=auto", "-out=terraform.plan", "-parallelism=1"} | |
2020/06/12 20:04:05 [TRACE] Meta.Backend: built configuration for "s3" backend with hash value 1606923757 | |
2020/06/12 20:04:05 [TRACE] Preserving existing state lineage "17a4821b-ee26-6355-3e80-95c0aec57eab" | |
2020/06/12 20:04:05 [TRACE] Preserving existing state lineage "17a4821b-ee26-6355-3e80-95c0aec57eab" | |
2020/06/12 20:04:05 |
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
type Foobar = 'FOO' | 'BAR'; | |
interface SomeInterface<T extends X, X extends string=Foobar> { | |
amember: T; | |
[key: string]: string; // this really has to stay | |
} | |
// let's test it |
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
// ==UserScript== | |
// @name Top 3 apps always visible | |
// @namespace Doo:Gmail | |
// @description Moves top 3 apps from drop down back to the top level | |
// @include https://mail.google.com/* | |
// @version 1 | |
// @grant none | |
// @require https://code.jquery.com/jquery-2.1.1.min.js | |
// ==/UserScript== |
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
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<body> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script> | |
var w = 960, | |
h = 500, | |
nodes = [], | |
node; |