Hey @manton wondering if you can help debug on your side for me why micro.blog isnât looking up successfully, get a spinning search wheel and no results, my activitypub user @james@james (custom implemtnation Iâm building). Works with a GTS (GotoSocial) instance so far, but not micro.blob :/ â Read more
@lyse@lyse.isobeef.org @prologic@twtxt.net yeah that was how i did it too. I think ill start using the debug version in new stuff since its been added. My comment was around assigning the result of an anonymous function to a a variable.
Automate API Tests and Debug in Docker With Postmanâs Newman Extension
Postmanâs Newman Docker Extension helps you run, test, debug, and visualize Postman API calls. Learn how to use this powerful new extension and run collections in Docker Desktop. â Read more
Tell me you write go like javascript without telling me you write go like javascript:
import "runtime/debug"
var Commit = func() string {
if info, ok := debug.ReadBuildInfo(); ok {
for _, setting := range info.Settings {
if setting.Key == "vcs.revision" {
return setting.Value
}
}
}
return ""
}()
how much programmer activity is spent writing new code vs. debugging existing code?
concept: Codex but fine-tuned on ticket description & diff pairs, for debugging instead of new code.
How to Fix and Debug Docker Containers Like a Superhero
While containers help developers rapidly build and run cross-platform applications, creating error-free apps remains a constant challenge. And while itâs not always obvious how container errors occur, this mystery is even harder for newer developers to unravel. Figuring out how to debug Docker containers can seem daunting. In this Community All-Hands session, Ăkos TakĂĄcs demonstrated how [âŠ] â Read more
After all, debugging is still fun!
One reason I use an Android smartphone is that there are apps like Indigenous (a MicroPub-compatible app for posting from your phone to a MicroPub-compatible blog). And even if the app ever disappears from the store, thereâs still the option to manually install the app. And if you need to, you can also develop your own apps without having to invest nearly $100 a year. â Read more
Some IndieWeb protocols are complicated and there are sometimes no programming libraries to simplify the use of them, but ActivityPub is another beast. Although the standard is documented, the way the specific implementations (Mastodon etc.) work often isnât and itâs hard to debug. So huge respect for the big rework. đ â Read more
analog circuit debugging is a transcendental experience. every.single.time. #electronics
My entry for Wheel Reinvention Jam: rethinking debug by print, and therefore source code. https://handmade.network/p/283/bifold-text
Paul Schaub: Reproducible Builds â Telling of a Debugging Story
Reproducibility is an important tool to empower users. Why would a user care about that? Let me elaborate.
For a piece of software to be reproducible means that everyone with access to the softwareâs source code is able to build the binary form of it (e.g. the executable that gets distributed). Whatâs the matter? Isnât that true for any project with accessible source code? Not at all. Reproducibility means that the r ⊠â Read more
you know that youâve made it when youâre using fermi estimates to debug your rl agent.
How to debug a second test run ? #test #testing #goland href=âhttps://we.loveprivacy.club/search?q=%23debuggingâ>#debugging**
Sometimes, tests can succeed on the first run and fail on subsequent ones, or with the -shuffle flag. But then, how can one debug them using the builtin Delve in GoLand while run configurations only run tests once ? 1 points posted by FGM â Read more
Comment dĂ©boguer la seconde exĂ©cution dâun test #delve #goland href=âhttps://we.loveprivacy.club/search?q=%23debuggingâ>#debugging**
Parfois, des tests peuvent rĂ©ussir Ă la premiĂšre passe et Ă©chouer Ă la suivante, ou dans un autre ordre. Mais comment les dĂ©boguer avec Delve et GoLand alors que les configurations dâexĂ©cution nâexĂ©cutent les tests quâune seule fois ? 1 points posted by FGM â Read more
Tech firms ban usage of words âbugâ and âdebugâ as part of âInsect Inclusivityâ efforts
Companies vow to remove âinsect-shaming termsâ â Read more
Debugging an ioctl Problem on OpenBSD
I was trying to use a V4L2 Ruby module for a project on my OpenBSD laptop but ran into a problem where sending the V4L2 ioctls from this module would fail, while other V4L2 programs on OpenBSD worked fine. â Read more
@thecanine@twtxt.net been there a few times! Thank goodness for mosh for when trying to debug from spotty GSM connection and having ssh drop out every few minutes.
did some debugging and it looks like the advanced URL was breaking. @fastidious@arrakis.netbros.com @movq@www.uninformativ.de can you try the wkd now?
Looking at raw IRC traffic streams to debug a client issue and itâs 1997 again.
Video: Go (Golang) Debugging with Delve â Read moreâŠ
Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it. (Brian Kernighan) dwmkerr/hacker-laws: đ»đ Laws, Theories, Principles and Patterns that developers will find useful. #hackerlaws
@kas@enotty.dk Will try some other time. I realized the new neomutt doesnât like my config and I am not in the mood to debug this Iâm back to the one in debian/testing.
Native Kernel Debugging with Acid http://doc.cat-v.org/inferno/4th_edition/kernel_debugging/
Debugging with intelligence via probabilistic inference | the morning paper https://blog.acolyer.org/2018/06/19/debugging-with-intelligence-via-probabilistic-inference/
Sometimes, I hate debugging code.
Another way to talk about Maybe Logic re: map-territory confusion: a lot of people donât put error bars on their imagination. So, they make a prediction, the universe says ânopeâ, and theyâve got no idea where to start debugging bc every inference looks equally strong
Book review: The puzzling empathy of debugging https://wozniak.ca/blog/2018/05/07/The-puzzling-empathy-of-debugging.html
Social structure is a technology, but itâs one that most self-identified techies are ill-equipped to debug, mainly due to bigotry against properly studying it.
you aimlessly twiddle the knobs of the artifact, one switches on your heartâs and veinsâ debug mesh and you see it pulsing through your skin
instrument a mind with debugging hooks to catch all âat least they didnât come up with [âŠ]â thoughts
Ideally, the affected parts will lie along the same callpath. (Depends on the type of debug information, yadda yadda, much work in practice)
Idea: Find a heisenbug via binary search. Insert debug instrumentation across only half the output, run, repeat. May be multicausal though.