Networking Tools Every Developer Needs to Know
martinheinz.dev
Networking Tools Every Developer Needs to Know
1–9 of 9 posts
Re: Networking Tools Every Developer Needs to Know
#2Re: Networking Tools Every Developer Needs to Know
#3Re: Networking Tools Every Developer Needs to Know
#4That doesn't mean it's not useful, but there are entire swathes of developers who will never deal with Linux, so claiming "every developer" is hyperbole.
Re: Networking Tools Every Developer Needs to Know
#5Surprised not to see wireshark (or tcpdump) in there. Good list, though.
Re: Networking Tools Every Developer Needs to Know
#6It's only really mentioned as a tag on the article, but significant portions of this are only relevant to a Linux environment. That doesn't mean it's not useful, but there are entire swathes of developers who will never deal with Linux, so claiming "every developer" is hyperbole.
Re: Networking Tools Every Developer Needs to Know
#7It's only really mentioned as a tag on the article, but significant portions of this are only relevant to a Linux environment. That doesn't mean it's not useful, but there are entire swathes of developers who will never deal with Linux, so claiming "every developer" is hyperbole.
Yep. At minimum, any self-respecting Windows developer should know the Sysinternals tools, for example.
I kid, I kid. I know they don't really :P
Re: Networking Tools Every Developer Needs to Know
#8Dig has one of the least stupid syntaxes, IMO. It'll happily take your query in any order and isn't case sensitive. @ for the dns server you want to ask (or omit for resolv.conf lookup), + for options, otherwise specify name and type (and class if you want) in any order.. the following four queries will all get you the same info back without complaint:
$ dig TXT google.com. +short @8.8.8.8
$ dig +short @8.8.8.8 google.com. txt
$ dig google.com. @8.8.8.8 TXT +short
$ dig @8.8.8.8 +short google.com. txt