Skip to content

Instantly share code, notes, and snippets.

@ftijan
ftijan / DynamoDB-entities-dotnet.md
Last active October 27, 2025 02:16
DynamoDB entity hierarchy example in .Net

As Generated by ChatGPT, with small edits added

DynamoDB - Important fields:

Attribute Type Example Purpose
PK String ACCT#4459 Primary Key - Groups all items for an account
SK String BATCH#20251025A#TX#7781 Sort Key - Orders items inside account
Status String "Completed" GSI part 1 - For filtering or secondary index
CreatedAt ISO 8601 "2025-10-25T13:45:00Z" GSI part 2 - For time-range queries
@ftijan
ftijan / MSCloudAppArchitectureSamples.md
Created October 6, 2023 14:11
MS Cloud App Architecture Samples

MS Cloud App Architecture Samples Links

@ftijan
ftijan / .tmux.conf
Created April 14, 2023 23:03
A simple tmux config file
# Remap keys
unbind-key C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# Improve colors
set -g default-terminal "xterm-256color"
# Set scrollback buffer to 10000
set -g history-limit 10000
@ftijan
ftijan / .vimrc
Last active May 25, 2024 00:45
A simple vim config file
" basic vi settings
set number " line numbers
set numberwidth=2 " line numbers width
set tabstop=2 " tabstop
set shiftwidth=2 " indentation
set smarttab " adjust tab key presses
set softtabstop=2 " 2-column tabs
set mouse=a " use mouse
set encoding=UTF-8 " set default encoding to utf-8
set background=dark " set background color (used for status line)