All of the following information is based on go version go1.17.1 darwin/amd64
.
GOOS | Out of the Box |
---|---|
aix |
✅ |
android |
✅ |
# 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 |
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 |
.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; | |
} |
#!/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 |
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 |