FROM php:7.4-fpm
RUN apt-get update \
&& apt-get install -y \
apt-utils \
man \
curl \
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nocompatible " be iMproved, required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" alternatively, pass a path where Vundle should install plugins | |
"call vundle#begin('~/some/path/here') | |
" let Vundle manage Vundle, required |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# JSON-LD Article markup #} | |
<script type="application/ld+json"> | |
{ | |
"@context": "http://schema.org", | |
"@type": "Article", | |
"headline": "{{ article.title }}", | |
"description": "{{ article.teaser|default('') }}", | |
"mainEntityOfPage": "{{ absolute_url(article.link()) }}", | |
"author": "{{ article.user.displayname }}", | |
"datePublished": "{{ article.datepublish }}", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Base Margins */ | |
.m-0 { margin: 0 !important; } | |
.m-1 { margin: .25rem !important; } | |
.m-2 { margin: .5rem !important; } | |
.m-3 { margin: .75rem !important; } | |
.m-4 { margin: 1rem !important; } | |
.mt-0 { margin-top: 0 !important; } | |
.mt-1 { margin-top: .25rem !important; } | |
.mt-2 { margin-top: .5rem !important; } | |
.mt-3 { margin-top: .75rem !important; } |
How to setup npm proxy settings behind HTTP and HTTPS proxy on Windows
In your user home dir create file .npmrc
with your username and password:
proxy = http://user:[email protected]:8080
NewerOlder