Skip to content

Instantly share code, notes, and snippets.

View yhsiah's full-sized avatar

Han Siah yhsiah

View GitHub Profile
@derlin
derlin / A list of country codes TLDS.md
Last active January 21, 2026 09:42
List of Country Code TLDs in CSV and JSON

This list has been extracted from https://www.worldstandards.eu/other/tlds/.

For JSON format, copy-paste the following in the developer console (Chrome):

results=[]; jQuery('table tr').each(function(){
  tds = jQuery.map(
    jQuery(this).find('td'), 
    (elt) => jQuery(elt).text()
 );