Skip to content

Instantly share code, notes, and snippets.

View ryanwalder's full-sized avatar

Ryan Walder ryanwalder

  • Farnborough, UK
View GitHub Profile
@mrcomoraes
mrcomoraes / clear_cache_MS_Teams.sh
Last active February 16, 2024 22:55
Clear cache Microsoft Teams on Linux
#!/bin/bash
# This script cleans all cache for Microsoft Teams on Linux
# Tested on Ubuntu-like, Debian by @necrifede, Arch Linux by @lucas-dclrcq and Manjaro with flatpak by @danie1k. Feel free to test/use in other distributions.
# Tested Teams via snap package.
# Tested Teams via flatpak package.
#
# How to use in terminal:
# ./clear_cache_MS_Teams.sh ( deb-stable | deb-insider | snap | flatpak )
# or
@WebFreak001
WebFreak001 / valve-index-linux.md
Last active July 11, 2023 19:09
Getting my Valve Index to run flawlessly on ArchLinux with i3wm

Getting my Valve Index to run flawlessly on ArchLinux with i3wm

I've bought the Valve Index VR headset and wanted to play on Linux. I had done a lot of tinkering with my Linux Machine up to this point so quite a few things on the headset initially had issues working alright.

I have listed all of the problems I encountered on ArchLinux with Valve Index and Steam VR in this post and how I managed to solve nearly all of them.

When I first plugged in my headset, turned on the controllers and started

@cookiengineer
cookiengineer / apt-pac.sh
Last active September 11, 2023 20:06
APT-PAC - pacman with APT syntax
#!/bin/bash
# Save this file as /usr/bin/apt-pac and chmod +x it.
case "$1" in
autoremove)
pacman -Rns $(pacman -Qdtq);
;;
@mattstratton
mattstratton / ado_infra_as_code.md
Last active August 29, 2015 14:18
ADO Infrastructure as Code Episode

ADO Infrastructure as Code Episode

The intent of this episode is to discuss, from a tools-agnostic perspective, the concepts of Infrastructure as Code. Right now I've listed "areas of interest", which will turn into a more organized "agenda" at some point.

Areas of interest

  • Storing configuration in source control
  • Testing infra code for consistency and reliability
  • Using principles of CI and CD for infra code
  • Aligning infracode with app code
  • Lessons learned from real-world implementations