Skip to content

Instantly share code, notes, and snippets.

@lukas-h
lukas-h / license-badges.md
Last active May 21, 2024 17:21
Markdown License Badges for your Project

Markdown License badges

Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.

Notes

  • The badges do not fully replace the license informations for your projects, they are only emblems for the README, that the user can see the License at first glance.

Translations: (No guarantee that the translations are up-to-date)

@marsam
marsam / two-col-cv.tex
Created November 27, 2011 00:59
Two column cv
% ----------------------------------------------------------------------------------------%
% Created by Alessandro with TeXShop %
% ----> May 27, 2009 %
% Compiled with XeLaTeX, on Mac OS X %
% Licensed under the Creative Commons Attribution 3.0 Unported %
% Share, change, spread, and have fun! %
% http://creativecommons.org/licenses/by/3.0/ %
% You can find more at http://aleplasmati.comuv.com %
% ----------------------------------------------------------------------------------------%
(ns markov
(use clojure.test))
;; ---------- basic markov chain utils and API ----------
(defn n-grams
"Partition seq s into all sequential groups of n items"
[n s]
(partition n 1 (repeat nil) s))