tar [bundle-flags <args] [<file> | <pattern> ...]
- -c: create new archive
- -d: find difference bwt files in the archive
- -v: verbose
name: Dendron | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest |
// Place your key bindings in this file to override the defaults | |
[ | |
// The following are Kevin's keybindings for VSCode | |
// They are made available under CC BY 4.0 | |
// | |
// To navigate | |
// `==` denote sections | |
// `---` denotes subsections | |
// | |
// == Dendron |
version: 1 | |
schemas: | |
- id: pro | |
desc: project | |
parent: root | |
namespace: true | |
template: | |
id: pro.template | |
type: note | |
children: |
version: 1 | |
schemas: | |
- id: lang | |
title: language | |
desc: programming language | |
parent: root | |
pattern: l | |
data: | |
namespace: true | |
children: |
# schema for journals | |
# the following schema will match the follwoing | |
# | |
# journal | |
# journal.2020 | |
# journal.2020.09 | |
# journal.2020.09.12 | |
# journal.2020.09.12.foo.md | |
version: 1 |
This Contribution License Agreement (“Agreement”) is agreed to by the party signing below (“You”), and conveys certain intellectual property and license rights to Dendron Inc. and its affiliates (“Dendron”) for Your contributions to Dendron open source projects. This Agreement is effective as of the latest signature date below.
“Code” means the computer software code, whether in human-readable or machine-executable form, that is delivered by You to Dendron under this Agreement.
“Project” means any of the projects owned or managed by Dendron in which software is offered under a license approved by the Open Source Initiative (OSI) (www.opensource.org) and documentation offered under an OSI or a Creative Commons license (https://creativecommons.org/licenses).
This is a test git |
export declare class CfnBucket extends cdk.CfnResource { | |
/** | |
* The CloudFormation resource type name for this resource class. | |
*/ | |
static readonly CFN_RESOURCE_TYPE_NAME = "AWS::S3::Bucket"; | |
/** | |
* @cloudformationAttribute Arn | |
*/ | |
readonly attrArn: string; |
const bucket = new Bucket(this, 'fooBucket'); | |
const fn = new lambda.Function(this, 'fooFunc', { | |
runtime: lambda.Runtime.NODEJS_10_X, | |
handler: 'lambda.handler', | |
code: lambda.Code.asset('functions/fooFunc'), | |
timeout: Duration.seconds(60) | |
}); | |
bucket.addEventNotification( |