Skip to content

Instantly share code, notes, and snippets.

View Issaminu's full-sized avatar
🏃‍♂️
Chasing Goombas

Issam Boubcher Issaminu

🏃‍♂️
Chasing Goombas
View GitHub Profile
@RubenKelevra
RubenKelevra / fast_firefox.md
Last active September 19, 2024 14:37
Make Firefox fast again
@madkoding
madkoding / pair-dual-boot-bluetooth.md
Last active September 17, 2024 13:03
Pairing bluetooth devices in dual boot with Linux Ubuntu and Windows 10/11

Pairing Bluetooth Devices in Dual Boot with Linux Ubuntu and Windows 10/11

Introduction

This guide provides updated instructions for pairing Bluetooth devices (such as keyboards or mice) in a dual-boot environment with Linux Ubuntu and Windows 10/11, incorporating community feedback and suggestions.

Instructions

1. Pair in Linux First

  • Pair your Bluetooth device in Linux. This is crucial to ensure the LinkKey remains consistent.
  • Note: Do not re-pair the device in Linux after completing the pairing in Windows.
@nmfzone
nmfzone / domain.com
Created April 15, 2017 10:36
NginX SSL Config for Laravel/Lumen using Let's Encrypt
server {
listen 80;
listen [::]:80;
server_name domain.com;
# Redirect all HTTP requests to HTTPS with a 301 Moved Permanently response.
return 301 https://$host$request_uri;
}