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: Dogebark.sh - Get notified when DNS propogates

8 pointsby Pfifferalmost 11 years ago

3 comments

lawlalmost 11 years ago
&gt; <i>Fill out the form to get code you can run in your terminal without verifying its security.</i><p>Great advice. I hope this is supposed to be a joke? Other than that, why not make it a shellscript where you can give it the paramters using arguments?<p>And last but not least I think just checking the TTL of the DNS record and then sleeping for that amount of time would be more elegant.<p><pre><code> sleep $(dig google.com | grep -A1 &quot;ANSWER SECTION&quot; | tail -n1 | awk &#x27;{ print $2 }&#x27;); echo -ne &#x27;\007&#x27; # or bark.sh</code></pre>
mschuster91almost 11 years ago
It&#x27;s spelled &quot;propAgate&quot;, but else nice idea :D<p>edit: btw, you could implement a gzip in front of the base64 so the shellscript doesnt grow as huge (500 kB Oo)
TD-Linuxalmost 11 years ago
....What? Why not in JS?