Skip to content

Instantly share code, notes, and snippets.

View gustfm's full-sized avatar
🎯
Focusing

Gustavo Soares gustfm

🎯
Focusing
  • SoluCX
  • São José dos Campos
View GitHub Profile
@Aritzherrero4
Aritzherrero4 / FreebudsPro.md
Last active January 19, 2024 02:07
Huawei Freebuds Pro - Linux (KDE Neon) configuration and AAC audio

Huawei Freebuds Pro - Linux (KDE Neon) configuration and AAC audio

The default configuration of KDE Neon does not work with the headphones. I have managed to connect them doing some changes, and adjusting some configurations. This resumes that, to keep it if I need to reconfigure them in the future.

This configuration has worked for me using the following setup:

  • KDE Neon 5.20, kernel 5.4.0
  • Freebuds Pro version 1.9.0.256
@ptomato
ptomato / css.md
Created August 12, 2015 04:27
GTK CSS properties
@tuxfight3r
tuxfight3r / 01.bash_shortcuts_v2.md
Last active June 17, 2024 02:09
Bash keyboard shortcuts

Bash Shortcuts

visual cheetsheet

Moving

command description
ctrl + a Goto BEGINNING of command line
@benmarwick
benmarwick / PDF-2-text-or-CSV.r
Last active July 18, 2022 03:48
Convert PDFs to text files or CSV files (DfR format) with R
# Here are a few methods for getting text from PDF files. Do read through
# the instructions carefully! NOte that this code is written for Windows 7,
# slight adjustments may be needed for other OSs
# Tell R what folder contains your 1000s of PDFs
dest <- "G:/somehere/with/many/PDFs"
# make a vector of PDF file names
myfiles <- list.files(path = dest, pattern = "pdf", full.names = TRUE)