Date: 2026-02-11
| #!/bin/bash | |
| # | |
| # Hetzner Cloud Server Info & Cost Optimizer | |
| # | |
| # Description: | |
| # Fetches all servers from your Hetzner Cloud account and analyzes their pricing. | |
| # For each server, it identifies cheaper server types with equal or better specs. | |
| # Results are exported to a tab-separated file (servers.txt) with cost savings. | |
| # | |
| # Setup: |
A breach in your password manager could be catastrophic, so securing it is non-negotiable. This guide covers the essentials and some pro-level tricks to make your account a fortress. Let’s dive in!
Your master password is the linchpin of your Bitwarden security. If it falls, everything does—so let's make it unbreakable.
- Length: Aim for 20+ characters. The longer, the better—each character ramps up the cracking difficulty.
- Complexity: Blend uppercase, lowercase, numbers, and special characters (e.g., @, #, &).
-
Building a Second Brain: The Book - The step-by-step guide to building a Second Brain. Based on 10+ years of research & experiments with organizing our digital lives & improving our productivity.
-
Building a Second Brain: The Definitive Introductory Guide | Forte Labs - (2023/05/01) This is an introduction to Building a Second Brain, the proven method to organize your digital life and unlock your creative potential.
| # typed: strict | |
| # frozen_string_literal: true | |
| require "base32" | |
| require "securerandom" | |
| require "ulid" | |
| # A type to represent UUIDs. Particularly useful for annotating fields in API | |
| # representations or Sorbet parameters to help prevent accidentally mixing up | |
| # UUIDs and EIDs as they're being passed around as loose strings. |
| #!/bin/bash -e | |
| # Stash the staged files if any. | |
| NEEDS_UNSTASH=0 | |
| if ! git diff --staged --exit-code >/dev/null; then | |
| echo -ne '\033[1;32m' | |
| echo -n 'Stashing the staged files' | |
| echo -e '\033[0m' | |
| git stash | |
| NEEDS_UNSTASH=1 |
| Version | Link |
|---|---|
| ECMAScript 2015 - ES2015 - ES6 | All Features List |
| ECMAScript 2016 - ES2016 - ES7 | All Features List |
| ECMAScript 2017 - ES2017 - "ES8" | All Features List |
| ECMAScript 2018 - ES2018 - "ES9" | All Features List |
| ECMAScript 2019 - ES2019 - "ES10" | All Features List |
| ECMAScript 2020 - ES2020 - "ES11" | All Features List |
How to run examples:
- Run $ createdb nplusonedb to create DB
- Run specs $ rspec demo.rb
| #!/bin/bash | |
| ### | |
| ### my-script — does one thing well | |
| ### | |
| ### Usage: | |
| ### my-script <input> <output> | |
| ### | |
| ### Options: | |
| ### <input> Input file to read. | |
| ### <output> Output file to write. Use '-' for stdout. |