Skip to content

Instantly share code, notes, and snippets.

View merikan's full-sized avatar

Peter Merikan merikan

View GitHub Profile
@merikan
merikan / markdown.md
Last active August 29, 2015 14:26 — forked from jonschlinkert/markdown-cheatsheet.md
A better markdown cheatsheet. I used Bootstrap's Base CSS documentation as a reference.

Typography

Headings

Headings from h1 through h6 are constructed with a # for each level:

# h1 Heading
## h2 Heading
### h3 Heading
@merikan
merikan / README.md
Last active September 16, 2015 11:39 — forked from samnydahl/README.md
README template

Project name

You are encouraged to add “badges” such as Travis CI’s image Travis CI or Code Climate’s Code Climate. See this blogpost for more information

Synopsis

At the top of the file there should be a short introduction and/ or overview that explains what the project is. This description should match descriptions added for package managers (Gemspec, package.json, etc.)

Code Example

How to Contribute

Pull requests are greatly appreciated and are what makes opensource great. Here's a quick guide:

  • Fork it
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Add some feature')
  • Push to the branch (git push origin my-new-feature)
  • Create new Pull Request
@merikan
merikan / CHANGELOG.md
Last active April 7, 2023 05:37
A CHANGELOG template to be used in projects

Change Log

All notable changes to this project will be documented in this file.
This project adheres to Keep a CHANGELOG and Semantic Versioning

[Unreleased] - [unreleased]

Bug fixes

New features

# This file is for unifying the coding style for different editors and IDEs usin EditorConfig
# http://EditorConfig.org
# All EditorConfig properties:
# https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
root = true
# global settings
[*]
@merikan
merikan / pom.xml
Created June 16, 2014 12:28 — forked from gordonad/pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.gordondickens.sample</groupId>
<artifactId>sample-parent</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
---
# ^^^ YAML documents must begin with the document separator "---"
#
#### Example docblock, I like to put a descriptive comment at the top of my
#### playbooks.
#
# Overview: Playbook to bootstrap a new host for configuration management.
# Applies to: production
# Description:
# Ensures that a host is configured for management with Ansible.