Store it at .helix/languages.toml
.
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
version: '3.6' | |
services: | |
# Although the author recommends performing a link to reference this container as postgres, | |
# we could simply set the name as postgres. Also, link is a legacy flag. | |
postgres: | |
image: arminc/clair-db | |
clair: | |
image: arminc/clair-local-scan |
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
{ | |
description = "virtual environments"; | |
inputs.devshell.url = "github:numtide/devshell"; | |
inputs.flake-utils.url = "github:numtide/flake-utils"; | |
outputs = { self, flake-utils, devshell, nixpkgs }: | |
flake-utils.lib.eachDefaultSystem (system: { | |
devShell = | |
let |
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
{ | |
"json": { | |
}, | |
"markdown": { | |
"lineWidth":120, | |
}, | |
"excludes": [ | |
], | |
"plugins": [ | |
"https://plugins.dprint.dev/markdown-0.16.3.wasm" |
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
use aws_config::{meta::region::RegionProviderChain, BehaviorVersion, SdkConfig}; | |
use aws_sdk_ec2::Client; | |
const DEFAULT_REGION: &str = "us-east-1"; | |
const INSTANCE_ID_STATUS: &str = "i-0d10de49d69d7ed57"; | |
const INSTANCE_ID_START: &str = "i-06360477f59dd461d"; | |
enum InstanceStatus { | |
IP, | |
Status, |
OlderNewer