This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env nix-shell | |
#!nix-shell -i runhaskell -p "haskellPackages.ghcWithPackages (hps: with hps; [wai-middleware-static warp unix])" | |
{-# LANGUAGE OverloadedStrings #-} | |
module Main where | |
import Network.Wai | |
import Network.Wai.Middleware.Static | |
import Network.Wai.Handler.Warp | |
import Network.HTTP.Types.Status | |
import System.Posix.Directory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\ProvidesPackage{philcite} | |
\usepackage{csquotes} | |
\usepackage[% | |
style=philosophy-verbose% | |
, sorting=nyt% | |
, shorthandintro=true% | |
, loccittracker=context% | |
, inbeforejournal=true | |
]{biblatex} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ fetchurl, fetchgit }: | |
self: | |
super: | |
let | |
registries = { | |
yarn = n: | |
v: | |
"https://registry.yarnpkg.com/${n}/-/${n}-${v}.tgz"; | |
npm = n: | |
v: |