Skip to content

Instantly share code, notes, and snippets.

View ThunderE75's full-sized avatar
♾️
I may be slow to respond.

ThunderE75 ThunderE75

♾️
I may be slow to respond.
View GitHub Profile
@ThunderE75
ThunderE75 / glance.yml
Last active May 6, 2025 20:28
Glance Config
theme:
background-color: 0 0 0
# background-color: 50 1 6
primary-color: 209 88 54
positive-color: 135 94 66
negative-color: 0 100 67
server:
port: 8383
branding:
custom-footer: |
#!/bin/bash
while true; do
echo "Menu:"
echo "1. Display the current working directory."
echo "2. List the files in your directory."
echo "3. Long listing of directory and store the output in a file."
echo "4. Create a file and copy it in your directory."
echo "5. Move the specified file into your parent directory."
echo "6. Rename a specified file."
@ThunderE75
ThunderE75 / fix_brightness.bat
Created October 8, 2024 20:06
Fix Brightness Control on Nvidia Laptop GPUs
@echo off
net stop NVDisplay.ContainerLocalSystem && net start NVDisplay.ContainerLocalSystem
@ThunderE75
ThunderE75 / breadth_first_search.py
Created September 20, 2022 18:36
Depth & Breadth First Search Gist - Michael Sambol
# Source - https://github.com/msambol/youtube/blob/master/search/breadth_first_search.py
from collections import deque
graph = {
'A' : ['B','C'],
'B' : ['D', 'E', 'F'],
'C' : ['G'],
'D' : [],
'E' : [],
'F' : ['H'],