by Anatoly Levenchuk and assortment of LLMs. September 2025
Preface (non-normative)
| ID & Title | Status | Concise content reminder — “what belongs here” |
|---|
| { | |
| "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", |
| SHELL := /bin/bash | |
| .SILENT: | |
| .DEFAULT_GOAL := help | |
| # Global vars | |
| export SYS_GO=$(shell which go) | |
| export SYS_GOFMT=$(shell which gofmt) | |
| export SYS_DOCKER=$(shell which docker) | |
| export BINARY_DIR=dist |
| SHELL := /bin/bash | |
| .SILENT: | |
| .DEFAULT_GOAL := help | |
| SYS_PY3=$(shell which python3) | |
| VENV_DIR=./venv | |
| VENV_PY3=$(VENV_DIR)/bin/python | |
| VENV_PIP3=$(VENV_DIR)/bin/pip | |
| .PHONY: venv |
| package main | |
| import ( | |
| "fmt" | |
| "time" | |
| ) | |
| func main() { | |
| startTime := time.Now() | |
| fmt.Println("Run -> Fib") |
| --- | |
| - name: macOS | |
| hosts: localhost | |
| connection: local | |
| become: false | |
| gather_facts: true | |
| vars: | |
| macos_hostname: "cronus" |
| --- | |
| - name: "Персональная базовая конфигурация окружения." | |
| hosts: all:!localhost | |
| become: true | |
| vars: | |
| sysops_employer: | |
| name: "jtprogru" | |
| pass: "!vault | | |
| $ANSIBLE_VAULT;1.1;AES256 |
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| # Author: Michael Savin <mail@jtprog.ru> | |
| # WWW: https://jtprog.ru | |
| import logging | |
| import os | |
| import subprocess | |
| import sys |
This guide shows how to import into pass your passwords stored in Apple's Keychain Access.
The default kaychain file is ~/Library/Keychains/login.keychain.
Passwords under the "Local Items" keychain (the default since Mavericks to sync with iCloud) use a different file format and can not be exported via the Apple's security tool we use. If that is you case, create a new keychain and drag-and-drop the keys. Your new keychain should have the .keychain extension.