The intent is to define terse, standards-supported names for AWS regions.
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
| gulp.task "version", (callback) -> | |
| async.series [ | |
| (cb) -> command("git rev-parse --abbrev-ref HEAD", cb) # branch | |
| (cb) -> command("git describe --always --dirty", cb) # hash | |
| (cb) -> command("git rev-list --count HEAD", cb) # build | |
| ], (err, results) -> | |
| info = | |
| branch: results[0] |
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
| (add-hook 'after-init-hook | |
| (lambda () | |
| (setq load-path-for-require-org load-path) | |
| ;; configure org-mode if it's available | |
| (if (require 'org nil t) | |
| (progn | |
| (add-auto-mode ".org" 'org-mode) | |
| (add-hook 'org-mode-hook | |
| (lambda () | |
| (org-autolist-mode) |
This file has been truncated, but you can view the full file.
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
| { | |
| "APIGatewayServiceRolePolicy": { | |
| "Arn": "arn:aws:iam::aws:policy/aws-service-role/APIGatewayServiceRolePolicy", | |
| "AttachmentCount": 0, | |
| "CreateDate": "2019-10-22T18:22:01+00:00", | |
| "DefaultVersionId": "v6", | |
| "Document": { | |
| "Statement": [ | |
| { |
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
| ;;; ox-confluence-en.el --- Enhanced Confluence Wiki Back-End for Org Export Engine | |
| ;; Copyright (C) 2015, Correl Roush | |
| ;; Author: Correl Roush <[email protected]> | |
| ;; Keywords: outlines, confluence, wiki | |
| ;; This file is not part of GNU Emacs. | |
| ;; This program is free software: you can redistribute it and/or modify |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>PayloadContent</key> | |
| <array> | |
| <dict> | |
| <key>IKEv2</key> | |
| <dict> | |
| <key>AuthName</key> |
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
| import yaml | |
| from yaml.constructor import ConstructorError | |
| try: | |
| from yaml import CLoader as Loader | |
| except ImportError: | |
| from yaml import Loader | |
| def no_duplicates_constructor(loader, node, deep=False): |
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
| """ | |
| Jinja extension adding support for {% error %} tag | |
| that allows to raise exceptions directly from templates. | |
| """ | |
| from jinja2 import TemplateAssertionError | |
| from jinja2.ext import Extension | |
| from jinja2.nodes import CallBlock, Const | |
| class ErrorExtension(Extension): |
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
| #!/bin/sh | |
| # | |
| # Forwards SSH agent into a Docker container running in the active | |
| # docker-machine | |
| # | |
| PROGNAME=$(basename $0) | |
| NAME=$(docker-machine active) |