Skip to content

Instantly share code, notes, and snippets.

@sys9kdr
sys9kdr / install-texlive-without-docs.py
Created October 10, 2018 09:06 — forked from briandk/install-texlive-without-docs.py
Instal a full latex texlive on Ubuntu Xenial without any of the docs
import subprocess
get_line_by_line_texlive_dependencies = subprocess.run(
[
"apt-cache",
"depends",
"texlive-full"
],
universal_newlines=True,
stdout=subprocess.PIPE
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Fizz Buzz</title>
<style>
#main li:nth-child(3n),
#main li:nth-child(5n){
font-size: 0;
}
@sys9kdr
sys9kdr / ichimatsu.css
Last active December 19, 2015 10:29 — forked from Griever/ichimatsu.css
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix(data:image/),
regexp("(?:https?|chrome)://.*\.(?:jpe?g|png|gif|bmp|svg|webp|JPE?G|PNG|GIF|BMP|SVG|WEBP)([?#].*)?$") {
body {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAAAAABWESUoAAAAHUlEQVQ4y2P4gQYeoAGGUQUjSgG6ALqGUQUjSgEAdjWwLh+tpFgAAAAASUVORK5CYII=") !important;
}
body > img[src][alt] {
box-shadow: 0px 0px 2px 1px navy;
}