Skip to content

Instantly share code, notes, and snippets.

View nukhes's full-sized avatar
🇧🇷

Pedro Henrique nukhes

🇧🇷
  • ETEC
  • BR
  • 10:42 (UTC -03:00)
View GitHub Profile
@victoralvesf
victoralvesf / docker_ryzentosh.md
Last active March 30, 2025 13:41
Docker no Ryzentosh usando Minikube e VirtualBox.

Como usar o Docker no Ryzentosh pelo Minikube + VirtualBox.

Pre-requisitos

  1. VirtualBox 6.1.40. download
  2. Homebrew. documentação
  3. ProperTree. download
  4. macOS Ventura

Primeiros passos

@Speyll
Speyll / auto-void.sh
Last active August 28, 2025 17:58
Short, simple and easy to understand shell scripts to automate Void Linux post-installation with a wayland setup, you can play around with it as you see fit.
#!/bin/sh
# Void Linux Post-Installation Script for Wayland
# Author: Speyll
# Last-update: 20-03-2025
# Enable debugging output and exit on error
set -x
# Add multilib and nonfree repositories
sudo xbps-install -Sy void-repo-nonfree
@TheSunCat
TheSunCat / DisblockOrigin.theme.css
Last active October 18, 2025 18:17
Hide all Nitro & Boost upsells in Discord!
/**
* @name Adblock for Discord
* @author TheSunCat and contributors
* @version 1.0.0
* @description We have moved to Codeberg! Follow the link below:
* @source https://codeberg.org/AllPurposeMat/Disblock-Origin
*/
#app-mount::before {
content: "The Disblock Origin theme has moved to Codeberg! Please check https://codeberg.org/AllPurposeMat/Disblock-Origin";
@sanyer
sanyer / install-wsl-prerequisites.ps1
Last active February 17, 2025 19:08
Install WSL without Windows Store
# Windows now supports a simple WSL installation using the command:
wsl --install
$ErrorActionPreference = 'Continue'
$ProgressPreference = 'SilentlyContinue'
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-Hypervisor
Enable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform
Enable-WindowsOptionalFeature -Online -FeatureName HypervisorPlatform
@ahmetozer
ahmetozer / Windows-10-custom-theme-fix-color-after-login.md
Created April 14, 2020 07:21
Fix for custom theme color issue after logged in windows

If you install custom theme on your system you might suffer from each login for the re appliying your theme.
To fixing delete Default Colors folder on HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\ path on regedit. Now I hope you not able to get same issue on your computer.

@JerryLokjianming
JerryLokjianming / Crack Sublime Text Windows and Linux.md
Last active December 9, 2025 05:37
Crack Sublime Text 3.2.2 Build 3211 and Sublime Text 4 Alpha 4098 with Hex

How to Crack Sublime Text 3.2.2 Build 3211 with Hex Editor (Windows | Without License) ↓

  1. Download & Install Sublime Text 3.2.2 Build 3211
  2. Visit https://hexed.it/
  3. Open file select sublime_text.exe
  4. Offset 0x8545: Original 84 -> 85
  5. Offset 0x08FF19: Original 75 -> EB
  6. Offset 0x1932C7: Original 75 -> 74 (remove UNREGISTERED in title bar, so no need to use a license)
@mwhite
mwhite / git-aliases.md
Last active December 8, 2025 15:16
The Ultimate Git Alias Setup

The Ultimate Git Alias Setup

If you use git on the command-line, you'll eventually find yourself wanting aliases for your most commonly-used commands. It's incredibly useful to be able to explore your repos with only a few keystrokes that eventually get hardcoded into muscle memory.

Some people don't add aliases because they don't want to have to adjust to not having them on a remote server. Personally, I find that having aliases doesn't mean I that forget the underlying commands, and aliases provide such a massive improvement to my workflow that it would be crazy not to have them.

The simplest way to add an alias for a specific git command is to use a standard bash alias.

# .bashrc