Prototype on a laptop, scale to 16 billion rows: one Polars query
The post shows how to prototype a data pipeline locally on 97 million Polymarket orderbook rows, then run the same LazyFrame queries on 16 billion rows using distributed execution. The pipeline pre-aggregates the raw data into small Parquet artifacts in S3 that power a responsive Plotly Dash dashboard without scanning the full dataset on each request.
https://pola.rs/posts/market-data-to-plotly-enterprise-dashboard/
The post shows how to prototype a data pipeline locally on 97 million Polymarket orderbook rows, then run the same LazyFrame queries on 16 billion rows using distributed execution. The pipeline pre-aggregates the raw data into small Parquet artifacts in S3 that power a responsive Plotly Dash dashboard without scanning the full dataset on each request.
https://pola.rs/posts/market-data-to-plotly-enterprise-dashboard/
Polars
Prototype on a laptop, scale to 16 billion rows: one Polars query
Explore a subset of Polymarket orderbook data locally, then run the exact same Polars query on 16 billion rows with Polars Cloud and serve it with Plotly Dash.
jsonfold: Making Pretty-Printed JSON Compact and Readable in Python
jsonfold is a streaming post-filter that compacts pretty-printed JSON by folding small arrays and objects onto single lines while preserving existing serializers and custom encoders. It processes JSON incrementally without reparsing the document, keeping additional memory usage bounded while producing more compact, human-readable output for large JSON files.
https://medium.com/@yair.lenga/a-streaming-json-formatter-that-works-with-existing-serializers-eced220da37d
jsonfold is a streaming post-filter that compacts pretty-printed JSON by folding small arrays and objects onto single lines while preserving existing serializers and custom encoders. It processes JSON incrementally without reparsing the document, keeping additional memory usage bounded while producing more compact, human-readable output for large JSON files.
https://medium.com/@yair.lenga/a-streaming-json-formatter-that-works-with-existing-serializers-eced220da37d
Medium
jsonfold: Making Pretty-Printed JSON Compact and Readable in Python
A Python streaming post-filter for compact, human-readable JSON with configurable formatting behavior.
centaur
Centaur is frontier, agentic infrastructure that you own. Centaur is like Claude Tag, but open source and on steroids.
https://github.com/paradigmxyz/centaur
Centaur is frontier, agentic infrastructure that you own. Centaur is like Claude Tag, but open source and on steroids.
https://github.com/paradigmxyz/centaur
GitHub
GitHub - paradigmxyz/centaur: Centaur is frontier, agentic infrastructure that you own. Centaur is like Claude Tag, but open source…
Centaur is frontier, agentic infrastructure that you own. Centaur is like Claude Tag, but open source and on steroids. - paradigmxyz/centaur
Comfy-Org / ComfyUI
The most powerful and modular diffusion model GUI, api and backend with a graph/nodes interface.
https://github.com/Comfy-Org/ComfyUI
The most powerful and modular diffusion model GUI, api and backend with a graph/nodes interface.
https://github.com/Comfy-Org/ComfyUI
GitHub
GitHub - Comfy-Org/ComfyUI: The most powerful and modular diffusion model GUI, api and backend with a graph/nodes interface.
The most powerful and modular diffusion model GUI, api and backend with a graph/nodes interface. - Comfy-Org/ComfyUI
pyhctsa
The most comprehensive time-series feature extraction package in Python.
https://github.com/DynamicsAndNeuralSystems/pyhctsa
The most comprehensive time-series feature extraction package in Python.
https://github.com/DynamicsAndNeuralSystems/pyhctsa
GitHub
GitHub - DynamicsAndNeuralSystems/pyhctsa: The most comprehensive time-series feature extraction package in Python.
The most comprehensive time-series feature extraction package in Python. - DynamicsAndNeuralSystems/pyhctsa
django-waffle - the best Feature Flipper for Django!
This is an introduction to django-waffle, a production-ready Django package for controlling feature rollouts through flags, switches, and sampling. It enables gradual releases, A/B testing, and quick kill switches for features that need to be disabled without redeploying
https://www.youtube.com/watch?v=K-Y9XHEZwU8
This is an introduction to django-waffle, a production-ready Django package for controlling feature rollouts through flags, switches, and sampling. It enables gradual releases, A/B testing, and quick kill switches for features that need to be disabled without redeploying
https://www.youtube.com/watch?v=K-Y9XHEZwU8
YouTube
django-waffle - the best Feature Flipper for Django!
▶ Django & HTMX FULL COURSE: https://www.udemy.com/course/django-htmx-hypermedia-web-apps/?couponCode=BUGBYTES-26
🙏 Join our channel to get access to perks:
https://www.youtube.com/channel/UCTwxaBjziKfy6y_uWu30orA/join
☕️ 𝗕𝘂𝘆 𝗺𝗲 𝗮 𝗰𝗼𝗳𝗳𝗲𝗲:
To support the…
🙏 Join our channel to get access to perks:
https://www.youtube.com/channel/UCTwxaBjziKfy6y_uWu30orA/join
☕️ 𝗕𝘂𝘆 𝗺𝗲 𝗮 𝗰𝗼𝗳𝗳𝗲𝗲:
To support the…
Tencent opensource AI Red Teaming platform
A full-stack AI Red Teaming platform securing AI ecosystems via Agent Scan, Skills Scan, MCP scan, AI Infra scan and LLM jailbreak evaluation.
https://github.com/tencent/AI-Infra-Guard
A full-stack AI Red Teaming platform securing AI ecosystems via Agent Scan, Skills Scan, MCP scan, AI Infra scan and LLM jailbreak evaluation.
https://github.com/tencent/AI-Infra-Guard
GitHub
GitHub - Tencent/AI-Infra-Guard: A full-stack AI Red Teaming platform securing AI ecosystems via Agent Scan, Skills Scan, MCP scan…
A full-stack AI Red Teaming platform securing AI ecosystems via Agent Scan, Skills Scan, MCP scan, AI Infra scan and LLM jailbreak evaluation. - Tencent/AI-Infra-Guard
Lians
Evidence-backed proof of done for Claude Code, Codex, Cursor, and other AI coding agents. Run real checks, bind results to current Git state, and know what is ready for human review.
https://github.com/Lians-ai/Lians
Evidence-backed proof of done for Claude Code, Codex, Cursor, and other AI coding agents. Run real checks, bind results to current Git state, and know what is ready for human review.
https://github.com/Lians-ai/Lians
GitHub
GitHub - Lians-ai/Lians: Evidence-backed proof of done for Claude Code, Codex, Cursor, and other AI coding agents. Run real checks…
Evidence-backed proof of done for Claude Code, Codex, Cursor, and other AI coding agents. Run real checks, bind results to current Git state, and know what is ready for human review. - Lians-ai/Lians
The Polars vs SQL differences nobody is talking about
This post explores important differences between Polars and SQL that can cause unexpected results when moving between the two, including row ordering, column independence, literals, null handling, and broadcasting. It explains how understanding these different mental models can help developers write safer Polars code and more reliably translate data workflows between Polars and SQL.
https://labs.quansight.org/blog/polars-vs-sql-differences
This post explores important differences between Polars and SQL that can cause unexpected results when moving between the two, including row ordering, column independence, literals, null handling, and broadcasting. It explains how understanding these different mental models can help developers write safer Polars code and more reliably translate data workflows between Polars and SQL.
https://labs.quansight.org/blog/polars-vs-sql-differences
Creating PySide6 UI without .ui / Qt Designer
Build your entire GUI in pure Python code, no .ui files required.
https://www.pythonguis.com/faq/creating-pyside2-ui-without-ui-qt-designer/
Build your entire GUI in pure Python code, no .ui files required.
https://www.pythonguis.com/faq/creating-pyside2-ui-without-ui-qt-designer/
Python GUIs
How to Create PySide6 UI Without .ui Files or Qt Designer
Learn how to build PySide6 user interfaces programmatically in Python without using .ui files or Qt Designer. Write widgets directly in code with complete examples.
Soup
Fine-tune and post-train LLMs in one command. No SSH, no config hell.
https://github.com/MakazhanAlpamys/Soup
Fine-tune and post-train LLMs in one command. No SSH, no config hell.
https://github.com/MakazhanAlpamys/Soup
GitHub
GitHub - MakazhanAlpamys/Soup: Fine-tune LLMs from one YAML. Layer streaming trains an 8B model on a 4 GB laptop GPU.
Fine-tune LLMs from one YAML. Layer streaming trains an 8B model on a 4 GB laptop GPU. - MakazhanAlpamys/Soup