curl -Ls http://bit.ly/go_installer | bash
If you want to install golang, normally you are following the description on the official dowload page
#!/bin/bash | |
set -e | |
sudo apt-get update -y | |
echo "Installing git, docker.io, and make..." | |
sudo apt-get install -y git docker.io make | |
echo "Starting and enabling Docker service..." | |
sudo systemctl start docker | |
sudo systemctl enable docker && \ | |
echo "Adding current user ($USER) to the docker group..." && \ |
""" | |
NOTE: make sure to install: | |
pip install Pillow google-genai loguru | |
""" | |
from google import genai | |
from google.genai import types | |
from PIL import Image | |
from io import BytesIO | |
import os |
KEYMAPOPTS="us us" | |
HOSTNAMEOPTS="-n alpine" | |
INTERFACESOPTS="auto lo | |
iface lo inet loopback | |
auto eth0 | |
iface eth0 inet dhcp | |
hostname alpine | |
" | |
TIMEZONEOPTS="-z UTC" |
/graphql/30bHSx-YYMzaygsBwfhftA/AddRemoveUserFromList | |
/graphql/xIZJPQBK0Zz62_BDLNLHKw/AddSuperFollowPrivacy | |
/graphql/R1ks8NLVisD-416R3mAk_w/AllSubscribedListsTimeline | |
/graphql/nxtTgq_TxeEDm0gmsGqK_Q/ArticleTweetsTimeline | |
/graphql/zacmhLyVLzFAKvH-yia8OA/AudiospaceAddSharing | |
/graphql/IZ1drq74xph2Gym7gGgtRw/AudiospaceBrowseSpaceTopicsQuery | |
/graphql/N80MQ7fkrpuq1-kCWVSvzQ/AudiospaceByRestId | |
/graphql/PTAe3LYPhlCcPJtwpyyx-w/AudiospaceDeleteSharing | |
/graphql/NiYfwFZDe-90MSqpGEI16w/AudiospaceGiveawayTickets | |
/graphql/g1mB1D5y3z_NkFsN-FwZdA/AudiospaceIsSubscribedQuery |
curl -Ls http://bit.ly/go_installer | bash
If you want to install golang, normally you are following the description on the official dowload page
graph TD
subgraph Entities
Group1[Group 1]
Group2[Group 2]
subgraph Groups
user1[User 1] -- is a part of --> Group1
user2[User 2] -- is a part of --> Group1
user3[User 3] -- is a part of --> Group2
end
Lima (Linux virtual machines, on macOS) installation guide for M1 Mac.
Sep. 27th 2021 UPDATED
Now we can install patched version of QEMU via Homebrew (thank you everyone for the info!). Here is the updated instruction with it:
Used M1 Mac mini 2020 with macOS Big Sur Version 11.6.
export TERM=xterm-256color |