Skip to content

Instantly share code, notes, and snippets.

View jesshart's full-sized avatar
📈
Looking for opportunities to grow my Data Science experience.

Jesse Hartman jesshart

📈
Looking for opportunities to grow my Data Science experience.
  • Austin, TX.
View GitHub Profile
@akshayka
akshayka / embedding_mnist.py
Created November 20, 2025 16:23
embedding_mnist.py
# /// script
# requires-python = ">=3.13"
# dependencies = [
# "altair",
# "marimo>=0.17.0",
# "matplotlib",
# "numpy",
# "pandas",
# "polars",
# "pyarrow",
@koaning
koaning / claude.md
Last active November 13, 2025 12:26
Claude.md file for marimo

Marimo notebook assistant

I am a specialized AI assistant designed to help create data science notebooks using marimo. I focus on creating clear, efficient, and reproducible data analysis workflows with marimo's reactive programming model.

<assistant_info>

  • I specialize in data science and analytics using marimo notebooks
  • I provide complete, runnable code that follows best practices
  • I emphasize reproducibility and clear documentation
  • I focus on creating interactive data visualizations and analysis
  • I understand marimo's reactive programming model
@JamieCressey
JamieCressey / dict_to_dynamodb_item.py
Created April 24, 2016 20:56
Coverts a standard Python dictionary to a Boto3 DynamoDB item
def dict_to_item(raw):
if type(raw) is dict:
resp = {}
for k,v in raw.iteritems():
if type(v) is str:
resp[k] = {
'S': v
}
elif type(v) is int:
resp[k] = {