#Replacement
$n nth non-pa-ssive group
$` Before matched string
$' After matched string
| #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 |
| # 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. | |
| ------------------------------------------------------- |
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
| # 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 |
#Здравствуйте, и добро пожаловать в основы makefile.
#Вы узнаете, почему make так хорош и почему, несмотря на его" странный "синтаксис, на самом деле это очень выразительный, эффективный и мощный способ создания программ.
#Как только вы закончите здесь, перейдите к http://www.gnu.org/software/make/manual/make.html , чтобы узнать ТАКОЕ много чего еще.
#Чтобы что-то сделать с make, вы набираете make в каталоге, в котором есть файл с именем "Makefile". Вы также можете ввести make -f <makefile>, чтобы использовать другой имя файла.
#Makefile - это набор правил. Каждое правило - это рецепт выполнения определенного что-то вроде задачи ворчания или скрипта npm package.json.
#Правило выглядит так:
#<цель>: <предварительные требования ...> <команды>
#Требуется "цель". Предварительные требования необязательны, а команды также необязательны, но у вас должен быть один или другой. Введите "make" и посмотрите, что произойдет:
#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
Pug - это препроцессор HTML и шаблонизатор, который был написан на JavaScript для Node.js.