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