TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: Tmwuc – print() debugging for any environment

17 pointsby gushogg-blake9 months ago
Show HN: Tmwuc – print() debugging for any environment

3 comments

rollcat9 months ago
This is basically a re-invented syslog(3), with a builtin, (supposedly) ephemeral log aggregation service thrown in. It makes some sense for an embedded device, but depending on how restricted your environment is, sending out a UDP packet might be an order of magnitude easier than completing an HTTP transaction. Otherwise, your operating system already has you covered.<p><a href="https:&#x2F;&#x2F;man7.org&#x2F;linux&#x2F;man-pages&#x2F;man3&#x2F;syslog.3.html" rel="nofollow">https:&#x2F;&#x2F;man7.org&#x2F;linux&#x2F;man-pages&#x2F;man3&#x2F;syslog.3.html</a> <a href="https:&#x2F;&#x2F;man.openbsd.org&#x2F;syslog.3" rel="nofollow">https:&#x2F;&#x2F;man.openbsd.org&#x2F;syslog.3</a> <a href="https:&#x2F;&#x2F;learn.microsoft.com&#x2F;en-us&#x2F;powershell&#x2F;module&#x2F;microsoft.powershell.management&#x2F;write-eventlog" rel="nofollow">https:&#x2F;&#x2F;learn.microsoft.com&#x2F;en-us&#x2F;powershell&#x2F;module&#x2F;microsof...</a> and so on.
评论 #41433297 未加载
hu39 months ago
Neat idea. And simple implementation.<p>I might test it for some personal projects.
ale429 months ago
... for every environment that has a network connection ;-)<p>Does anybody know a more universal solution where you can have custom transports and that can actually run on any environment? (I&#x27;d be targeting an 8-bit microcontroller like a PIC18F25K80, for example, on a CAN bus... and somewhere on the CAN bus there&#x27;s a custom radio link)