Skip to content

Instantly share code, notes, and snippets.

View Austcool-Walker's full-sized avatar

AugustusXVIII Austcool-Walker

  • 18:21 (UTC -04:00)
View GitHub Profile
@Austcool-Walker
Austcool-Walker / build-zsh.sh
Created January 8, 2021 04:15 — forked from dezza/build-zsh.sh
Build last stable version of ZSH from sources on Ubuntu, or any other version with small changes
#!/bin/bash
# Build Zsh from sources on Ubuntu.
# From http://zsh.sourceforge.net/Arc/git.html and sources INSTALL file.
# Make script gives up on any error
set -e
# Some packages may be missing
sudo apt-get install -y git-core gcc make autoconf yodl libncursesw5-dev texinfo checkinstall
@Austcool-Walker
Austcool-Walker / BDLinux.md
Last active January 16, 2022 17:25 — forked from ObserverOfTime/BDLinux.md
Install BetterDiscord on Linux

Install BetterDiscord on Linux

This Gist contains simple instructions on how to install, update, and uninstall BetterDiscord on Linux.

For more thorough documentation, take a look at betterdiscordctl's README.

Do NOT submit issues here as I don't check the comments. You should submit them here instead.

@Austcool-Walker
Austcool-Walker / INSTALL.md
Last active December 19, 2020 00:17
Install seamonkey browser ubuntu

Run these commands in Terminal or TTY.

cat <<EOF | sudo tee /etc/apt/sources.list.d/mozilla.list
deb http://downloads.sourceforge.net/project/ubuntuzilla/mozilla/apt all main
EOF
sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 2667CA5C
@Austcool-Walker
Austcool-Walker / settings.json
Created December 18, 2020 14:08
My Windows Terminal settings.json
// This file was initially generated by Windows Terminal 1.4.3243.0
// It should still be usable in newer versions, but newer versions might have additional
// settings, help text, or changes that you will not see unless you clear this file
// and let us generate a new one for you.
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
@Austcool-Walker
Austcool-Walker / release_without_kexts.command
Created October 10, 2020 15:19
OCBuilder (OpenCore Builder) IA32 32bit command script to build IA32 Release on Mojave and below.
#!/bin/bash
prompt() {
dialogTitle="OCBuilder"
authPass=$(/usr/bin/osascript <<EOT
tell application "System Events"
activate
repeat
display dialog "This application requires administrator privileges. Please enter your administrator account password below to continue:" ¬
default answer "" ¬
@Austcool-Walker
Austcool-Walker / debug_without_kexts.command
Last active October 10, 2020 15:17
OCBuilder (OpenCore Builder) IA32 32bit command script to build IA32 Debug on Mojave and below.
#!/bin/bash
prompt() {
dialogTitle="OCBuilder"
authPass=$(/usr/bin/osascript <<EOT
tell application "System Events"
activate
repeat
display dialog "This application requires administrator privileges. Please enter your administrator account password below to continue:" ¬
default answer "" ¬
@Austcool-Walker
Austcool-Walker / SMBios.plist
Created October 6, 2020 20:56
MacPro5,1 SMBios.plist for Hackintosh
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>SMUUID</key>
<string>00000000-0000-1000-8000-000000000000</string>
<key>SMbiosdate</key>
<string>10/07/10</string>
<key>SMbiosvendor</key>
<string>Apple Inc.</string>
@Austcool-Walker
Austcool-Walker / .bashrc
Last active December 13, 2020 02:02
ubuntus bash rc file
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@Austcool-Walker
Austcool-Walker / access.json
Created September 20, 2020 20:33
kTTC macOS permission sqlite database dump
[
{
"auth_reason": 5,
"auth_value": 2,
"auth_version": 1,
"client": "/System/Library/PrivateFrameworks/PhotoLibraryServices.framework/Versions/A/Support/photolibraryd",
"client_type": 1,
"csreq": null,
"flags": 0,
"indirect_object_code_identity": null,
@Austcool-Walker
Austcool-Walker / webdavserv.go
Created August 18, 2020 02:21 — forked from staaldraad/webdavserv.go
A small webdav server in go
package main
import (
"flag"
"fmt"
"log"
"net/http"
"os"
"golang.org/x/net/webdav"