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 | |
| """ | |
| Jest calls `node-notifier` using `notify({ timeout: false })`, which | |
| ends up being sent down to `notify-send` with `--expire-time false`. | |
| `notify-send` doesn't actually support this, which will write an error | |
| of "Cannot parse integer value 'false' for --expire-time" to stderr and | |
| exit with a non-zero status code. |
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 enable-bracketed-paste 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
| $ info thingie | |
| info: No menu item 'thingie' in node '(dir)Top' | |
| $ mkdir ~/info | |
| $ for f in ~/Repos/thingie/doc/thingie.info*; do ln -s $f ~/info; done | |
| $ ll ~/info | |
| total 8 | |
| drwxr-xr-x 2 user123 user123 4096 Jul 9 19:44 ./ |
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
| $ manpath | |
| /usr/local/man:/usr/local/share/man:/usr/share/man | |
| $ mkdir ~/man | |
| $ manpath | |
| /home/user123/man:/usr/local/man:/usr/local/share/man:/usr/share/man | |
| $ man thingie | |
| No manual entry for thingie |
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
| binding 'gtk-binding-tree-view' { | |
| bind 'Left' { 'expand-collapse-cursor-row' (0,0,0) } # fold | |
| bind 'Right' { 'expand-collapse-cursor-row' (0,1,0) } # expand | |
| } | |
| class 'GtkTreeView' binding 'gtk-binding-tree-view' |
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
| Transform: AWS::Serverless-2016-10-31 | |
| Parameters: | |
| Env: | |
| Type: String | |
| Default: test | |
| DomainName: | |
| Type: String | |
| Default: www.example.com |
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
| Transform: AWS::Serverless-2016-10-31 | |
| Resources: | |
| CDN: | |
| Type: AWS::CloudFront::Distribution | |
| Properties: | |
| DistributionConfig: | |
| # . . . | |
| DefaultCacheBehavior: | |
| # . . . |
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
| Parameters: | |
| Zone: {Type: String} | |
| Hostname: {Type: String} | |
| Distribution: {Type: String, Default: ''} | |
| ChallengeA: {Type: String, Default: ''} | |
| ChallengeB: {Type: String, Default: ''} | |
| CloudFrontDomain: {Type: String, Default: cloudfront.net.} | |
| CloudFrontHostedZone: {Type: String, Default: Z2FDTNDATAQYW2} | |
| ACMChallengeDomain: {Type: String, Default: acm-validations.aws.} |
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
| Parameters: | |
| Zone: {Type: String} | |
| Domain: {Type: String} | |
| DKIMPubKey: {Type: String} | |
| Resources: | |
| MX: | |
| Type: AWS::Route53::RecordSet | |
| Properties: | |
| HostedZoneId: !Ref Zone |
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
| { | |
| "hosting": { | |
| "rewrites": [ | |
| {"source": "**", "function": "handler"} | |
| ] | |
| } | |
| } |
NewerOlder