This file was generated automatically based on this two sources:
- /etc/nginx/mime.types
- http://www.garykessler.net/library/file_sigs.html
This is a JSON object by following structure:
[string ext] : {
signs: [sign]
| #! /usr/bin/env stack | |
| -- stack --resolver lts-18.8 script | |
| {-# LANGUAGE OverloadedStrings #-} | |
| {- | |
| This is a handy illustration of converting between five of the commonly-used | |
| string types in Haskell (String, ByteString, lazy ByteString, Text and lazy | |
| Text). |
| {-# LANGUAGE NoImplicitPrelude #-} | |
| {-# LANGUAGE ScopedTypeVariables #-} | |
| {-# LANGUAGE OverloadedStrings #-} | |
| module Main where | |
| import Protolude | |
| import qualified Web.Scotty as Sc | |
| import qualified Data.Text as Txt | |
| import qualified Network.Wai.Middleware.Gzip as Sc |
This file was generated automatically based on this two sources:
This is a JSON object by following structure:
[string ext] : {
signs: [sign]
| Disable vim automatic visual mode on mouse select | |
| issue: :set mouse-=a | |
| add to ~/.vimrc: set mouse-=a | |
| my ~/.vimrc for preserving global defaults and only changing one option: | |
| source $VIMRUNTIME/defaults.vim | |
| set mouse-=a |
This method avoids merge conflicts if you have periodically pulled master into your branch. It also gives you the opportunity to squash into more than 1 commit, or to re-arrange your code into completely different commits (e.g. if you ended up working on three different features but the commits were not consecutive).
Note: You cannot use this method if you intend to open a pull request to merge your feature branch. This method requires committing directly to master.
Switch to the master branch and make sure you are up to date:
| {{! this is a specific (dummy) page with a menu in the 'portal' application}} | |
| {{< portal/prototypes/menuPage.html}} | |
| {{$pageId}}aboutMe{{/pageId}} | |
| {{$pageTitle}} | |
| {{#i18n}}aboutMe.title{{/i18n}} | |
| {{/pageTitle}} | |
| {{$pageContent}} | |
| {{#i18n}}aboutMe.title{{/i18n}} | |
| {{/pageContent}} |
| """ | |
| Collection of functions related to musical consonance, Just intonation, etc. | |
| """ | |
| from fractions import Fraction | |
| from math import log | |
| from functools import reduce | |
| def product(*iterable): |