Skip to content

Instantly share code, notes, and snippets.

View AWhetter's full-sized avatar

Ashley Whetter AWhetter

  • Vancouver, BC, Canada
View GitHub Profile
@mpdehnel
mpdehnel / listings-settings.tex
Created April 9, 2015 22:13
Nice(ish) settings for LaTeX Package Listings
% All in preamble:
\usepackage{listings}
\usepackage{courier}
\usepackage{color}
\definecolor{mygreen}{rgb}{0,0.6,0}
\definecolor{mygray}{rgb}{0.5,0.5,0.5}
\definecolor{mymauve}{rgb}{0.58,0,0.82}
@andrewseidl
andrewseidl / Clang-format Comparison.md
Last active April 10, 2024 04:10
Clang-format style comparison

This is a comparison of the different formatting styles including with clang-format.

Generated via:

styles=( LLVM Google Chromium Mozilla WebKit )
for style in $styles
do
  clang-format -style=$style ChLcpIterativeAPGD.h > ChLcpIterativeAPGD.$style.h

done