Skip to content

Instantly share code, notes, and snippets.

View brosahay's full-sized avatar
🎯
Focusing

Rohan S brosahay

🎯
Focusing
View GitHub Profile
@brosahay
brosahay / README.md
Last active May 18, 2024 14:19
VoLTE/VoWiFi Enabled on Pixel 2 XL
@brosahay
brosahay / install-docker-ce.sh
Last active March 26, 2022 19:16
Docker on Ubuntu 20.04 LTS WSL
#!/bin/bash
# Install Docker-CE
sudo apt update -y
sudo apt install docker-compose -y
# Add User to Group
sudo groupadd docker
sudo gpasswd -a $USER docker
newgrp docker
@brosahay
brosahay / configuration-Office2016ProPlus.xml
Last active March 30, 2020 05:20
Office Deployment XML Templates
<!-- Office 2016 client configuration file sample. To be used for Office 2016 ProPlus apps,
Office 2016 Business apps, Project Pro for Office 2016 and Visio Pro for Office 2016.
For detailed information regarding configuration options visit: http://aka.ms/ODT.
To use the configuration file be sure to remove the comments
The following sample allows you to download and install the 64 bit version of the Office 2016 ProPlus apps
and Visio Pro for Office 2016 directly from the Office CDN using the Monthly Channel
settings -->
@brosahay
brosahay / choco-install.config
Last active April 28, 2020 07:05
Chocolatey Package List
<?xml version="1.0" encoding="utf-8" ?>
<packages>
<!-- <package id="apackage" />
<package id="anotherPackage" version="1.1" />
<package id="chocolateytestpackage" version="0.1" source="somelocation" />
<package id="alloptions" version="0.1.1" source="https://somewhere/api/v2/" installArguments="" packageParameters="" forceX86="false" allowMultipleVersions="false" ignoreDependencies="false" /> -->
<!-- Core -->
<package id="chocolatey" />
<package id="chocolatey-core.extension" />
<package id="chocolatey-windowsupdate.extension" />