Class | Slug | RAM | CPU | Disk | Transfer | Price Monthly | Price Hourly |
---|---|---|---|---|---|---|---|
Basic | s-1vcpu-512mb-10gb | 0.5 GB | 1 | 10 GB | 0.5 TB | $4 | $0.00595 |
Basic | s-1vcpu-1gb | 1 GB | 1 | 25 GB | 1 TB | $6 | $0.00893 |
Basic AMD | s-1vcpu-1gb-amd | 1 GB | 1 | 25 GB | 1 TB | $7 | $0.01042 |
Basic Intel | s-1vcpu-1gb-intel | 1 GB | 1 | 25 GB | 1 TB | $7 | $0.01042 |
Basic Intel | s-1vcpu-1gb-35gb-intel | 1 GB | 1 | 35 GB | 1 TB | $8 | $0.0119 |
Basic | s-1vcpu-2gb | 2 GB | 1 | 50 GB | 2 TB | $12 | $0.01786 |
Basic AMD | s-1vcpu-2gb-amd | 2 GB | 1 | 50 GB | 2 TB | $14 | $0.02083 |
Basic Intel | s-1vcpu-2gb-intel | 2 GB | 1 | 50 GB | 2 TB | $14 | $0.02083 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Run this in console, keeps hideable left nav column chat history in place. | |
// "Works" as of 9/29/23 | |
function updateClassName(element) { | |
if (element.className === 'flex flex-1 gap-4 text-base mx-auto md:gap-6 gizmo:gap-3 gizmo:md:px-5 gizmo:lg:px-1 gizmo:xl:px-5 md:max-w-3xl }') { | |
element.className = 'flex flex-1 gap-4 text-base mx-auto md:gap-6 gizmo:gap-3 gizmo:md:px-5 gizmo:lg:px-1 gizmo:xl:px-5 md:max-w-5xl }'; | |
} | |
} | |
// Find the parent div first | |
const parentDivs = document.querySelectorAll('div.p-4.justify-center.text-base.md\\:gap-6.md\\:py-6.m-auto'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Django-related shell functions for zsh | |
# Run development server | |
function runserver() { | |
poetry run python ./manage.py runserver "$@" | |
} | |
# Run tests | |
function runtests() { | |
poetry run python ./manage.py test "$@" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Define source and destination directories | |
SOURCE_DIR="./" | |
DEST_DIR="./" | |
# Create destination directory if it doesn't exist | |
mkdir -p "$DEST_DIR" | |
# Resize and convert images |
OlderNewer