docs: add all untracked content
|
|
@ -2,7 +2,7 @@
|
|||
title: 01-base-helm
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-09T15:06:22.191Z
|
||||
date: 2023-11-09T15:06:26.646Z
|
||||
tags: helm
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-08T08:24:36.599Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: 02-video-app-metadata
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-09T10:02:30.373Z
|
||||
date: 2023-11-09T10:02:36.449Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-08T10:42:51.395Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: 03-video-spec
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-09T14:12:51.136Z
|
||||
date: 2023-11-09T14:12:57.049Z
|
||||
tags: helm
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-09T10:06:13.204Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: 04-video-svc-ingress
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-09T14:58:52.878Z
|
||||
date: 2023-11-09T14:58:58.607Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-09T14:11:37.963Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: 05-video-cm
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-09T15:05:32.795Z
|
||||
date: 2023-11-09T15:05:38.914Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-09T15:05:32.795Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: 06-video-final
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-09T15:17:21.129Z
|
||||
date: 2023-11-09T15:17:27.035Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-09T15:17:21.129Z
|
||||
|
|
|
|||
|
|
@ -0,0 +1,60 @@
|
|||
---
|
||||
kind: Deployment
|
||||
apiVersion: apps/v1
|
||||
metadata:
|
||||
name: openresty
|
||||
labels:
|
||||
k8s-app: openresty
|
||||
annotations:
|
||||
reloader.stakater.com/auto: "true"
|
||||
configmap.reloader.stakater.com/reload: "openresty"
|
||||
spec:
|
||||
replicas: 2
|
||||
revisionHistoryLimit: 3
|
||||
selector:
|
||||
matchLabels:
|
||||
k8s-app: openresty
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
k8s-app: openresty
|
||||
spec:
|
||||
containers:
|
||||
- name: openresty
|
||||
image: openresty/openresty:centos-rpm
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- containerPort: 80
|
||||
name: http
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /index.html
|
||||
port: http
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 15
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /index.html
|
||||
port: http
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 15
|
||||
timeoutSeconds: 5
|
||||
resources:
|
||||
limits:
|
||||
cpu: "0.2"
|
||||
memory: "400Mi"
|
||||
requests:
|
||||
cpu: "0.1"
|
||||
memory: "200Mi"
|
||||
volumeMounts:
|
||||
- name: html
|
||||
mountPath: /usr/local/openresty/nginx/html/
|
||||
- name: config
|
||||
mountPath: /etc/nginx/conf.d/
|
||||
volumes:
|
||||
- name: html
|
||||
configMap:
|
||||
name: openresty-html
|
||||
- name: config
|
||||
configMap:
|
||||
name: openresty-conf
|
||||
|
|
@ -0,0 +1,60 @@
|
|||
---
|
||||
kind: Deployment
|
||||
apiVersion: apps/v1
|
||||
metadata:
|
||||
name: openresty
|
||||
labels:
|
||||
k8s-app: openresty
|
||||
annotations:
|
||||
reloader.stakater.com/auto: "true"
|
||||
configmap.reloader.stakater.com/reload: "openresty"
|
||||
spec:
|
||||
replicas: 2
|
||||
revisionHistoryLimit: 3
|
||||
selector:
|
||||
matchLabels:
|
||||
k8s-app: openresty
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
k8s-app: openresty
|
||||
spec:
|
||||
containers:
|
||||
- name: openresty
|
||||
image: openresty/openresty:centos-rpm
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- containerPort: 80
|
||||
name: http
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /index.html
|
||||
port: http
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 15
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /index.html
|
||||
port: http
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 15
|
||||
timeoutSeconds: 5
|
||||
resources:
|
||||
limits:
|
||||
cpu: "0.2"
|
||||
memory: "400Mi"
|
||||
requests:
|
||||
cpu: "0.1"
|
||||
memory: "200Mi"
|
||||
volumeMounts:
|
||||
- name: html
|
||||
mountPath: /usr/local/openresty/nginx/html/
|
||||
- name: config
|
||||
mountPath: /etc/nginx/conf.d/
|
||||
volumes:
|
||||
- name: html
|
||||
configMap:
|
||||
name: openresty-html
|
||||
- name: config
|
||||
configMap:
|
||||
name: openresty-conf
|
||||
|
|
@ -0,0 +1,60 @@
|
|||
---
|
||||
kind: Deployment
|
||||
apiVersion: apps/v1
|
||||
metadata:
|
||||
name: openresty
|
||||
labels:
|
||||
k8s-app: openresty
|
||||
annotations:
|
||||
reloader.stakater.com/auto: "true"
|
||||
configmap.reloader.stakater.com/reload: "openresty"
|
||||
spec:
|
||||
replicas: 2
|
||||
revisionHistoryLimit: 3
|
||||
selector:
|
||||
matchLabels:
|
||||
k8s-app: openresty
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
k8s-app: openresty
|
||||
spec:
|
||||
containers:
|
||||
- name: openresty
|
||||
image: openresty/openresty:centos-rpm
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- containerPort: 80
|
||||
name: http
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /index.html
|
||||
port: http
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 15
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /index.html
|
||||
port: http
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 15
|
||||
timeoutSeconds: 5
|
||||
resources:
|
||||
limits:
|
||||
cpu: "0.2"
|
||||
memory: "400Mi"
|
||||
requests:
|
||||
cpu: "0.1"
|
||||
memory: "200Mi"
|
||||
volumeMounts:
|
||||
- name: html
|
||||
mountPath: /usr/local/openresty/nginx/html/
|
||||
- name: config
|
||||
mountPath: /etc/nginx/conf.d/
|
||||
volumes:
|
||||
- name: html
|
||||
configMap:
|
||||
name: openresty-html
|
||||
- name: config
|
||||
configMap:
|
||||
name: openresty-conf
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
title: bash-completion для kubectl
|
||||
description:
|
||||
published: true
|
||||
date: 2023-12-26T10:23:32.800Z
|
||||
date: 2024-07-09T09:49:55.778Z
|
||||
tags: bash, kubectl
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-08T08:53:22.629Z
|
||||
|
|
|
|||
|
After Width: | Height: | Size: 122 KiB |
|
After Width: | Height: | Size: 451 KiB |
|
After Width: | Height: | Size: 82 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
|
|
@ -2,7 +2,7 @@
|
|||
title: Как проходить собеседования
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T16:31:42.044Z
|
||||
date: 2024-07-09T09:49:26.072Z
|
||||
tags: work, find
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-15T16:31:42.044Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Бессмысленная работа DevOps
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T16:28:01.117Z
|
||||
date: 2024-07-09T09:49:29.590Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-15T16:28:01.117Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Игра, обучение
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T16:29:10.428Z
|
||||
date: 2024-07-09T09:49:33.389Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-15T16:29:10.428Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: ПО, которое необходимо для установки и настройки хакинтоша
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T18:15:26.116Z
|
||||
date: 2024-07-09T09:49:36.868Z
|
||||
tags: mac, soft, hackintosh
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-07T10:42:22.230Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Synology-support-HEVC
|
||||
description:
|
||||
published: true
|
||||
date: 2024-04-01T15:15:52.913Z
|
||||
date: 2024-07-09T09:49:40.393Z
|
||||
tags: hevc, synology
|
||||
editor: ckeditor
|
||||
dateCreated: 2024-04-01T15:15:52.913Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Установка XPEnology
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T17:00:34.979Z
|
||||
date: 2024-07-09T09:49:44.068Z
|
||||
tags: xpenology
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-15T16:50:54.856Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Lampa
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T16:16:40.380Z
|
||||
date: 2024-07-09T09:49:47.593Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-15T16:16:40.380Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Jacket
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T16:16:16.404Z
|
||||
date: 2024-07-09T09:49:59.258Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-15T16:16:16.404Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Torrserver
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T16:17:38.636Z
|
||||
date: 2024-07-09T09:50:02.697Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-15T16:17:38.636Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Сервис документации Gitbook
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T16:25:24.896Z
|
||||
date: 2024-07-09T09:50:06.265Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-15T16:25:24.896Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Joplin аля Evernote
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T16:20:19.477Z
|
||||
date: 2024-07-09T09:50:10.752Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-15T16:20:19.477Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Автоматизации написания документации
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T16:23:59.264Z
|
||||
date: 2024-07-09T09:50:14.462Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-15T16:22:07.682Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Zammad
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T16:13:37.364Z
|
||||
date: 2024-07-09T09:50:18.059Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-15T16:12:51.621Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: FreeScout Help Desk
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T16:12:07.708Z
|
||||
date: 2024-07-09T09:50:21.851Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-15T16:12:07.708Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Менеджер паролей Passwork
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T16:47:23.462Z
|
||||
date: 2024-07-09T09:50:26.092Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-15T16:36:08.780Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Менеджер паролей Bitwarden
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T16:34:29.896Z
|
||||
date: 2024-07-09T09:50:29.679Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-15T16:34:29.896Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Выделенный сервер 1С
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T16:48:23.320Z
|
||||
date: 2024-07-09T09:49:51.459Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-15T16:48:23.320Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Home Page
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-08T12:52:20.918Z
|
||||
date: 2024-07-09T09:49:22.061Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-03T14:27:02.804Z
|
||||
|
|
|
|||
|
After Width: | Height: | Size: 451 KiB |
|
|
@ -0,0 +1,3 @@
|
|||
https://github.com/gkpln3/ConfluenceToWikiJS
|
||||
|
||||
Можно так же попробовать сконвертировать html в markdown
|
||||
|
After Width: | Height: | Size: 82 KiB |
|
|
@ -2,7 +2,7 @@
|
|||
title: Запрос размера таблиц Clickhouse
|
||||
description:
|
||||
published: true
|
||||
date: 2024-03-13T10:13:40.903Z
|
||||
date: 2024-03-13T10:13:44.768Z
|
||||
tags: clickhouse, query
|
||||
editor: ckeditor
|
||||
dateCreated: 2024-03-13T10:11:53.025Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Bat как замена для cat
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T18:07:37.064Z
|
||||
date: 2023-11-15T18:07:41.351Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-15T18:07:37.064Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Foreman - централизованное управление серверами
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T18:15:58.065Z
|
||||
date: 2023-11-15T18:16:01.944Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-15T18:15:38.027Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: HSTR - история, утилита
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T18:17:34.603Z
|
||||
date: 2023-11-15T18:17:38.465Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-15T18:17:34.603Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: bg & less
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T18:09:58.490Z
|
||||
date: 2023-11-15T18:10:02.768Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-15T18:09:58.490Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: iftop
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T18:20:14.643Z
|
||||
date: 2023-11-15T18:20:18.654Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-15T18:20:14.643Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Cервис localtunnel
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T18:13:12.227Z
|
||||
date: 2023-11-15T18:13:16.532Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-15T18:11:13.511Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Midnight Commander
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T18:21:18.474Z
|
||||
date: 2023-11-15T18:21:22.921Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-15T18:21:18.474Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Nano - расцветка синтаксиса
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T18:23:47.499Z
|
||||
date: 2023-11-15T18:23:51.663Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-15T18:23:47.499Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: PGbouncer
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T17:53:03.556Z
|
||||
date: 2023-11-15T17:53:07.867Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-15T17:46:34.218Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Создание пользователя с правами на базы
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T17:53:56.246Z
|
||||
date: 2023-11-15T17:54:00.564Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-15T17:53:56.246Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Выпускаем свой сертификат через свой CA
|
||||
description:
|
||||
published: true
|
||||
date: 2024-04-24T09:45:43.127Z
|
||||
date: 2024-04-24T09:45:47.898Z
|
||||
tags: ssl
|
||||
editor: markdown
|
||||
dateCreated: 2024-04-24T09:45:43.127Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Обход блокировок через VPN (privoxy)
|
||||
description:
|
||||
published: true
|
||||
date: 2024-04-24T09:54:39.876Z
|
||||
date: 2024-04-24T09:54:44.065Z
|
||||
tags: privoxy, vpn
|
||||
editor: markdown
|
||||
dateCreated: 2024-04-24T09:54:39.876Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: VPN сервер ipsec
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T17:55:15.923Z
|
||||
date: 2024-04-24T09:55:23.699Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-15T17:55:15.923Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Анализ дисковой активности в Linux
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T17:57:25.992Z
|
||||
date: 2023-11-15T17:57:30.267Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-15T17:57:25.992Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Анализ системы
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T18:00:46.536Z
|
||||
date: 2023-11-15T18:00:50.962Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-15T18:00:08.853Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Виртуальная среда venv в python
|
||||
description:
|
||||
published: true
|
||||
date: 2024-04-12T10:15:15.531Z
|
||||
date: 2024-04-12T10:15:19.492Z
|
||||
tags: venv, python
|
||||
editor: ckeditor
|
||||
dateCreated: 2024-04-12T10:15:15.531Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: UFS Explorer
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T16:04:17.051Z
|
||||
date: 2024-07-09T09:50:33.595Z
|
||||
tags:
|
||||
editor: code
|
||||
dateCreated: 2023-11-15T16:04:17.051Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: rclone-backup
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T16:02:43.782Z
|
||||
date: 2023-11-15T16:02:47.835Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-15T15:58:15.041Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Syncthing - резервное копирование
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T18:14:49.621Z
|
||||
date: 2024-07-09T09:50:37.090Z
|
||||
tags: syncthing, backup
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-02T11:52:22.718Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: bash-completion автодополнение
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T18:14:53.812Z
|
||||
date: 2024-07-09T09:50:40.980Z
|
||||
tags: bash, linux
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-03T08:47:49.396Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Отвязка процесса от терминальной сессии
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T18:15:16.344Z
|
||||
date: 2024-07-09T09:50:49.090Z
|
||||
tags: bash, process, screen
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-07T10:15:03.139Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Шпаргалка по выводу в терминале
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T18:15:21.619Z
|
||||
date: 2024-07-09T09:50:56.761Z
|
||||
tags: output, tee
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-07T10:37:25.945Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: CyberChef - преобразователь всего и вся
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T16:09:03.399Z
|
||||
date: 2024-07-09T09:51:00.476Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2023-11-15T16:07:15.571Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Авторизация по ключу rsa по ssh
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-07T18:15:06.736Z
|
||||
date: 2024-07-09T09:51:04.649Z
|
||||
tags: ssh, rsa
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-03T12:36:39.209Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Установка zsh
|
||||
description:
|
||||
published: true
|
||||
date: 2024-03-26T08:52:49.279Z
|
||||
date: 2024-07-09T09:51:04.697Z
|
||||
tags: zsh
|
||||
editor: markdown
|
||||
dateCreated: 2024-03-26T08:48:21.443Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Проброс портов в Windows
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-15T17:44:43.816Z
|
||||
date: 2023-11-15T17:44:48.059Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-15T17:41:44.280Z
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
title: Установка nano в Windows
|
||||
description:
|
||||
published: true
|
||||
date: 2024-02-27T16:15:42.054Z
|
||||
date: 2024-02-27T16:15:46.160Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2024-02-27T13:29:54.179Z
|
||||
|
|
|
|||
|
After Width: | Height: | Size: 2.9 KiB |