Skip to content

Instantly share code, notes, and snippets.

View Austcool-Walker's full-sized avatar

AugustusXVIII Austcool-Walker

  • 10:29 (UTC -04:00)
View GitHub Profile
Serial Keys:

FU512-2DG1H-M85QZ-U7Z5T-PY8ZD
CU3MA-2LG1N-48EGQ-9GNGZ-QG0UD
GV7N2-DQZ00-4897Y-27ZNX-NV0TD
YZ718-4REEQ-08DHQ-JNYQC-ZQRD0
GZ3N0-6CX0L-H80UP-FPM59-NKAD4
YY31H-6EYEJ-480VZ-VXXZC-QF2E0
ZG51K-25FE1-H81ZP-95XGT-WV2C0
@Austcool-Walker
Austcool-Walker / idevicerestore.sh
Created August 6, 2020 18:42 — forked from stek29/idevicerestore.sh
idevicerestore on linux (Debian-based)
sudo apt update
# sudo apt upgrade
sudo apt install -y libcurl4-openssl-dev libplist-dev libzip-dev openssl libssl-dev libusb-1.0-0-dev libreadline-dev build-essential git make automake libtool pkg-config
git clone https://github.com/libimobiledevice/libirecovery
git clone https://github.com/libimobiledevice/idevicerestore
git clone https://github.com/libimobiledevice/usbmuxd
git clone https://github.com/libimobiledevice/libimobiledevice
git clone https://github.com/libimobiledevice/libusbmuxd
git clone https://github.com/libimobiledevice/libplist
@Austcool-Walker
Austcool-Walker / idevicerestore.sh
Last active September 18, 2020 15:37 — forked from stek29/idevicerestore.sh
idevicerestore on linux (Debian-based)
OUT=/opt/libimobiledevice.git
sudo apt update
# sudo apt upgrade
sudo apt install -y libcurl4-openssl-dev libplist-dev libzip-dev openssl libssl-dev libusb-1.0-0-dev libreadline-dev build-essential git make automake libtool pkg-config
git clone https://github.com/libimobiledevice/libirecovery
git clone https://github.com/libimobiledevice/idevicerestore
git clone https://github.com/libimobiledevice/usbmuxd
git clone https://github.com/libimobiledevice/libimobiledevice
git clone https://github.com/libimobiledevice/libusbmuxd
@Austcool-Walker
Austcool-Walker / ABOUT.md
Created August 14, 2020 03:19 — forked from laobubu/ABOUT.md
A very simple HTTP server in C, for Unix, using fork()

Pico HTTP Server in C

This is a very simple HTTP server for Unix, using fork(). It's very easy to use

How to use

  1. include header httpd.h
  2. write your route method, handling requests.
  3. call serve_forever("12913") to start serving on port 12913
@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"
@Austcool-Walker
Austcool-Walker / BDLinux.md
Last active May 3, 2024 22:20 — 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 / 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
#!/bin/bash
# See http://blog.coolaj86.com/articles/google-repos-for-linux.html
# See Also https://gist.github.com/4686265 for the repo list files
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
pushd /etc/apt/sources.list.d/
wget -c https://gist.github.com/raw/4686265/google-chrome.list
wget -c https://gist.github.com/raw/4686265/google-musicmanager.list
wget -c https://gist.github.com/raw/4686265/google-earth.list
@Austcool-Walker
Austcool-Walker / gist:4ad246954789626c5d296bd82be64b4f
Created September 7, 2022 21:13 — forked from jakub-g/gist:b7b54852011dfd8d708fa88300452f5a
Samsung TV browser and Samsung TV webview useragent strings
Samsung Browser:
----------------
Mozilla/5.0 (SMART-TV; Linux; Tizen 5.0) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.2 Chrome/63.0.3239.84 TV Safari/537.36
Mozilla/5.0 (SMART-TV; Linux; Tizen 4.0) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/56.0.2924.0 TV Safari/537.36
Samsung WebView:
----------------
Mozilla/5.0 (SMART-TV; LINUX; Tizen 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Version/5.0 TV Safari/537.36
# based on this post
# https://askubuntu.com/questions/770733/how-to-install-package-from-testing
# install build tools
sudo apt-get install moreutils build-essential fakeroot devscripts dpkg-dev equivs
# create some build directory
mkdir build
cd build