Skip to content

Instantly share code, notes, and snippets.

View smhr's full-sized avatar

smhr

View GitHub Profile
@smhr
smhr / high_performance_python.ipynb
Created December 12, 2024 08:21 — forked from lgarrison/high_performance_python.ipynb
High-Performance Python, or When to Write For Loops in Python
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@smhr
smhr / Makefile.remark
Last active April 9, 2016 07:23 — forked from sudarkoff/Makefile.pandoc
Makefile for converting Markdown to slides using markdown-to-slide and remark.
## Markdown to slides is a command line interface to convert markdown documents to an HTML slideshow.
## Basically, Markdown to slides uses remark to convert your markdown documents to HTML slideshows, i.e. that can be viewed in your favorite modern Web browser.
BUILD_DIR := build
REMARK := markdown-to-slides
MARKDOWN := $(wildcard *.md)
HTML := $(patsubst %.md,$(BUILD_DIR)/%.html,$(MARKDOWN))