Skip to content

Instantly share code, notes, and snippets.

View Austcool-Walker's full-sized avatar

AugustusXVIII Austcool-Walker

  • 21:48 (UTC -04:00)
View GitHub Profile
@Austcool-Walker
Austcool-Walker / 0-go-os-arch.md
Created May 5, 2023 12:54 — forked from asukakenji/0-go-os-arch.md
Go (Golang) GOOS and GOARCH

Go (Golang) GOOS and GOARCH

All of the following information is based on go version go1.17.1 darwin/amd64.

GOOS Values

GOOS Out of the Box
aix
android
@Austcool-Walker
Austcool-Walker / 0-go-os-arch.md
Created May 5, 2023 12:54 — forked from asukakenji/0-go-os-arch.md
Go (Golang) GOOS and GOARCH

Go (Golang) GOOS and GOARCH

All of the following information is based on go version go1.17.1 darwin/amd64.

GOOS Values

GOOS Out of the Box
aix
android
@Austcool-Walker
Austcool-Walker / CAP_LAST_CAP dbus in termux.bash
Created April 25, 2023 12:39 — forked from SaicharanKandukuri/CAP_LAST_CAP dbus in termux.bash
way to run dbus inside termux | A way to run Gnome in termux with root
# https://elixir.bootlin.com/linux/v4.3/ident/CAP_LAST_CAP
# first creating a file with 0 inside file
echo 0 > ~/cap_last_cap
# Next step is to bind the file cap_last_cap to /proc/sys/kernel/cap_last_cap
#for proot-distro with ubuntu-18.04 the command looks like
proot-distro login ubuntu-18.04 --bind cap_last_cap:/proc/sys/kernel/cap_last_cap
@Austcool-Walker
Austcool-Walker / features.md
Created April 11, 2023 20:55 — forked from Techy/features.md
Discord Guild Features

This is an unofficial list of all Discord guild features, for an official list refer to the Discord Developer documentation.

Guild Feature Description
ANIMATED_ICON Allows the server to set an animated icon. Used in server boosting, level 1
BANNER Allows the server to set a banner which is shown at the top of all the channels. Used in server boosting, level 2
COMMERCE Given to servers with a developer license, allows them to create and use store channels
COMMUNITY Given to servers that enable community in server settings, also gives access to the news feature which allows servers to create announcement channels
DISCOVERABLE Given to servers that enabled discovery guidelines
ENABLED_DISCOVERABLE_BEFORE Given to servers that enabled discovery at any point
@Austcool-Walker
Austcool-Walker / TransparentWindow.theme.css
Created January 14, 2023 04:08 — forked from cheesits456/TransparentWindow.theme.css
Custom CSS to make Discord slightly transparent (use with BetterDiscord)
.da-scrollerWrap .da-scroller::-webkit-scrollbar-thumb {
background-color: #2c75ff !important;
border-color: #091833 !important;
}
.theme-dark .da-scrollerWrap .da-scroller::-webkit-scrollbar-track-piece {
background-color: #000b1e !important;
border-color: #091833 !important;
}
@Austcool-Walker
Austcool-Walker / build-zsh.sh
Created December 4, 2022 05:41 — forked from ptrv/build-zsh.sh
Build Zsh from sources on Ubuntu
#!/bin/sh​
# Build Zsh from sources on Ubuntu.
# From http://zsh.sourceforge.net/Arc/git.html and sources INSTALL file.
# Some packages may be missing
sudo apt-get install -y git-core gcc make autoconf yodl libncursesw5-dev texinfo
git clone git://zsh.git.sf.net/gitroot/zsh/zsh
cd zsh
# 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
@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
#!/bin/bash
# Build Bash from sources on Ubuntu.
# 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
# Clone zsh repo and change to it
#!/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