惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Tailwind CSS Blog
有赞技术团队
有赞技术团队
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
J
Java Code Geeks
雷峰网
雷峰网
WordPress大学
WordPress大学
L
LangChain Blog
D
DataBreaches.Net
The GitHub Blog
The GitHub Blog
博客园 - 三生石上(FineUI控件)
Microsoft Security Blog
Microsoft Security Blog
P
Proofpoint News Feed
腾讯CDC
GbyAI
GbyAI
罗磊的独立博客
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
F
Fortinet All Blogs
Y
Y Combinator Blog
V
V2EX
A
About on SuperTechFans

Stonecharioteer on Tech

I Traced My Traffic Through a Home Tailscale Exit Node What Was I Reading Last? In Three Not-So-Easy Pieces Dogfooding Is Hard Code blocks in your books, finally GoForGo v0.9.0 Merrilin - We built an app to read books I use a Macbook now Data Structures & Algorithms - Preparing for Interviews Using a local DNS namespace for local service discovery Direction KOllector - Publishing KOReader Highlights gbt: branches touched in the last 24 hours A Soiree into Symbols in Ruby Some Smalltalk about Ruby Loops Ruby Blocks Returning from Ruby Blocks, Procs and Lambdas My Linux Laptop Finally Works: How Claude Helped Me Fix Years of Annoyances TIL: Watchexec - Modern File Watching for Development Workflows A Less Busy Mind GoForGo - Learn Go through live examples Migrating My Old Blog to Hugo with Claude The Qtile Window Manager: A Python-Powered Tiling Experience Read the RFCs that Built the Internet Py-x-Protobuf - Or How I Learned to Stop Worrying and Love Protocol Buffers Python Reverse a List New Beginnings Leaving ChainSafe Systems Screen Lock for Cinnamon Desktop using Zenity and Terminal Commands Crews Not Teams A System for Getting Better at LeetCode
TIL: Dash Testing, Docker Compose, and Python Mocking
2020-07-24 · via Stonecharioteer on Tech

Web Development and Testing

Dash Framework Testing

Flask-Dash Integration Best Practices

  • Always ensure that dash registration in a Flask-Dash app is configurable
  • Might want to not load dash when testing backend only
  • Separation of concerns between backend API and frontend visualization
  • Enables more targeted testing strategies

Python Mock Module Best Practices

  • When mocking python functions in a flask test, ensure you reference the module where the function is called, not where it originates from
  • Common pitfall: mocking at the wrong import level
  • Mock at the point of use, not the point of definition
  • Critical for effective unit testing in complex applications

Infrastructure and Networking

Docker Compose Development Insights

  • docker-compose has no docstrings
  • Interesting observation about code documentation practices
  • Even popular tools can have documentation gaps
  • Reminder of the importance of good code documentation

DNS and Network Tools

Pi-hole Architecture

  • pihole’s Faster than light engine is a fork of dnsmasq
  • Built on proven DNS server technology
  • Optimized for ad-blocking and DNS filtering
  • Demonstrates how open source projects build on each other

Command Line Tools

  • argparse does support sub-commands
  • Python’s built-in argument parsing library is more capable than often realized
  • Enables building complex CLI interfaces with nested commands
  • Alternative to third-party libraries like Click for simpler use cases