Skip to content

Instantly share code, notes, and snippets.

View CompeyDev's full-sized avatar

Erica Marigold CompeyDev

View GitHub Profile
@CompeyDev
CompeyDev / CLIFlags.txt
Last active May 4, 2025 15:09 — forked from chadhyatt/CLIFlags.txt
All RobloxStudioBeta.exe CLI Flags (undocumented included)
-browserTrackerId
-protocolString
-instanceId
-task
-APIV2
-placeId
-port
-hidpi
-universeId
-pluginId
@CompeyDev
CompeyDev / .bashrc
Created August 12, 2023 16:44 — forked from 4x8Matrix/.bashrc
My saved BASH confliguration
#!/bin/bash
[[ $- != *i* ]] && return
# EXPORTS
export PATH="$PATH:~/.foreman/bin"
export PATH="$PATH:~/.cargo/bin"
export PATH="$PATH:~/.luaU/bin"
export HISTFILESIZE=10000
export HISTSIZE=500
@CompeyDev
CompeyDev / Cargo.toml
Created August 16, 2022 03:41 — forked from CoolOppo/Cargo.toml
How to compile to a DLL in rust while using it as a normal rust library
[package]
name = "test"
version = "0.1.0"
authors = ["YOU <YOU@users.noreply.github.com>"]
edition = "2018"
[lib]
crate-type = ["cdylib"]