Dummy Simple Blog Generator

Its Dummy Simple - at least conceptually...

Home About Contact Archive Tags

My Second Blog Post

November 19, 2024 ยท 1 min read
blogging weirdhats

Welcome to My Second Blog Post

This is my first blog post using a static site generator.

List

  1. Item One
  2. Item Two
  3. Item Three

Code Example


python
get_venv_python_version() {
    local venv_path="$1"
    local version=""

    if [ -f "$venv_path/.python-version" ]; then
        version=$(cat "$venv_path/.python-version")
    elif [ -f "$venv_path/bin/python" ]; then
        version=$("$venv_path/bin/python" --version 2>&1)
    else
        version="Unknown"
    fi

    echo "$version"
}

Dummy Simple Venv Manager

Dummy Simple Distrobox Manager

Created using DummySimpleBlogGenerator