Skip to content
View Drewlius's full-sized avatar
💭
Where did this all go wrong?
💭
Where did this all go wrong?

Block or report Drewlius

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Drewlius/README.md

Out for Lunch


Pinned Loading

  1. oc-supermemory-redux oc-supermemory-redux Public

    Clean Supermemory plugin for OpenCode. Follows the Supermemory docs directly. no legacy compatibility shims, no cross-editor config discovery, no compaction takeover, no version-check banners.

    JavaScript

  2. Backup Home Profile Backup Home Profile
    1
    # Backup Your Home Directory
    2
    ## So simple you mother could do it
    3
    #### This script expects you to have a secondary storage drive mounted in /mnt (/mnt/<Desired_Location> 
    4
    > ##### This is not a strictly enforced requirement and you may edit the script to suit your needs.
    5
    ---
  3. Interactive Nvidia GPU Monitoring Ut... Interactive Nvidia GPU Monitoring Utility
    1
    #!/bin/bash
    2
    read -n1 -p "1:NVTOP 2:NVIDIA-SMI DMON 3:NVIDIA-SMI PMON > " c; echo
    3
    
                  
    4
    case $c in
    5
    1) nvtop ;;
  4. MergePDF MergePDF Public

    A simple script dependent on Pypdf. It merges any pdf contained inside of the folder the script is in into one .pdf named output.pdf

    Python

  5. NVIDIA-SMI interact-able to adjust G... NVIDIA-SMI interact-able to adjust GPU power limit on the fly
    1
    #!/bin/bash
    2
    printf "Set Temporary NVIDIA GPU Power Limit\n"
    3
    read -p "Enter wattage (RTX 5090 range: 400-600): " WATTS
    4
    
                  
    5
    if sudo nvidia-smi -pl "$WATTS"; then
  6. script to disable ZRAM and Swap in o... script to disable ZRAM and Swap in one command.
    1
    #!/bin/bash
    2
    sudo swapoff -a;sudo zramctl --reset /dev/zram0;echo "ensure if a ZRAM line is configured that you remove it now";sleep 10;wait;sudo nano /etc/fstab;sudo systemctl mask --now systemd-zram-setup@zram0.service;sudo touch /etc/systemd/zram-generator.conf;echo "Here you are going to write vm.swappiness=0, save(ctrl+s), and then exit(ctrl+x, Enter)";sleep 10;wait;sudo nano /etc/sysctl.d/99-swappiness.conf;echo "ZRAM is OFF";sleep 3;wait;exit 0