You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would love to have a list that I didn't have to parse whenever I grabbed it. If bandwidth is an issue, Cloudflare + page rules would limit your expenses to 1 origin request per-region.
CREATEVIEW `reliable` ASSELECT*FROM nameservers AS ns WHEREns.reliability= TRUE
ANDns.dnssec= TRUE
ANDns.ip NOT LIKE'%:%'# not IPv6ANDns.created_at>= DATE_SUB(NOW(),INTERVAL 1 YEAR) # should be fairly matureORDER BY RAND(); # prevent hammeringCREATEVIEW `1000` ASSELECT*FROM reliable AS ns
WHEREns.created_at>= DATE_SUB(NOW(),INTERVAL 1 YEAR) # select oldest / most reliable?LIMIT1000;
CREATE VIEW `reliable-txt`ASSELECT ip FROM reliable;
CREATE VIEW `1000-txt`ASSELECT ip FROM`1000`;
JSON output would be amazing.
The text was updated successfully, but these errors were encountered:
I would love to have a list that I didn't have to parse whenever I grabbed it. If bandwidth is an issue, Cloudflare + page rules would limit your expenses to 1 origin request per-region.
JSON output would be amazing.
The text was updated successfully, but these errors were encountered: