Skip to content

Instantly share code, notes, and snippets.

View bernylinville's full-sized avatar
🏀
dunking

Berny Linville bernylinville

🏀
dunking
View GitHub Profile
@mjkstra
mjkstra / arch_linux_installation_guide.md
Last active November 17, 2024 16:36
A modern, updated installation guide for Arch Linux with BTRFS on an UEFI system
@pooladkhay
pooladkhay / wayland-blurry-fix.md
Last active September 29, 2024 18:19
VSCode blurry text under Wayland

Source: https://wiki.archlinux.org/title/Visual_Studio_Code#Blurry_text_under_Wayland

Due to Electron issues Visual Studio Code defaults to run under XWayland which may cause blurry text if you're using HiDPI screens.

In order to fix this issue you need to force Electron to run under Wayland by adding --enable-features=UseOzonePlatform --ozone-platform=wayland, for example you'll be launching VSCode like

$ code --enable-features=UseOzonePlatform --ozone-platform=wayland

This fix can be made permanent by creating a .desktop file or by directly editing /usr/share/applications/visual-studio-code.desktop

@michaellihs
michaellihs / gitlab_access_token.md
Last active November 11, 2024 15:29
Create Gitlab Personal Access Token using curl

Create Gitlab Personal Access Token using curl

Prerequisites

  • You need a Gitlab server up and running
  • You need user credentials for a (admin) user on the Gitlab server
  • You need curl and Perl on your server