Skip to content

Instantly share code, notes, and snippets.

View Artnoc1's full-sized avatar
💭
I may be slow to respond.

Alex Artnoc1

💭
I may be slow to respond.
View GitHub Profile
@Artnoc1
Artnoc1 / .FORK
Last active November 11, 2022 11:17 — forked from drnic/Very Gisty
termux.md FORK.md [[bash4]].md bashrc
#gh repo fork mzlogin/
#gh repo fork https://github.com/ --clone
# ------------------------------------------------------
#
gh repo fork mzlogin/mzlogin/snippets --clone
gh repo fork mzlogin/MemIniParser --clone
gh repo fork mzlogin/cscope_macros.vim --clone
gh repo fork mzlogin/StickExpandListHead --clone
gh repo fork mzlogin/WrapContentListView --clone
gh repo fork mzlogin/patterns-and-architectures --clone
@Artnoc1
Artnoc1 / .REGEXP.md
Last active February 3, 2022 23:33 — forked from octaviusg/Regextutorial.md
Regex Tutorial

REG.EXP


#Replacement
$n nth non-pa-ssive group
$2 "-xyz-" in /^(abc-(xy-z))$/
$1 "-xyz-" in /^(?:a-bc)-(xyz)$/
$` Before matched string
$' After matched string

@Artnoc1
Artnoc1 / FRONTEND.DEVELOPMENT.BOOKMARKS
Last active September 29, 2021 13:32 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.
# Frontend Development
**Attention**: the list was moved to
[https://github.com/dypsilon/frontend-dev-bookmarks](https://github.com/dypsilon/frontend-dev-bookmarks)
This page is not maintained anymore, please update your bookmarks.
-------------------------------------------------------

Commit Message Guidelines

Short (72 chars or less) summary

More detailed explanatory text. Wrap it to 72 characters. The blank
line separating the summary from the body is critical (unless you omit
the body entirely).

Write your commit message in the imperative: "Fix bug" and not "Fixed
bug" or "Fixes bug." This convention matches up with commit messages
@Artnoc1
Artnoc1 / GENERATING.NEW.PROJECTS.USING.MAVEN.ARCHETYPES
Last active September 29, 2021 13:33 — forked from rafaeltuelho/redhat-pam-dm-notes.md
My Red Hat PAM/DM (jBPM/Drools) random notes
# Generating new Projects using maven archetypes
## jBPM project
Manually create business application
In case you can’t use jBPM online service to generate the application you can manually create individual projects. jBPM provides maven archetypes that can be easily used to generate the application. In fact jBPM online service uses these archetypes behind the scenes to generate business application.
* Business assets project archetype
```
org.kie:kie-kjar-archetype:7.11.0.Final
```
* Service project archetype
@Artnoc1
Artnoc1 / openshift-cheatsheet.md
Last active August 27, 2020 19:40 — forked from rafaeltuelho/openshift-cheatsheet.md
My Openshift Cheatsheet

Моя шпаргалка по Openshift

Секреты сборки Openshift для клонирования репозиториев git с использованием ключей SSH

  • Чтобы создать секрет ssh: '' oc создать секретный общий sshsecret \ --from-file = ssh-privatekey = $ HOME / .ssh / id_rsa ''
@Artnoc1
Artnoc1 / Makefile.md
Last active March 6, 2022 17:42 — forked from isaacs/Makefile

#Здравствуйте, и добро пожаловать в основы makefile.
#Вы узнаете, почему make так хорош и почему, несмотря на его" странный "синтаксис, на самом деле это очень выразительный, эффективный и мощный способ создания программ.
#Как только вы закончите здесь, перейдите к http://www.gnu.org/software/make/manual/make.html , чтобы узнать ТАКОЕ много чего еще.

#Чтобы что-то сделать с make, вы набираете make в каталоге, в котором есть файл с именем "Makefile". Вы также можете ввести make -f <makefile>, чтобы использовать другой имя файла.
#Makefile - это набор правил. Каждое правило - это рецепт выполнения определенного что-то вроде задачи ворчания или скрипта npm package.json.
#Правило выглядит так:
#<цель>: <предварительные требования ...> <команды>
#Требуется "цель". Предварительные требования необязательны, а команды также необязательны, но у вас должен быть один или другой. Введите "make" и посмотрите, что произойдет:

@Artnoc1
Artnoc1 / .SSH.md
Last active January 18, 2022 08:04 — forked from bradtraversy/ssh.md
SSH & DevOps Crash Course Snippets

#SSH_CHEAT_SHEET


#This sheet goes along with this SSH YouTube tutorial


#Login via SSH with password (LOCAL SERVER) $ ssh brad@192.168.1.29

@Artnoc1
Artnoc1 / vscode_keyboard.md
Last active March 18, 2021 03:28 — forked from neretin-trike/vscode.md
Горячие клавиши

СОЧЕТАНИЕ КЛАВИШ VS

Частоиспользуемые сочетания клавиш в Visual Code

Файл

Ctr + Shift + F - искать в файлах и файлы
Ctr + Shift + N - новое окно редактора
Ctr + K O - открыть папку
Ctr + K W - закрыть папку

@Artnoc1
Artnoc1 / pug.md
Created August 27, 2020 00:35 — forked from neretin-trike/pug.md
Туториал по HTML препроцессору Pug (Jade)