- Get all branches not merged to master
git branch --no-merged master(see) - Get all branches merged to master
git branch --merged(see) - Remove local branches that have gone remotes
git fetch --prune && git branch -lvv | cut -c3- | awk '/: gone]/ {print $1}' | xargs git branch -d(see)git fetch -p && for branch in $(git branch -vv | grep ': gone]' | awk '{print $1}'); do git branch -D $branch; done(see)
- List of all revisions in branch `git rev-list m
- Install and configure Ubuntu WSL
- Install application
- Docker in Windows without Docker Desktop
- Docker/Kubernetes Clients
- Git tricks
sudo apt install curl nano micro mc git net-tools- xclip as pbcopy
- Install and configure Ubuntu WSL
- Install application
- Docker in Windows without Docker Desktop
- Docker/Kubernetes Clients
- Git tricks
See items marked with ❤️🔥 to use winning variants
2019/04/29 Chek browser https://www.ghacks.net/2019/04/29/check-if-your-browser-uses-secure-dns-dnssec-tls-1-3-and-encrypted-sni/
С октября 2020 https://ru.wikipedia.org/wiki/Server_Name_Indication
С октября 2020 и ранее в России провайдеры так же начали блокировку ESNI-трафика, что в итоге делает обычные и не запрещенные сайты недоступными для пользователей, учитывая что никаких действующих законов о блокировке этой технологии нет.[11] Первыми блокирующими ESNI провайдерами стали Ростелеком и затем - его дочерняя компания ООО «Т2 РТК Холдинг» (торговая марка «Tele2 Россия»).
08.12.2020 в Cloudflare считают, что спецификация ECH ещё не достигла должной «степени готовности», https://www.gadgetstyle.com.ua/67918-encrypted-client-hello-firefox-guide/
https://blog.cloudflare.com/encrypted-client-hello/ самая лучшая статья объясняющая всю историю вопроса, зачем это нужно и не понятные технические детали
-
https://docs.microsoft.com/ru-ru/windows/terminal/tutorials/powerline-setup - основная статья
-
https://docs.microsoft.com/en-us/windows/terminal/custom-terminal-gallery/powerline-in-powershell
-
https://www.ricalo.com/blog/install-powerline-windows/#install-and-configure-powerline-fonts ставим шрифты в wsl
-
Ставим импдементаци. powerline
- https://github.com/justjanne/powerline-go - go-powerline
- https://github.com/powerline/powerline - powerline
#!/bin/bash
i=0
while [[ ! $S == *[] ]]
do
(( i++ ))
S=$(curl -s -k 'https://gitlab.com/api/v4/projects/17678/repository/branches?private_token=<my-access-token>&page='$i)
echo "$S" | jq > $i.json
echo "$S" | wc| package main | |
| import ( | |
| "fmt" | |
| "reflect" | |
| ) | |
| // Name of the struct tag used in examples | |
| const tagName = "validate" |
// reference to receiver
package main
import "fmt"
type Obj struct {
f string
}
func (o *Obj) Log() {