This package helps with templated content generation for your docs/source code. It is heavily inspired by how Rome generates docs and source code.
npm install -D make-me-a-content
This package helps with templated content generation for your docs/source code. It is heavily inspired by how Rome generates docs and source code.
npm install -D make-me-a-content
| set nocompatible | |
| filetype off | |
| " load vim plug if it is not installed | |
| if empty(glob('~/.vim/autoload/plug.vim')) | |
| silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs | |
| \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
| autocmd VimEnter * PlugInstall --sync | source $MYVIMRC | |
| endif | 
| internal/path/collections.ts:91:9 internalError/request INTERNAL βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| Γ Could not find element for /Users/antonk52/Documents/dev/personal/rome/internal/js-analysis/index.ts | |
| 1. ___R$project$rome$$internal$path$collections_ts$AbsoluteFilePathMap.assert (internal/path/collections.ts:91:9) | |
| 89 β if (item === undefined) { | |
| 90 β throw new Error(`Could not find element for ${path.join()}`); | |
| > 91 β } else { | |
| β ^ | |
| 92 β return item; | 
| yandex browser talk | |
| https://events.yandex.ru/lib/talks/6977/ | |
| babushka talk | |
| https://youtu.be/_muWJOUe420ΠΉ | |
| outdated browsers page | |
| https://bestvpn.org/outdatedbrowser/en | |
| express-useragent | 
| set nocompatible | |
| filetype off | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
| call plug#end() | |
| filetype plugin indent on | |
| " ======= coc settings | 
| set nocompatible | |
| filetype off | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'autozimu/LanguageClient-neovim', { | |
| \ 'branch': 'next', | |
| \ 'do': 'bash install.sh', | |
| \ } | |
| call plug#end() | |
| filetype plugin indent on | 
| var isMobile = { | |
| Android: function() { | |
| return navigator.userAgent.match(/Android/i); | |
| }, | |
| BlackBerry: function() { | |
| return navigator.userAgent.match(/BlackBerry/i); | |
| }, | |
| iOS: function() { | |
| return navigator.userAgent.match(/iPhone|iPod/i); | |
| }, |