Run localstack docker:
docker run -d --rm \
-p 4566:4566 -p 4510-4559:4510-4559 \
--name localstack \
localstack/localstack
Add aws cli config:
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
void action(char *a, char *b) __attribute__((nonnull(2))); | |
void action(char *a, char *b) { | |
if (a != NULL) { | |
printf("%s\n", a); | |
} |
// You can edit this code! | |
// Click here and start typing. | |
package main | |
import "fmt" | |
type IFeature interface { | |
GetPrice() int | |
} |
package main | |
import ( | |
"fmt" | |
"log" | |
"go.etcd.io/bbolt" | |
) | |
func main() { |
add_newline = false | |
format = "$sudo$username[](bg:#D81E5B fg:#82264f)$directory[](bg:#E23E58 fg:#D81E5B)$git_branch$git_commit$git_state$git_metrics[](fg:#E23E58 bg:#0E131F)$fill[](bg:#0E131F fg:#18212b)$nix_shell[](bg:#18212b fg:#2e294e)$status[](bg:#2e294e fg:#633359)$cmd_duration[](bg:#633359 fg:#973c64)$jobs[](bg:#973c64 fg:#E23E58)$git_status$line_break$character" | |
[character] | |
error_symbol = "[ ](red)" | |
format = "$symbol" | |
success_symbol = "[ ](purple)" | |
vimcmd_symbol = "[ ](green)" | |
[cmd_duration] |
// gcc a.c | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
void clean_name(char **name) { | |
printf("clean clean!"); | |
free(*name); | |
} |
#!/bin/sh | |
# Iterate over a csv file and aggregate items. | |
# in BEGIN we define global variables. | |
# in the middle block we define the logic. | |
# in the END we define the conclusion logic like prints etc. | |
# NR>1 means ignore the first line. | |
awk -F "," 'BEGIN { | |
delete visited_items; | |
} | |
NR>1 { |
{ pkgs ? import <nixpkgs> {} }: | |
# { pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-23.11.tar.gz") {} }: | |
with pkgs; | |
mkShell { | |
nativeBuildInputs = [ | |
]; |
{ | |
"TableName": "Users", | |
"KeySchema": [{ | |
"AttributeName": "ID", | |
"KeyType": "HASH" | |
}], | |
"AttributeDefinitions": [{ | |
"AttributeName": "ID", | |
"AttributeType": "S" | |
}], |
Run localstack docker:
docker run -d --rm \
-p 4566:4566 -p 4510-4559:4510-4559 \
--name localstack \
localstack/localstack
Add aws cli config:
cmake_minimum_required(VERSION 3.25.0) | |
project(HelloWorld) | |
# Enable for IDE | |
set(CMAKE_EXPORT_COMPILE_COMMANDS ON) | |
# Download thirdparty | |
include(FetchContent) | |
FetchContent_Declare( | |
tomlplusplus |