Skip to content

Instantly share code, notes, and snippets.

View martinkozle's full-sized avatar

Martin Popovski martinkozle

View GitHub Profile
@martinkozle
martinkozle / celery.py
Last active July 10, 2024 00:32
Celery Pydantic Task PoC
import celery
from tasks import FooTask
app = celery.Celery(
"app",
broker="amqp://",
)
FooTask.register_for_app(app)
@Lissy93
Lissy93 / Example 1 - Getting Started - conf.yml
Last active May 5, 2025 03:15
Example Config Files for Dashy
---
# Page meta info, like heading, footer text and nav links
pageInfo:
title: Dashy
description: Welcome to your new dashboard!
navLinks:
- title: GitHub
path: https://github.com/Lissy93/dashy
- title: Documentation
path: https://dashy.to/docs
@yhatt
yhatt / marp.md
Last active May 7, 2025 17:23
Marp Next example
marp

Marp

h:250

Markdown presentation ecosystem
@willurd
willurd / web-servers.md
Last active May 4, 2025 11:11
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000