Skip to content

Instantly share code, notes, and snippets.

View jgbell100's full-sized avatar

John Bell jgbell100

View GitHub Profile
@debruine
debruine / tables_demo.qmd
Last active May 26, 2022 15:05
Testing methods for df_print-like custom table printing in quarto
---
title: "Table printing demo"
author: "Lisa DeBruine"
toc: true
toc_float: true
---
## Code
These functions should override `knitr::knit_print()` for data frames, but wasn't working at all until I learned in [the knit_print vignette](https://cran.r-project.org/web/packages/knitr/vignettes/knit_print.html) that you have to use `registerS3method()`.
@sloria
sloria / bobp-python.md
Last active May 9, 2024 01:42
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens