Skip to content

Instantly share code, notes, and snippets.

View malcolmgreaves's full-sized avatar

Malcolm Greaves malcolmgreaves

View GitHub Profile
@malcolmgreaves
malcolmgreaves / rust_fn_passing_generics.rs
Created March 11, 2025 22:40
Rust function parameter via generics
fn foo() -> impl Fn(i32) -> i32 {
|x| x + 1
}
fn qux<F>(f: F) -> i32
where F: Fn(i32) -> i32 {
f(10)
}
pub fn main() {
@malcolmgreaves
malcolmgreaves / rust_impl_vs_dyn_function_parameter.rs
Created February 18, 2025 19:31
rustc arm assembly code differences for &dyn fn vs. &impl fn: accepting a function parameter
fn foo() -> impl Fn(i32) -> i32 {
|x| x + 1
}
fn bar(f: &impl Fn(i32) -> i32) -> i32 {
f(10)
}
fn baz(f: &dyn Fn(i32) -> i32) -> i32 {
f(10)
@malcolmgreaves
malcolmgreaves / curl.md
Created December 11, 2024 20:24 — forked from subfuzion/curl.md
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.

@malcolmgreaves
malcolmgreaves / setup_reqs_no_versions_from_txt.py
Created October 7, 2024 23:49
setup.py for getting requirements sans version information from a requirements.txt file for install_requires
from setuptools import setup
if __name__ == "__main__":
def has_requirement(x: str) -> bool:
x = x.strip()
if x.startswith("#"):
return False
return True
@malcolmgreaves
malcolmgreaves / is_literal.py
Created April 29, 2024 21:40
Check if a value is of a literal type.
from typing import Any, Literal
def is_literal(literal_type: type, value: Any) -> bool:
"""Returns True iff the `value` is a variant of the input `literal_type`. False otherwise.
Raises a `ValueError` iff the input `literal_type` is not a `typing.Literal`.
"""
if not hasattr(literal_type, '__origin__') or literal_type.__origin__ != Literal:
raise ValueError(f"Expecting literal type, not {literal_type=}")
@malcolmgreaves
malcolmgreaves / local_temp_dir_rm_exit_trap.sh
Last active April 12, 2024 17:59
Reusable bash functions for creating a local temporary directory with rm exit trap.
#!/usr/bin/env bash
set -euo pipefail
####################################################################
#
# Reusable functions for creating a local temporary directory:
# - [mk_tmp_dir] create local directory with unique name
# - [cleanup] add exit trap to rm this directory
#!/usr/bin/env bash
apt update
#
# install lmdb
#
apt install -y liblmdb-dev
LMDB_FORCE_SYSTEM=1 LMDB_FORCE_CFFI=1 pip install cffi
@malcolmgreaves
malcolmgreaves / conda.Dockerfile
Last active April 5, 2024 19:18
A Dockerfile that installs conda. Uses a GPU-enabled image (with CUDA) as a base, but miniconda install & setup is portable.
# syntax=docker/dockerfile:1.3
ARG UBUNTU_VERSION=18.04
ARG CUDA_VERSION=11.3.1
# Or use a different image.
FROM nvidia/cuda:${CUDA_VERSION}-cudnn8-devel-ubuntu${UBUNTU_VERSION}
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# #
# system packages #
@malcolmgreaves
malcolmgreaves / bug_pandas_map_mangles_column_datatype.py
Created February 13, 2024 19:35
Demonstration showing a bug in Pandas: it automatically converts datetime columns into a different pandas-specific type, even when the original column has `dtype=object`.
from datetime import datetime
import pandas as pd
now = datetime.now()
df = pd.DataFrame.from_dict(
{
"created_at": pd.Series([now, now - timedelta(seconds=100), now + timedelta(seconds=10)], dtype='object'),
}
@malcolmgreaves
malcolmgreaves / pandas_required_columns.py
Last active February 10, 2024 02:18
Conceptual framework for writing Pandas DataFrame code where required columns are not only documented, but parameterized. This establishes an interface between the name of a column in code vs. its name in the data.
from abc import ABC
from dataclasses import dataclass
from typing import List, NamedTuple, Sequence, Type, TypeVar
import pandas as pd
__all__: Sequence[str] = (
# main abstraction & utilities for columns required in a dataframe
"Columns",