Skip to content

Instantly share code, notes, and snippets.

View cimarron-pistoncloud's full-sized avatar

Cimarron Taylor cimarron-pistoncloud

View GitHub Profile
@cimarron-pistoncloud
cimarron-pistoncloud / pandoc.css
Created May 4, 2017 15:58 — forked from killercup/pandoc.css
Add this to your Pandoc HTML documents using `--css pandoc.css` to make them look more awesome. (Tested with Markdown and LaTeX.)
/*
* I add this to html files generated with pandoc.
*/
html {
font-size: 100%;
overflow-y: scroll;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
@cimarron-pistoncloud
cimarron-pistoncloud / slack_history.py
Created August 17, 2017 18:56 — forked from Chandler/slack_history.py
Download Slack Channel/PrivateChannel/DirectMessage History
# MIT License
# Copyright (c) 2016 Chandler Abraham
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
@cimarron-pistoncloud
cimarron-pistoncloud / scalaz-nel.scala
Created May 16, 2018 20:13 — forked from manjuraj/scalaz-nel.scala
scalaz NonEmptyList (NEL)
//
// NonEmptyList (Nel)
// - A singly-linked list that is guaranteed to be non-empty
// - https://github.com/scalaz/scalaz/blob/series/7.2.x/core/src/main/scala/scalaz/NonEmptyList.scala
//
final class NonEmptyList[+A](val head: A, val tail: List[A]) {
...
}
//