// ============================================================================
// Работа со строками на ARM64 Assembler (Linux)
// ============================================================================
// Компиляция: as -o string_ops.o string_ops.s && ld -o string_ops string_ops.o
// Запуск: ./string_ops
// ============================================================================Вот полный список возможных флагов маршрутов в таблице маршрутизации (набор флагов может отличаться в зависимости от ОС):
U (Up) — маршрут активен и доступен для использования
G (Gateway) — маршрут использует шлюз (gateway), пакеты отправляются через промежуточный узел
H (Host) — маршрут к конкретному хосту, а не к сети
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "basics": { | |
| "name": "Mikhail Savin", | |
| "label": "TechLead SRE / CTO / Practicing teacher", | |
| "picture": "https://github.com/jtprogru.png", | |
| "email": "jtprogru@gmail.com", | |
| "website": "https://jtprog.ru", | |
| "summary": "I have quite rich and versatile experience in the role of Infrastructure Engineer, SRE, Head of IT Division and Operations, CTO. I am a member of DevOpsConf program committee and a practicing teacher of RTU MIREA.", | |
| "location": { | |
| "city": "Moscow", |
<%* const title = tp.file.title
// "Meeting (Sync)" Notes if ((title.startsWith("Sync with - ")) || (title.startsWith("Meeting - "))) { return tp.file.include('[[Meeting template]]') }
// "People" Notes else if (title.startsWith("@")) {
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| // некоторые импорты нужны для проверки | |
| import ( | |
| "fmt" | |
| "io" | |
| "log" | |
| "net/http" | |
| "net/url" | |
| "os" | |
| "time" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # `python-base` sets up all our shared environment variables | |
| FROM python:3.8.1-slim as python-base | |
| # python | |
| ENV PYTHONUNBUFFERED=1 \ | |
| # prevents python creating .pyc files | |
| PYTHONDONTWRITEBYTECODE=1 \ | |
| \ | |
| # pip | |
| PIP_NO_CACHE_DIR=off \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ansible==7.5.0 | |
| ansible-core==2.14.5 | |
| ansible-lint==6.17.1 | |
| black==23.3.0 | |
| jmespath==1.0.1 | |
| yamllint==1.31.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gui: | |
| authorColors: | |
| "*": "#11aaff" # use red for all | |
| "Michael Savin": "#00ff00" # use green for me | |
| "jtprogru": "#00ff00" # use green for me | |
| scrollHeight: 2 # how many lines you scroll by | |
| scrollPastBottom: true # enable scrolling past the bottom | |
| sidePanelWidth: 0.33 # number from 0 to 1 | |
| mainPanelSplitMode: "flexible" # one of 'horizontal' | 'flexible' | 'vertical' | |
| language: "en" # one of 'auto' | 'en' | 'zh' | 'pl' | 'nl' | 'ja' | 'ko' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # yaml-language-server: $schema=https://taskfile.dev/schema.json | |
| --- | |
| version: "3" | |
| set: | |
| - pipefail | |
| silent: false | |
| tasks: |
NewerOlder