async function sync(dir) {
const jwt = await loginWithSupabase(); // opens browser once
const remote = await fetchManifest(jwt);
const local = await buildLocalMap(dir, remote); // reuse cache
const diff = diffLocalVsRemote(local, remote); // { upload, delete }
id | title | desc | updated | created |
---|---|---|---|---|
s0o4y7x0hii013s5odjdobs |
Textpress |
1745186728475 |
1745186544833 |
Plain Text Publishing
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
sources: | |
source/a/dd_agent: | |
type: datadog_agent | |
address: 0.0.0.0:8020 | |
multiple_outputs: true | |
sinks: | |
sink/l/dd: | |
site: ${DD_SITE} | |
type: datadog_logs | |
inputs: |
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
AWSTemplateFormatVersion: '2010-09-09' | |
Description: CloudFormation template to create an Interface VPC Endpoint for integration with Nimbus Ingestion. | |
Parameters: | |
VpcId: | |
Type: AWS::EC2::VPC::Id | |
Description: The ID of the VPC (us-east-1) in which the endpoint and dependant resources will be created. | |
SubnetIds: | |
Type: List<AWS::EC2::Subnet::Id> | |
Description: "List of Subnet IDs where the endpoint will be available." |
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
# -*- coding: utf-8 -*- | |
import sys | |
import json | |
from typing import Optional, Tuple | |
import pprint | |
from log_filters import filter_logs_by_source_type | |
class MergePolicy: |
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
// 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 |
- NOTE: the links don't work. you'll need to go into the wiki and use lookup to find the note until we fix some issues in the markdown export
- code should follow Code Conventions
- circular dependency check: make sure your code is not introducing new circular dependencies in plugin-core. See Avoiding Circular Dependencies.
- if its your first pull request to Dendron, watch out for the CLA bot that will ask you to agree to Dendron's CLA
- if its your first pull request and you're on our Discord, add your discord handle so that we can award you the horticulturalist role when the PR is merged
- make sure your branch names adhere to our branch style
- make sure the commit message follows Dendron's commit style
- if this pull request is addressing an existing issue, make sure to link this PR to the issue that it is resolving.
- Create a personal workspace using Initialize Workspace
- initialize with a blank vault
- if you want to version control the vault, run Vault Convert to add a git repository to this vault
- repeat this process with other vaults as needed (we recommend just starting off with a single vault), see reasons for going multi-vault here
- add your workspace to version control by running the following:
- Initialize a git repo
- initialize with a blank vault
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
name: Dendron | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest |
NewerOlder