All of the following information is based on go version go1.17.1 darwin/amd64
.
GOOS | Out of the Box |
---|---|
aix |
✅ |
android |
✅ |
sudo apt install unzip gettext cmake gcc g++ make | |
git clone --depth=1 https://github.com/neovim/neovim --branch=release-0.9 /tmp/neovim | |
cd /tmp/neovim | |
make CMAKE_BUILD_TYPE=RelWithDebInfo | |
sudo make install |
FROM golang:1.21 AS builder | |
ARG VERSION | |
ARG BUILD_TIME | |
RUN git config --global url."[email protected]:".insteadOf "https://github.com/" | |
ENV GOPRIVATE=github.com/company/private-repo | |
RUN mkdir -p -m 0600 ~/.ssh && ssh-keyscan github.com >> ~/.ssh/known_hosts |
# скачать карту | |
# Россия | |
wget https://download.geofabrik.de/russia-latest.osm.pbf | |
# Республика Белорусь | |
wget https://download.geofabrik.de/europe/belarus-latest.osm.pbf | |
# импорт карты | |
docker run -d \ | |
-e THREADS=12 \ | |
--shm-size=4g \ |
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc. | |
# Initialization code that may require console input (password prompts, [y/n] | |
# confirmations, etc.) must go above this block; everything else may go below. | |
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then | |
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" | |
fi | |
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH |
I hereby claim:
To claim this, I am signing this object:
type $env:USERPROFILE\.ssh\id_rsa.pub | ssh {IP-ADDRESS} "cat >> .ssh/authorized_keys" |
[source]
This manual page is for Mac OS X version 10.9
If you are running a different version of Mac OS X, view the documentation locally:
In Terminal, using the man(1) command
Reading manual pages
# -*- coding: utf-8 -*- | |
import binascii | |
import struct | |
def parse(fmt, binary, offset=0): | |
''' | |
Unpack the string |
version: '3' | |
services: | |
mongo: | |
image: mongo:latest | |
restart: always | |
container_name: pritunldb | |
hostname: pritunldb | |
network_mode: bridge | |
volumes: |