Skip to content

Instantly share code, notes, and snippets.

View jangroth's full-sized avatar
🚀
Launching

Jan Groth jangroth

🚀
Launching
View GitHub Profile
@thu2004
thu2004 / aws_devops_prof.md
Last active April 26, 2024 06:20
How I pass AWS DevOps Professional Certification exam on the first attempt!!

How I pass AWS DevOps Professional Certification exam on the first attempt!!

There are many excellence posts about this subject so I will not repeat them instead I list those at the end of this post.

I will give you which courses I took and briefly describe how I use those courses to prepare for my exam.

Exam Readiness: AWS Certified DevOps Engineer – Professional

I started with this free course to get myself an orientation of what to expect for this exam.

https://www.aws.training/Details/eLearning?id=34146

@egelev
egelev / connect_bluetooth_headphones.sh
Last active April 26, 2024 14:14
Connect bluetooth headphones on Ubuntu 18.04
#!/usr/bin/env bash
function get_headphones_index() {
echo $(pacmd list-cards | grep bluez_card -B1 | grep index | awk '{print $2}')
}
function get_headphones_mac_address() {
local temp=$(pacmd list-cards | grep bluez_card -C20 | grep 'device.string' | cut -d' ' -f 3)
temp="${temp%\"}"
temp="${temp#\"}"