Settings for locking down a server with UFW
# delete all existing rules
sudo ufw reset
# enable ufw
sudo ufw enable
# defult deny everything incoming
Settings for locking down a server with UFW
# delete all existing rules
sudo ufw reset
# enable ufw
sudo ufw enable
# defult deny everything incoming
{ | |
"$schema": "https://biomejs.dev/schemas/1.9.2/schema.json", | |
"vcs": { | |
"enabled": true, | |
"clientKind": "git", | |
"useIgnoreFile": true | |
}, | |
"files": { | |
"ignoreUnknown": false, | |
"ignore": [ |
#!/bin/bash | |
# Exit immediately if a command exits with a non-zero status | |
set -e | |
# Function to display error messages and exit | |
error_exit() { | |
echo "Error: $1" >&2 | |
exit 1 | |
} |
# A top-level `type: struct` is a `Schema` | |
# These can be serialized into a deltalake::Schema struct using serde_yaml in rust | |
# let schema: deltalake::Schema = serde_yaml::from_str(r#"<your yaml>"); | |
--- | |
# A struct with primitive fields | |
type: struct | |
fields: | |
- name: String | |
type: string | |
nullable: true |
# https://developers.cloudflare.com/logs/get-started/enable-destinations/r2/ | |
data "cloudflare_api_token_permission_groups" "all" { | |
resource "cloudflare_api_token" "logpush_r2_token" { | |
name = "logpush_r2_token" | |
policy { | |
permission_groups = [ | |
data.cloudflare_api_token_permission_groups.all.permissions["Workers R2 Storage Write"], |
Assign flags right after an import to filter out the obviously bad shots and ones you'd like to keep. Use your first instinct and leave undecided ones as unflagged.
P
): In focus, eyes open, good positioningX
): Out of focus, blurry motion, eyes closedU
):implementation("com.expediagroup:graphql-kotlin-spring-server:3.7.0") |
version: '3.7' | |
services: | |
dynamodb-local: | |
image: amazon/dynamodb-local:latest | |
container_name: dynamodb-local | |
ports: | |
- "8000:8000" | |
dynamodb-admin: | |
image: aaronshaf/dynamodb-admin |
print("Hello, World!) |