Skip to content

Instantly share code, notes, and snippets.

View p3nj's full-sized avatar
🙏
Don't think, feeeeeeeeeeeeel

p3nj p3nj

🙏
Don't think, feeeeeeeeeeeeel
View GitHub Profile
@p3nj
p3nj / triggerbot
Created June 27, 2015 11:34
simplest triggerbot in csgo base code.
int CrossID;//this variable stores the current CrosshairID
//add the current base and offsets here, ReadAddress is my custom ReadProcessMemory function. You have to find your own online or create it yourself to RPM!
CrossID = ReadAddress(process, base+offsets);
if (CrossID != 0 ) //if there is something in the Crosshair
{
this.BackColor = Color.Green;//just to see if it works
@ryo-ARAKI
ryo-ARAKI / starship.toml
Last active May 4, 2025 13:01
Starship configuration file
# ~/.config/starship.toml
[battery]
full_symbol = "🔋"
charging_symbol = "🔌"
discharging_symbol = "⚡"
[[battery.display]]
threshold = 30
style = "bold red"
@matthewpi
matthewpi / README.md
Last active March 31, 2025 21:07
Nix on Fedora

NixOS on Fedora

Please note that these instructions are not offically supported or condoned by Nix and are not guaranteed to always work, but from my testing everything seems to work perfectly fine.

These steps may not be required if NixOS/nix#2374 is resolved.

SELinux

These commands are required for both Fedora Workstation and Fedora Silverblue

@queeup
queeup / Nix_package_manager_on_Fedora_Silverblue.md
Last active May 10, 2025 14:08
Nix package manager install (single user) on Fedora Silverblue

Nix package manager on Fedora Silverblue

Warning

Disable composefs or enable root.transient before install and use nix on Fedora Silverblue 42. Do not mix both. Use just one method. I prefer enabling root.transient.

  • With composefs disabled

    sudo sed -i 's/,ro//' /etc/fstab
    
    sudo rpm-ostree kargs --append='ostree.prepare-root.composefs=0' --reboot