Skip to content

Instantly share code, notes, and snippets.

@steezeburger
steezeburger / starship.toml
Last active February 11, 2024 01:52
my starship config. inspired by the hit major motion picture The Matrix
format = """
[░▒▓](#00FF00)\
$username\
[@](bg:#0F0F0F fg:#00FF00)\
$hostname\
$directory\
[\ueb2c](fg:#0F0F0F bg:#003300)\
$git_branch\
$git_status\
[\ueb2c](fg:#0F0F0F bg:#003300)\
@steezeburger
steezeburger / organize-downloads.sh
Last active October 6, 2023 16:32
Organize your downloads folder by file type
#!/bin/bash
set -e
set -o pipefail
# Navigate to Downloads directory or exit with status 1 if it fails
cd ~/Downloads || exit 1
# Indexed array for directory names
directories=("3D_Models" "Archives" "Audio" "Books_and_Presentations" "Documents" "Images" "Software" "Videos")
@xrandox
xrandox / palworldlua.md
Last active January 19, 2025 22:35
Teh's Lua Modding in Palworld Tutorial

DISCLAIMER: I am not an expert on UE4SS or lua modding. In fact, Palworld is the first game I've done any UE4SS modding. I self-taught myself from the UE4 docs, discord convos and brute force. I might not always do things the best way. But I have made a handful of mods and I think I have at least a decent understanding of the basics and overall process, and that's what I'm going to try and cover in this guide.


Prologue | Ground Rules

Hi, so I'm Teh, as some of you might know me from Nexus, or also im.null on Discord.

Lets set some ground rules so you don't complain about me wasting your time:

  • This is a Lua-only tutorial. I will not be covering BPs, BP interoperability, asset swapping or anything of the like. This will be pure, untainted Lua 😎. Some concepts will definitely transfer over, but if you want BP stuff, this aint it
  • I'm not going to cover Lua basics, like syntax or
@steezeburger
steezeburger / wait-for-file.sh
Last active March 31, 2023 23:36
Similar to the popular wait-for-it.sh that waits for a network connection, this bash script waits for a file to exist. It does not have the same api as wait-for-it.sh, but could be extended easily enough to be the same.
#!/bin/bash
# Usage: ./wait-for-file.sh /path/to/your/file
FILE_PATH="$1"
TIMEOUT=30
SLEEP_INTERVAL=1
ELAPSED=0
if [ -z "$FILE_PATH" ]; then

Quick start

Tauri is shipped with state management function/feature by default.

Basic usage is quite simple: a variable of State type can be accessed on the tauri commands which you have defined; in other words, "with tauri commands, they'll magically inject state for you," so that once a variable is managed you can inject them directly as additional input when defining the command.

Example Implementation

@AbstractUmbra
AbstractUmbra / 00-deprecation.md
Last active March 31, 2025 13:09
discord.py 2.0+ slash command info and examples

This gist has now been 'deprecated' and has moved...

... to my blog style space for easier contribution by third parties and to provide what I believe to be an easier reading experience. Please field all enquiries and issues to the source repository.

@sts10
sts10 / rust-command-line-utilities.markdown
Last active April 1, 2025 12:32
A curated list of command-line utilities written in Rust

A curated list of command-line utilities written in Rust

Note: I have moved this list to a proper repository. I'll leave this gist up, but it won't be updated. To submit an idea, open a PR on the repo.

Note that I have not tried all of these personally, and cannot and do not vouch for all of the tools listed here. In most cases, the descriptions here are copied directly from their code repos. Some may have been abandoned. Investigate before installing/using.

The ones I use regularly include: bat, dust, fd, fend, hyperfine, miniserve, ripgrep, just, cargo-audit and cargo-wipe.

  • atuin: "Magical shell history"
  • bandwhich: Terminal bandwidth utilization tool
@joseluisq
joseluisq / main.rs
Created February 10, 2021 22:23 — forked from lu4nm3/main.rs
Tokio Async: Concurrent vs Parallel
use futures::StreamExt;
use std::error::Error;
use tokio;
use tokio::macros::support::Pin;
use tokio::prelude::*;
use tokio::time::{Duration, Instant};
pub fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut multi_threaded_runtime = tokio::runtime::Builder::new()
.threaded_scheduler()
@xanathar
xanathar / launch.json
Created September 17, 2020 18:16
launch.json to debug Rust with VsCode
{
// The following are sample configurations for common case scenarios of debugging
// Rust in Visual Studio Code
//
// For syntax, visit: https://go.microsoft.com/fwlink/?linkid=830387
//
"version": "0.2.0",
"configurations": [
{
"name": "Launch an application",
@PurpleBooth
PurpleBooth / README.md
Last active September 8, 2023 20:52
A github workflow pipeline for rust that does test, build and deploy windows, linux and mac, creates releases, and does SemVer Versioning, and releases to a homebrew tap

Features

  • Automatically bump SemVer
  • Update a personal homebrew tap
  • Keep that pesky version in the Cargo.toml up to date
  • (From dependabot) Get new versions out as soon as possible

Assumptions

  • You don't want a changelog