Skip to content

Instantly share code, notes, and snippets.

View jdkent's full-sized avatar
👉
Getting by

James Kent jdkent

👉
Getting by
View GitHub Profile
@effigies
effigies / python_packaging_2019.md
Last active October 12, 2020 19:10
Contemporary Python Packaging - August 2019

Contemporary Python Packaging

This document lays out a set of Python packaging practices. I don't claim they are best practices, but they fit my needs, and might fit yours.

Validity

This document has been superseded as of July 2020.

This was written in July 2019. As of this writing Python 2.7 and Python 3.5 still have not

@miykael
miykael / motion_correction_of_temporal_high_resolution_fMRI_bandpass.ipynb
Last active June 26, 2021 14:49
Motion correction of fMRI data with high temporal resolution (~500ms), using a band-pass filter
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ColinDuquesnoy
ColinDuquesnoy / html_logger.py
Last active November 18, 2024 05:15
HTML logger for python (inspired by the Horde3D logger)
"""
HTML logger inspired by the Horde3D logger.
Usage:
- call setup and specify the filename, title, version and level
- call dbg, info, warn or err to log messages.
"""
import logging
import time