- Common Loki Misconfigurations
- Iterating Through a List in Ink
- Debugging Misconfigured Container Networks
- Minimum Viable EC2 in Terraform
- Storylets in Ink
- Interactive Fiction Tooling Overview
- In-Place Resizing for Digitalocean Droplets
- Unity Demonstrates the Importance of FOSS
- Target Labels in Prometheus
- My View of AI is the Same
- Verify DNS Ownership with TXT Records
- Sane Droplet Defaults
- Editing Made Easy with Vim
- Gatsby Gotchas
- Concatinating Default AWS Tags in Terraform
- Easily Updating the Default Github Branch
- Lifetimes in Rust
- Checking for Bad Links
- Maybe TypeScript and React is Bad
- Static Asset Management in React
- Bundler Down Time
- Using React Context for Localization
- JS Implementation of a Sticky Footer
- Custom Aliases
- Trying Out the 7drl Challenge
- Trash Opinions
- Building Your First Program in Rust
- Fixing mongod reports errors related to opening a socket
- Improving Open Source Maintenance
- Technical Interviewing Tips
- Housekeeping Note
- Dynamic Programming Basics
- The Oddity of Naming Conventions in Programming Languages
- An Experiment Using Machine Learning, Part 3
- Debugging with grep
- An Experiment Using Machine Learning, Part 2
- An Experiment Using Machine Learning, Part 1
- The Value of while
- National Day of Civic Hacking
- OpenAI and the Future of Humanity
- Creating a Whiteboard App in Django
- Creating Meaningful, Organized Information
- Towards A Critique of Social Media Feeds
- Setting up Routes in Django
- Developing a Messaging Component for Code for SF
- Dream Stream 2.0
- Keyed Collections in Javascript: Maps and Sets
- Blog Soft Relaunch
- Scraping with Puppeteer
- Looking Ahead to Dream Stream 2.0
- Solving West of Loathing's Soupstock Lode Puzzle
- Installing Ubuntu
- Interview with David Jickling Evaluation
- Compare Text Evaluation
- Dream Stream Evaluation
Verify DNS Ownership with TXT Records
The transfer of domain name ownership from one registrar can potentially be quite complicated depending on the nature of the transfer, and there are a lot of things to keep an eye out for. Then once you initiate a transfer, it can take a few days to complete.
An easy way to verify that you have ownership of a transferred domain without wanting to disrupt any web traffic is to create a TXT record to act as a basic proof that you have the ability to create, alter, and destroy DNS records.
When I want to get some basic DNS information about a domain, nslookup is a common tool I go to. A typical query will be something like nslookup example.com
. However you can also just type nslookup
and go into interactive mode. In interactive mode you can type set q={DNS Record Type}
and then query a domain name to get information about that specific record type.
So if you create a TXT record in the foo subdomain with a value of “bar” you can do the following:
nslookup
$ set q=TXT
foo.example.com
And if you do in fact own the domain, it will return the value of “bar”. This is a handy sanity check when you want to confirm that a transfer happened correctly.