Skip to content

Instantly share code, notes, and snippets.

View BaReinhard's full-sized avatar
🏠
Working from home

Brett Reinhard BaReinhard

🏠
Working from home
View GitHub Profile
@BaReinhard
BaReinhard / VSCodeCPPSetup.md
Last active March 7, 2024 12:26
A Basic Setup for using VS Code with C++ 11 for CSIT Data Structures

Setting Up VS Code for C++ 11

This is for students who are running on a Non-Microsoft OS, or students who would rather use a lighter weight IDE

  1. First download VS Code and install it.

  2. Install a C++ extension in VS Code VS Code Extensions *The extension button is the square logo on the

@BaReinhard
BaReinhard / Installing Wine (After Homebrew).md
Last active October 18, 2023 18:44
Installing Wine to run .exe files on Mac

Install Wine to run .exe files

For Mac OSX

If you haven't installed Homebrew yet do so by following this guide

  1. Open a terminal
  2. brew install --cask xquartz, wait for it to complete the install, it should ask you for your password before beginning
  3. brew install --cask wine-stable , this will take some time to finish so sit back and relax.

For Linux

  1. sudo apt-get install wine-stable
@BaReinhard
BaReinhard / LyndaSub.md
Last active February 25, 2023 16:21
Free Lynda.com Membership

Free Lynda.com Membership

  1. Signup for Los Angeles Library Card Online
  1. Signup for Lynda.com Account using Card number and Pin here
  • You will be emailed your Card Number, and by default the Pin will be the last 4 digist of your phone number used during signup
  1. Follow the form prompts you you'll be good to go.
@BaReinhard
BaReinhard / Blu_R1_HD_ROOT.md
Last active July 5, 2022 00:06
Rooting Amazon Ad Enabled Blu R1 HD 16gb/2gb

Rooting Amazon Ads Enabled Blu R1 HD

Windows

  1. Download drivers here
  2. Install ADB Files here or here
  3. Download Unlock Tool here
  4. Connect Phone to Computer Via USB, unlock phone and allow computer access.
  5. Run dirty-cow-tool.bat
  6. Run options 1,2,3,4, and option 5.1
  7. Enjoy Root
@BaReinhard
BaReinhard / download_files.sh
Last active September 14, 2020 16:19
File downloader for xml links for Path of Diablo (for mac users, should also work for linux, given you have xmlstarlet installed)
PLEASE REFER TO https://github.com/BaReinhard/pod-installer-utils
PLEASE REFER TO https://github.com/BaReinhard/pod-installer-utils
@BaReinhard
BaReinhard / install_new_client.sh
Last active September 14, 2020 16:19
A tool used for Mac users for Path of Diablo. Some users are unable to have the POD Launcher download files, this will do that work for you.
PLEASE REFER TO https://github.com/BaReinhard/pod-installer-utils
@BaReinhard
BaReinhard / enUS_Path of Diablo Install.sh
Last active September 14, 2020 16:18
Simple install and download of Path of Diablo for Mac OS
PLEASE REFER TO https://github.com/BaReinhard/pod-installer-utils
@BaReinhard
BaReinhard / update_trades.js
Last active May 25, 2020 13:34
Update trades Path of Diablo
function postData(url = ``, data = {}) {
// Default options are marked with *
return fetch(url, {
method: "POST", // *GET, POST, PUT, DELETE, etc.
headers: {
Cookie:
"COOKIE_GOES_HERE",
"Content-Type": "application/json",
"X-XSRF-TOKEN":
"TOKEN_GOES_HERE"