Skip to content

Instantly share code, notes, and snippets.

View nachocodexx's full-sized avatar
🚀
Working from home

Nacho Castillo nachocodexx

🚀
Working from home
View GitHub Profile
@darthbhyrava
darthbhyrava / asus_kbd.md
Last active July 27, 2022 01:48
ASUS KeyBoard Backlight : Some Comments

ASUS TUF Keyboard Backlight Not Working on Ubuntu

I'm facing this exact issues on my ASUS TUF FX505.

  • The keyboard function keys don't work: FN + <Up>, FN + <Down>
  • /sys/class/leds/ (how linux kernel handles leds) does not have a corresponding device:
~[/sys/class/leds]$ tree .
.
├── asus-wireless::airplane -> ../../devices/LNXSYSTM:00/LNXSYBUS:00/ATK4002:00/leds/asus-wireless::airplane
@n1snt
n1snt / Oh my ZSH with zsh-autosuggestions zsh-syntax-highlighting zsh-fast-syntax-highlighting and zsh-autocomplete.md
Last active July 19, 2025 19:31
Oh my ZSH with zsh-autosuggestions zsh-syntax-highlighting zsh-fast-syntax-highlighting and zsh-autocomplete.md

Oh my zsh.

Oh My Zsh

Install ZSH.

sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh

Install Oh my ZSH.

@Integralist
Integralist / main.rs
Last active May 26, 2025 16:52
Rust: Tokio Spawn and Retry #rust #async #retry
use std::any::type_name;
use tokio_retry::strategy::{jitter, FixedInterval};
use tokio_retry::Retry;
#[derive(Debug)]
struct ImageId {
id: Option<String>,
}
async fn action() -> Result<ImageId, ()> {