Skip to content

Instantly share code, notes, and snippets.

@olimorris
olimorris / template.html
Created January 25, 2026 10:29
Anki Markdown Card Template - Syntax highlighting, KaTex support respects light/dark modes
<!-- FRONT CARD -->
<script type="module" src="https://cdn.jsdelivr.net/npm/zero-md@3?register"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.css">
<zero-md>
<template data-append>
<style>
div {
background-color: transparent !important;
}
@olimorris
olimorris / Dockerfile
Last active May 31, 2024 16:23
Use Docker to install MS-SQL Server 2017 with Full Text Search and MS-SQL Tools
# mssql-agent-fts-ha-tools
# Maintainers: Microsoft Corporation (twright-msft on GitHub)
# GitRepo: https://github.com/Microsoft/mssql-docker
# Base OS layer: Latest Ubuntu LTS
FROM ubuntu:16.04
# Install curl since it is needed to get repo config
# Get official Microsoft repository configuration
RUN export DEBIAN_FRONTEND=noninteractive && \