File size: 244,072 Bytes
477e91e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 |
<head data-webtasks-id="3abfeb29-613c-44f0">
<title data-webtasks-id="365e13ea-883a-44a7">Highest scored questions - Travel Stack Exchange</title>
<link rel="shortcut icon" href="https://cdn.sstatic.net/Sites/travel/Img/favicon.ico?v=d46bb43d5893" data-webtasks-id="cd8cf0ad-8151-4b11">
<link rel="apple-touch-icon" href="https://cdn.sstatic.net/Sites/travel/Img/apple-touch-icon.png?v=0bf351ad5aa0" data-webtasks-id="feb93c9a-4154-4950">
<link rel="image_src" href="https://cdn.sstatic.net/Sites/travel/Img/apple-touch-icon.png?v=0bf351ad5aa0" data-webtasks-id="47620d5b-4460-4577">
<link rel="search" type="application/opensearchdescription+xml" title="Travel Stack Exchange" href="/opensearch.xml" data-webtasks-id="a1a3353e-a22a-4dc5">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, minimum-scale=1.0" data-webtasks-id="db2ad6fc-c9bd-445f">
<meta property="og:type" content="website" data-webtasks-id="0feedbfd-8e65-4781">
<meta property="og:url" content="https://travel.stackexchange.com/questions?edited=true" data-webtasks-id="95149a10-3c06-4d2d">
<meta property="og:site_name" content="Travel Stack Exchange" data-webtasks-id="9725dea3-1572-4981">
<meta property="og:image" itemprop="image primaryImageOfPage" content="https://cdn.sstatic.net/Sites/travel/Img/[email protected]?v=c2b2aadd2cbd" data-webtasks-id="8140f230-a67e-466a">
<meta name="twitter:card" content="summary" data-webtasks-id="b1bdd70b-8d30-4132">
<meta name="twitter:domain" content="travel.stackexchange.com" data-webtasks-id="04fa2fe9-4737-4a1e">
<meta name="twitter:title" property="og:title" itemprop="name" content="Highest scored questions" data-webtasks-id="2f5c22ba-2188-4595">
<meta name="twitter:description" property="og:description" itemprop="description" content="Q&A for road warriors and seasoned travelers" data-webtasks-id="26d7631b-8fe0-4196">
<script id="webpack-public-path" type="text/uri-list" data-webtasks-id="4d91f8b8-5b25-4b97">https://cdn.sstatic.net/</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js" data-webtasks-id="eebb40f6-dff6-43b1"></script>
<script defer="" src="https://cdn.sstatic.net/Js/third-party/npm/@stackoverflow/stacks/dist/js/stacks.min.js?v=ad920dba3340" data-webtasks-id="f4bfb38b-b9c0-422d"></script>
<script src="https://cdn.sstatic.net/Js/stub.en.js?v=34b15b21ff80" data-webtasks-id="2a128ba5-967f-4b55"></script>
<link rel="stylesheet" type="text/css" href="https://cdn.sstatic.net/Shared/stacks.css?v=73d389de9f03" data-webtasks-id="57d9bc93-437f-4aa8">
<link rel="stylesheet" type="text/css" href="https://cdn.sstatic.net/Sites/travel/primary.css?v=c1dbec10ac94" data-webtasks-id="9350bbdb-bfec-44be">
<script defer="" src="https://cdn.sstatic.net/Js/webpack-chunks/1631.en.js?v=76eab8a51bd7" data-webtasks-id="d2e838d8-5781-41a9"></script><script defer="" src="https://cdn.sstatic.net/Js/questions/list.en.js?v=f4aaa605ad98" data-webtasks-id="b0bbc962-6df2-46e3"></script>
<link rel="stylesheet" type="text/css" href="https://cdn.sstatic.net/Shared/Channels/channels.css?v=a4d77abedec3" data-webtasks-id="fc041675-867e-4573">
<script data-webtasks-id="1f0d15eb-6d75-4352">
StackExchange.ready(function () {
StackExchange.realtime.init('wss://qa.sockets.stackexchange.com');
StackExchange.realtime.subscribeToReputationNotifications('273');
StackExchange.realtime.subscribeToTopBarNotifications('273');
});
</script>
<script type="application/json" data-role="module-args" data-module-name="Shared/options.mod" data-webtasks-id="ec1c30e6-9516-4e67">{"options":{"locale":"en","serverTime":1688964759,"routeName":"Questions/List","stackAuthUrl":"https://stackauth.com","networkMetaHostname":"meta.stackexchange.com","site":{"name":"Travel Stack Exchange","description":"Q\u0026A for road warriors and seasoned travelers","isNoticesTabEnabled":true,"enableNewTagCreationWarning":false,"insertSpaceAfterNameTabCompletion":false,"id":273,"cookieDomain":".stackexchange.com","childUrl":"https://travel.meta.stackexchange.com","negativeVoteScoreFloor":null,"enableSocialMediaInSharePopup":true,"protocol":"https"},"user":{"fkey":"fe76f3281bad2063ad30f357d65244f2508ca27d494a61fe42e4d6aea23fa56d","tid":"3384c16d-10ea-b1da-8b32-aa877dc15704","rep":1,"isRegistered":true,"userType":3,"userId":136878,"accountId":28364646,"gravatar":"\u003cdiv class=\u0022gravatar-wrapper-32\u0022\u003e\u003cimg src=\u0022https://www.gravatar.com/avatar/64db2cea44c88e309a742529e139f6bd?s=32\u0026amp;d=identicon\u0026amp;r=PG\u0026amp;f=y\u0026amp;so-version=2\u0022 alt=\u0022Webtasks Navigator\u0026#39;s user avatar\u0022 width=\u002232\u0022 height=\u002232\u0022 class=\u0022bar-sm\u0022\u003e\u003c/div\u003e","profileUrl":"https://travel.stackexchange.com/users/136878/webtasks-navigator","canSeeDeletedPosts":false},"realtime":{"newest":true,"active":true,"tagged":true,"staleDisconnectIntervalInHours":0},"events":{"postType":{"question":1},"postEditionSection":{"title":1,"body":2,"tags":3}}}}</script>
<script type="application/json" data-role="module-args" data-module-name="Shared/settings.mod" data-webtasks-id="1da43db3-4a7b-4797">{"settings":{"userMessaging":{},"tags":{},"subscriptions":{"defaultBasicMaxTrueUpSeats":250,"defaultFreemiumMaxTrueUpSeats":50,"defaultMaxTrueUpSeats":1000},"snippets":{"renderDomain":"stacksnippets.net"},"site":{"allowImageUploads":true,"enableImgurHttps":true,"enableUserHovercards":true,"forceHttpsImages":true,"stacksEditorPreviewEnabled":true},"search":{},"questions":{"enableQuestionTitleLengthLiveWarning":true,"enableSavesFeature":true,"maxTitleSize":150,"questionTitleLengthStartLiveWarningChars":50},"intercom":{"appId":"inf0secd","enableJavascriptImplementationFor":true,"hostBaseUrl":"https://stacksnippets.net"},"paths":{"jQueryUICSSPath":"https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.0/themes/smoothness/jquery-ui.css","jQueryUIJSPath":"https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.0/jquery-ui.min.js"},"mentions":{"maxNumUsersInDropdown":50},"markdown":{"enableTables":true},"legal":{"oneTrustConfigId":"cb0f3c87-b769-4e66-bbaa-377f9194216d"},"flags":{"allowRetractingCommentFlags":true,"allowRetractingFlags":true},"elections":{"opaVoteResultsBaseUrl":"https://www.opavote.com/results/"},"comments":{},"accounts":{"currentPasswordRequiredForChangingStackIdPassword":true}}}</script>
<script data-webtasks-id="1f06badb-b29a-4d1d">StackExchange.init();</script>
<script data-webtasks-id="11036525-d04e-4633">
StackExchange.using.setCacheBreakers({"Js/adops.en.js":"6da43f5e0a84","Js/ask.en.js":"","Js/begin-edit-event.en.js":"20edbaccceae","Js/copy-transpiled.en.js":"d31dc7eba3bc","Js/events.en.js":"","Js/explore-qlist.en.js":"2b1f34938b8b","Js/full-anon.en.js":"4cfd379baed1","Js/full.en.js":"9ce8d496d04c","Js/highlightjs-loader.en.js":"510e2f94c2bf","Js/inline-tag-editing.en.js":"db4721cf46fa","Js/keyboard-shortcuts.en.js":"107c2ac31497","Js/markdown-it-loader.en.js":"5818ef89ff9d","Js/mentions-transpiled.en.js":"aaeac2684aa8","Js/moderator.en.js":"436d64ed1be0","Js/postCollections-transpiled.en.js":"216ffeda5016","Js/post-validation.en.js":"cce75daddbbd","Js/question-editor.en.js":"","Js/review-v2-transpiled.en.js":"69c0e3530e0b","Js/revisions.en.js":"e6acc03fd5b5","Js/stacks-editor.en.js":"cfd7c1c2abea","Js/tageditor.en.js":"dc13482a67f8","Js/tageditornew.en.js":"cebacb19d403","Js/tagsuggestions.en.js":"bd6ec908f2a7","Js/unlimited-transpiled.en.js":"e776ac1beccb","Js/wmd.en.js":"8c0f9d3b0a66"});
StackExchange.using("gps", function() {
StackExchange.gps.init(false);
});
</script>
<noscript id="noscript-css" data-webtasks-id="e868be98-0d0c-469e"><style>body,.s-topbar{margin-top:1.9em}</style></noscript>
<script async="" src="https://cdn.sstatic.net/Js/full.en.js?v=9ce8d496d04c" data-webtasks-id="7007d716-b3a4-4b40"></script><meta http-equiv="origin-trial" content="A7CQXglZzTrThjGTBEn1rWTxHOEtkWivwzgea+NjyardrwlieSjVuyG44PkYgIPGs8Q9svD8sF3Yedn0BBBjXAkAAACFeyJvcmlnaW4iOiJodHRwczovL2RvdWJsZWNsaWNrLm5ldDo0NDMiLCJmZWF0dXJlIjoiUHJpdmFjeVNhbmRib3hBZHNBUElzIiwiZXhwaXJ5IjoxNjk1MTY3OTk5LCJpc1N1YmRvbWFpbiI6dHJ1ZSwiaXNUaGlyZFBhcnR5Ijp0cnVlfQ==" data-webtasks-id="01022a0d-927b-40d8"><meta http-equiv="origin-trial" content="A3vKT9yxRPjmXN3DpIiz58f5JykcWHjUo/W7hvmtjgh9jPpQgem9VbADiNovG8NkO6mRmk70Kex8/KUqAYWVWAEAAACLeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXN5bmRpY2F0aW9uLmNvbTo0NDMiLCJmZWF0dXJlIjoiUHJpdmFjeVNhbmRib3hBZHNBUElzIiwiZXhwaXJ5IjoxNjk1MTY3OTk5LCJpc1N1YmRvbWFpbiI6dHJ1ZSwiaXNUaGlyZFBhcnR5Ijp0cnVlfQ==" data-webtasks-id="8fecc83b-2a42-4521"><meta http-equiv="origin-trial" content="A4A26Ymj79UVY7C7JGUS4BG1s7MdcDokAQf/RP0paks+RoTYbXHxceT/5L4iKcsleFCngi75YfNRGW2+SpVv1ggAAACLeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXRhZ3NlcnZpY2VzLmNvbTo0NDMiLCJmZWF0dXJlIjoiUHJpdmFjeVNhbmRib3hBZHNBUElzIiwiZXhwaXJ5IjoxNjk1MTY3OTk5LCJpc1N1YmRvbWFpbiI6dHJ1ZSwiaXNUaGlyZFBhcnR5Ijp0cnVlfQ==" data-webtasks-id="b148efca-821e-4317"><meta http-equiv="origin-trial" content="As0hBNJ8h++fNYlkq8cTye2qDLyom8NddByiVytXGGD0YVE+2CEuTCpqXMDxdhOMILKoaiaYifwEvCRlJ/9GcQ8AAAB8eyJvcmlnaW4iOiJodHRwczovL2RvdWJsZWNsaWNrLm5ldDo0NDMiLCJmZWF0dXJlIjoiV2ViVmlld1hSZXF1ZXN0ZWRXaXRoRGVwcmVjYXRpb24iLCJleHBpcnkiOjE3MTk1MzI3OTksImlzU3ViZG9tYWluIjp0cnVlfQ==" data-webtasks-id="d3e68d77-2301-4b1e"><meta http-equiv="origin-trial" content="AgRYsXo24ypxC89CJanC+JgEmraCCBebKl8ZmG7Tj5oJNx0cmH0NtNRZs3NB5ubhpbX/bIt7l2zJOSyO64NGmwMAAACCeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXN5bmRpY2F0aW9uLmNvbTo0NDMiLCJmZWF0dXJlIjoiV2ViVmlld1hSZXF1ZXN0ZWRXaXRoRGVwcmVjYXRpb24iLCJleHBpcnkiOjE3MTk1MzI3OTksImlzU3ViZG9tYWluIjp0cnVlfQ==" data-webtasks-id="0baad6bb-a55b-405b"><script src="https://pagead2.googlesyndication.com/pagead/managed/js/gpt/m202306290101/pubads_impl.js" async="" data-webtasks-id="bb1f29fe-6ac3-456c"></script></head>
<body class="questions-page unified-theme" data-webtasks-id="76263a64-fc91-4bb9">
<div id="notify-container" data-webtasks-id="d1ef1746-d887-4b8f"></div>
<div id="custom-header" data-webtasks-id="a39a5d04-921a-4158"></div>
<header class="s-topbar ps-fixed t0 l0 js-top-bar" data-webtasks-id="e365b7a2-f643-42d3">
<div class="s-topbar--container" data-webtasks-id="3ce12e96-0393-48da">
<a href="#" class="s-topbar--menu-btn js-left-sidebar-toggle" role="menuitem" aria-haspopup="true" aria-controls="left-sidebar" aria-expanded="false" data-webtasks-id="0a37565f-e39d-4a51"><span data-webtasks-id="bcc4b1d1-e8dd-47b5"></span></a>
<div class="topbar-dialog leftnav-dialog js-leftnav-dialog dno" data-webtasks-id="0d7e4f03-6f1f-411e">
<div class="left-sidebar js-unpinned-left-sidebar" data-can-be="left-sidebar" data-is-here-when="sm" data-webtasks-id="2c7a05d5-9204-45e0"></div>
</div>
<a href="#" class="s-topbar--logo network-logo js-gps-track js-network-logo" data-gps-track="stack_exchange_popup.show" role="menuitem" aria-haspopup="true" aria-controls="topbar-network-logo-dialog" aria-expanded="false" data-webtasks-id="f7780905-9079-48b9">
<svg aria-hidden="true" class="native mtn1 svg-icon iconLogoSEAlternativeSm" width="107" height="15" viewBox="0 0 107 15" data-webtasks-id="813586d1-d390-4180"><path d="m48.41 11.93-1.96-3.2-1.04 1.16v2.04h-1.42V2.18h1.42v6.01L48.14 5h1.72l-2.44 2.7 2.74 4.22h-1.75Zm-7.06.08c-1.59 0-3.14-.96-3.14-3.56s1.55-3.54 3.14-3.54c.97 0 1.65.27 2.31.97l-.97.93c-.44-.48-.79-.66-1.34-.66s-1 .22-1.3.62c-.31.38-.42.87-.42 1.68 0 .81.1 1.32.41 1.7.3.4.76.62 1.3.62.56 0 .9-.18 1.35-.66l.97.92c-.66.7-1.34.98-2.31.98Zm-5.66-3.15h-1.65c-.83 0-1.26.37-1.26 1s.4.99 1.3.99c.53 0 .93-.04 1.3-.4.22-.2.31-.53.31-1.03v-.56Zm.03 3.07v-.63c-.51.5-1 .71-1.87.71-.87 0-1.46-.2-1.89-.63a2.1 2.1 0 0 1-.55-1.49c0-1.16.82-2 2.42-2h1.86v-.5c0-.87-.44-1.3-1.54-1.3-.77 0-1.15.18-1.54.68l-.92-.86c.66-.77 1.35-1 2.52-1 1.93 0 2.9.8 2.9 2.38v4.64h-1.39Zm-5.9 0c-1.32 0-1.93-.93-1.93-1.93V6.18h-.8V5.1h.8V3h1.41v2.1h1.36v1.07H29.3v3.75c0 .5.25.81.78.81h.58v1.2h-.85Zm-6.33.08c-1.48 0-2.55-.34-3.49-1.28l1-.98c.72.72 1.51.94 2.52.94 1.3 0 2.04-.55 2.04-1.5 0-.42-.13-.78-.39-1.01-.25-.23-.5-.33-1.08-.41l-1.16-.17a3.4 3.4 0 0 1-1.88-.78 2.41 2.41 0 0 1-.72-1.86c0-1.7 1.25-2.86 3.3-2.86 1.3 0 2.22.33 3.07 1.1l-.96.94a2.92 2.92 0 0 0-2.15-.75c-1.16 0-1.8.65-1.8 1.52 0 .35.1.67.37.9.25.22.65.38 1.11.45l1.13.17c.91.13 1.42.35 1.84.72.54.47.8 1.17.8 2 0 1.8-1.48 2.86-3.55 2.86Z" fill="#FEFEFE" data-webtasks-id="6bb4ae30-25c9-4d6a"></path><path d="M104.16 7.09c-.2-.42-.6-.74-1.2-.74s-.99.32-1.18.74c-.1.25-.15.44-.16.75h2.7a2 2 0 0 0-.16-.75Zm-2.54 1.96c0 .9.56 1.57 1.55 1.57.78 0 1.16-.21 1.61-.66l1.08 1.04a3.4 3.4 0 0 1-2.7 1.11c-1.68 0-3.29-.76-3.29-3.62 0-2.3 1.26-3.6 3.1-3.6 1.97 0 3.1 1.44 3.1 3.37v.79h-4.45Zm-5.48-2.57C95.1 6.48 95 7.37 95 8.3c0 .94.1 1.85 1.15 1.85 1.05 0 1.18-.91 1.18-1.85 0-.93-.13-1.82-1.18-1.82Zm-.17 8.22c-1.1 0-1.84-.21-2.58-.92l1.1-1.11c.4.38.8.54 1.4.54 1.06 0 1.43-.74 1.43-1.46v-.72c-.47.51-1 .7-1.7.7-.69 0-1.29-.23-1.68-.62-.67-.66-.73-1.57-.73-2.8 0-1.24.06-2.13.73-2.8.4-.39 1-.62 1.7-.62.75 0 1.24.2 1.73.75v-.67h1.72v6.8c0 1.7-1.21 2.93-3.12 2.93Zm-5.76-2.67V7.76c0-.96-.61-1.28-1.17-1.28-.56 0-1.18.32-1.18 1.28v4.27h-1.78V4.97h1.73v.65a2.44 2.44 0 0 1 1.78-.73c.7 0 1.28.23 1.67.62.58.57.73 1.24.73 2v4.52H90.2Zm-7.1-2.98h-1.4c-.64 0-1 .3-1 .8 0 .49.33.81 1.02.81.5 0 .8-.04 1.12-.34.2-.17.26-.46.26-.89v-.38Zm.04 2.98v-.6c-.48.47-.93.67-1.74.67-.8 0-1.4-.2-1.82-.62-.38-.4-.58-.97-.58-1.59 0-1.12.77-2.05 2.42-2.05h1.68V7.5c0-.77-.38-1.11-1.32-1.11-.68 0-1 .16-1.37.58l-1.13-1.1c.7-.75 1.38-.97 2.57-.97 1.99 0 3.02.84 3.02 2.5v4.64h-1.73Zm-6.93 0v-4.3c0-.94-.6-1.25-1.15-1.25-.56 0-1.15.32-1.15 1.24v4.31h-1.77V2.38h1.77v3.24a2.35 2.35 0 0 1 1.7-.73c1.56 0 2.38 1.08 2.38 2.57v4.57h-1.78Zm-6.96.08c-1.42 0-3.18-.76-3.18-3.62 0-2.85 1.76-3.6 3.18-3.6.98 0 1.72.3 2.34.95l-1.2 1.2c-.36-.4-.68-.56-1.14-.56-.42 0-.75.14-1.01.46-.27.33-.4.8-.4 1.55s.13 1.24.4 1.58c.26.3.59.46 1 .46.47 0 .79-.16 1.15-.56l1.2 1.18c-.62.65-1.36.96-2.34.96Zm-5.53-.08-1.3-2.11-1.3 2.11H59l2.45-3.6-2.35-3.46h2.12L62.42 7l1.21-2.02h2.13L63.4 8.43l2.46 3.6h-2.13Zm-11.75 0V2.06h6.6V3.8h-4.65v2.33h3.96v1.74h-3.96v2.42h4.65v1.74h-6.6Z" fill="#2F96E8" data-webtasks-id="066a5294-0c24-4d80"></path><path d="M0 3c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2H0Z" fill="#8FD8F7" data-webtasks-id="90e94971-e96a-46ca"></path><path d="M12 10H0c0 1.1.9 2 2 2h5v3l3-3a2 2 0 0 0 2-2Z" fill="#155397" data-webtasks-id="e1b73c9a-151d-4929"></path><path fill="#46A2D9" d="M0 4h12v2H0z" data-webtasks-id="972424d9-37b0-41d1"></path><path fill="#2D6DB5" d="M0 7h12v2H0z" data-webtasks-id="0f2f4392-b273-458b"></path></svg>
</a>
<div class="topbar-dialog network-logo-dialog js-network-logo-dialog dno" id="topbar-network-logo-dialog" role="dialog" aria-labelledby="topbar-network-logo-dialog-title" aria-describedby="topbar-network-logo-dialog-body" data-webtasks-id="629482a2-c194-4c97">
<div class="dialog-content" data-webtasks-id="2a7f7f91-f2a0-4bcd">
<h4 class="bold" id="topbar-network-logo-dialog-title" data-webtasks-id="7924b903-1dff-4a69">Stack Exchange Network</h4>
<p id="topbar-network-logo-dialog-body" data-webtasks-id="ac4c72f4-3e61-4bed">
Stack Exchange network consists of 182 Q&A communities including <a href="https://stackoverflow.com" data-webtasks-id="e038f1c4-ad05-412e">Stack Overflow</a>, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
</p>
<a class="s-btn s-btn__filled" href="https://stackexchange.com" data-gps-track="stack_exchange_popup.click" data-webtasks-id="0fd072d4-02a6-4a1c">Visit Stack Exchange</a>
<button class="icon-close js-close-button s-btn s-btn__unset" aria-label="Close" data-webtasks-id="acb639ca-1562-46e7"><svg aria-hidden="true" class="svg-icon iconClear" width="18" height="18" viewBox="0 0 18 18" data-webtasks-id="b22ae1ea-fa10-42c5"><path d="M15 4.41 13.59 3 9 7.59 4.41 3 3 4.41 7.59 9 3 13.59 4.41 15 9 10.41 13.59 15 15 13.59 10.41 9 15 4.41Z" data-webtasks-id="03e717b5-1891-4fc1"></path></svg></button>
</div>
</div>
<form id="search" role="search" action="/search" class="s-topbar--searchbar js-searchbar " autocomplete="off" data-webtasks-id="03d89418-b1e5-4646">
<div class="s-topbar--searchbar--input-group" data-webtasks-id="02efb557-b399-453b">
<input name="q" type="text" role="combobox" placeholder="Search on Travel…" value="" autocomplete="off" maxlength="240" class="s-input s-input__search js-search-field " aria-label="Search" aria-controls="top-search" data-controller="s-popover" data-action="focus->s-popover#show" data-s-popover-placement="bottom-start" aria-expanded="false" data-webtasks-id="f7bf828c-28f6-4e18">
<svg aria-hidden="true" class="s-input-icon s-input-icon__search svg-icon iconSearch" width="18" height="18" viewBox="0 0 18 18" data-webtasks-id="d98a978d-6bb8-4d25"><path d="m18 16.5-5.14-5.18h-.35a7 7 0 1 0-1.19 1.19v.35L16.5 18l1.5-1.5ZM12 7A5 5 0 1 1 2 7a5 5 0 0 1 10 0Z" data-webtasks-id="9672ee38-c9b9-4fce"></path></svg>
<div class="s-popover p0 wmx100 wmn4 sm:wmn-initial js-top-search-popover" id="top-search" role="menu" data-webtasks-id="0460717c-d458-4aa6">
<div class="s-popover--arrow" data-webtasks-id="b2d80277-e034-453f"></div>
<div class="js-spinner p24 d-flex ai-center jc-center d-none" data-webtasks-id="bcee94b4-2481-470d">
<div class="s-spinner s-spinner__sm fc-orange-400" data-webtasks-id="b224c5de-d722-4c70">
<div class="v-visible-sr" data-webtasks-id="f144aa36-54a7-402f">Loading…</div>
</div>
</div>
<span class="v-visible-sr js-screen-reader-info" data-webtasks-id="4b8ffc96-9c35-4b29"></span>
<div class="js-ac-results overflow-y-auto hmx3 d-none" data-webtasks-id="1f0faba1-8211-452c"></div>
<div class="js-search-hints" aria-describedby="Tips for searching" data-webtasks-id="eaee5e1f-16b6-4879"></div>
</div>
</div>
</form>
<nav class="h100 ml-auto overflow-x-auto pr12" data-webtasks-id="3b972a0e-1902-4021">
<ol class="s-topbar--content" role="menubar" data-webtasks-id="d895542f-6795-468e">
<li role="none" data-webtasks-id="db226ad4-7032-4ba9"><button class="s-topbar--item s-btn s-btn__icon s-btn__muted d-none sm:d-inline-flex js-searchbar-trigger" role="menuitem" aria-label="Search" aria-haspopup="true" aria-controls="search" title="Click to show search" data-webtasks-id="2102e247-13db-4974"><svg aria-hidden="true" class="svg-icon iconSearch" width="18" height="18" viewBox="0 0 18 18" data-webtasks-id="fa15682d-749f-4de4"><path d="m18 16.5-5.14-5.18h-.35a7 7 0 1 0-1.19 1.19v.35L16.5 18l1.5-1.5ZM12 7A5 5 0 1 1 2 7a5 5 0 0 1 10 0Z" data-webtasks-id="ab851dde-9061-4605"></path></svg></button></li>
<li role="none" data-webtasks-id="49c8787b-2a0c-42a4">
<a href="/users/136878/webtasks-navigator" class="s-topbar--item s-user-card s-user-card__small m0 px12 js-gps-track" role="menuitem" data-gps-track="profile_summary.click()" data-webtasks-id="33c0d7e1-ade8-46da">
<div class="s-avatar s-avatar__24 s-user-card--avatar sm:m0" title="Webtasks Navigator" data-webtasks-id="6304d97a-13a4-4365"><img src="https://www.gravatar.com/avatar/64db2cea44c88e309a742529e139f6bd?s=48&d=identicon&r=PG&f=y&so-version=2" alt="Webtasks Navigator's user avatar" width="24" height="24" class="bar-sm s-avatar--image js-avatar-me" data-webtasks-id="c9732dd6-e6eb-4a57"></div> <span class="v-visible-sr" data-webtasks-id="c200ffcb-af29-446a">Webtasks Navigator</span>
<div class="s-user-card--info sm:d-none" data-webtasks-id="d837eb35-7694-4127">
<ul class="s-user-card--awards" data-webtasks-id="4bd72d76-ebe6-4d44">
<li class="s-user-card--rep js-header-rep" title="your reputation: 1" aria-hidden="true" data-webtasks-id="76e1a574-3af2-42c1">
1
<span class="v-visible-sr" data-webtasks-id="dd687041-1daf-4bee">, 1 reputation</span>
</li>
<li class="-badges mr0" data-webtasks-id="bd39a825-c01d-4c32">
</li>
</ul>
</div>
</a>
</li>
<li role="none" data-webtasks-id="c368c986-011e-4cb5">
<a href="https://stackexchange.com/users/28364646?tab=inbox" class="s-topbar--item js-inbox-button" aria-label="Inbox (1 unread message)" role="menuitem" title="You have unread inbox messages" aria-haspopup="true" aria-expanded="false" data-unread-count="1" data-webtasks-id="7b89a39c-4bc1-48c5">
<svg aria-hidden="true" class="svg-icon iconInbox" width="20" height="18" viewBox="0 0 20 18" data-webtasks-id="c31cdcb2-dcd1-43d2"><path d="M4.63 1h10.56a2 2 0 0 1 1.94 1.35L20 10.79V15a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-4.21l2.78-8.44c.25-.8 1-1.36 1.85-1.35Zm8.28 12 2-2h2.95l-2.44-7.32a1 1 0 0 0-.95-.68H5.35a1 1 0 0 0-.95.68L1.96 11h2.95l2 2h6Z" data-webtasks-id="3de63def-9188-4904"></path></svg>
<span class="s-activity-indicator s-activity-indicator__danger js-unread-count" data-webtasks-id="3eb01bbe-40ae-4fba">1</span>
</a>
</li>
<li role="none" data-webtasks-id="606049ae-49ec-4177">
<a href="https://stackexchange.com/users/28364646?tab=reputation" class="s-topbar--item js-achievements-button fc-success" data-unread-class="fc-success" aria-label="Achievements (unread)" role="menuitem" title="You have new achievements" aria-haspopup="true" aria-expanded="false" data-unread-count="0" data-lit-up="true" data-webtasks-id="56ae56c3-ec85-4818">
<svg aria-hidden="true" class="svg-icon iconAchievements" width="18" height="18" viewBox="0 0 18 18" data-webtasks-id="a953ec3d-ab81-4358"><path d="M15 2V1H3v1H0v4c0 1.6 1.4 3 3 3v1c.4 1.5 3 2.6 5 3v2H5s-1 1.5-1 2h10c0-.4-1-2-1-2h-3v-2c2-.4 4.6-1.5 5-3V9c1.6-.2 3-1.4 3-3V2h-3ZM3 7c-.5 0-1-.5-1-1V4h1v3Zm8.4 2.5L9 8 6.6 9.4l1-2.7L5 5h3l1-2.7L10 5h2.8l-2.3 1.8 1 2.7h-.1ZM16 6c0 .5-.5 1-1 1V4h1v2Z" data-webtasks-id="759870e1-0629-4d16"></path></svg>
<span class="s-activity-indicator s-activity-indicator__success js-unread-count d-none" data-webtasks-id="32730ede-c75a-48d1">+0</span>
</a>
</li>
<li role="none" data-webtasks-id="596c9880-a8c6-4389">
<a href="/help" class="s-topbar--item js-help-button" role="menuitem" title="Help Center and other resources" aria-haspopup="true" aria-controls="topbar-help-dialog" data-ga="["top navigation","help menu click",null,null,null]" data-webtasks-id="8e3f086c-01cb-472b" aria-expanded="false"><svg aria-hidden="true" class="svg-icon iconHelp" width="18" height="18" viewBox="0 0 18 18" data-webtasks-id="c0a8750f-b314-4408"><path d="M9 1C4.64 1 1 4.64 1 9c0 4.36 3.64 8 8 8 4.36 0 8-3.64 8-8 0-4.36-3.64-8-8-8Zm.81 12.13c-.02.71-.55 1.15-1.24 1.13-.66-.02-1.17-.49-1.15-1.2.02-.72.56-1.18 1.22-1.16.7.03 1.2.51 1.17 1.23ZM11.77 8c-.59.66-1.78 1.09-2.05 1.97a4 4 0 0 0-.09.75c0 .05-.03.16-.18.16H7.88c-.16 0-.18-.1-.18-.15.06-1.35.66-2.2 1.83-2.88.39-.29.7-.75.7-1.24.01-1.24-1.64-1.82-2.35-.72-.21.33-.18.73-.18 1.1H5.75c0-1.97 1.03-3.26 3.03-3.26 1.75 0 3.47.87 3.47 2.83 0 .57-.2 1.05-.48 1.44Z" data-webtasks-id="8d285552-062e-4e60"></path></svg></a>
</li>
<div class="topbar-dialog help-dialog js-help-dialog dno" id="topbar-help-dialog" role="menu" data-webtasks-id="5a7007dc-e2e6-4c03">
<div class="modal-content" data-webtasks-id="630b52af-372d-4a43">
<ul data-webtasks-id="0093cfcc-ba63-457a">
<li data-webtasks-id="8879da28-58b7-4b56">
<a href="/tour" class="js-gps-track" data-gps-track="help_popup.click({ item_type:1 })" data-ga="["top navigation","tour submenu click",null,null,null]" data-webtasks-id="aa93ee09-b265-4755">
Tour
<span class="item-summary" data-webtasks-id="3fc250ae-2763-4ff0">
Start here for a quick overview of the site
</span>
</a>
</li>
<li data-webtasks-id="1ce20d61-c0b5-446e">
<a href="/help" class="js-gps-track" data-gps-track="help_popup.click({ item_type:4 })" data-ga="["top navigation","help center",null,null,null]" data-webtasks-id="67587d05-60c4-4a66">
Help Center
<span class="item-summary" data-webtasks-id="d0b74ff8-727c-44fc">
Detailed answers to any questions you might have
</span>
</a>
</li>
<li data-webtasks-id="3ed3fef3-e7ba-494c">
<a href="https://travel.meta.stackexchange.com" class="js-gps-track" data-gps-track="help_popup.click({ item_type:2 })" data-ga="["top navigation","meta submenu click",null,null,null]" data-webtasks-id="585f6eae-1872-45b8">
Meta
<span class="item-summary" data-webtasks-id="00de2ad0-073a-447d">
Discuss the workings and policies of this site
</span>
</a>
</li>
<li data-webtasks-id="db26199f-396b-4a03">
<a href="https://stackoverflow.co/" class="js-gps-track" data-gps-track="help_popup.click({ item_type:6 })" data-ga="["top navigation","about us submenu click",null,null,null]" data-webtasks-id="077cccba-1734-4684">
About Us
<span class="item-summary" data-webtasks-id="053e8989-ab7b-4082">
Learn more about Stack Overflow the company, and our products.
</span>
</a>
</li>
</ul>
</div>
</div>
<li role="none" data-webtasks-id="d611cfd2-8c7f-4732">
<a href="https://stackexchange.com" class="s-topbar--item js-site-switcher-button js-gps-track" data-gps-track="site_switcher.show" aria-label="Site switcher" role="menuitem" title="A list of all 182 Stack Exchange sites" aria-haspopup="true" aria-expanded="false" data-ga="["top navigation","stack exchange click",null,null,null]" data-webtasks-id="31d4bc26-3971-4e35">
<svg aria-hidden="true" class="svg-icon iconStackExchange" width="18" height="18" viewBox="0 0 18 18" data-webtasks-id="aeb40ed1-baba-4978"><path d="M15 1H3a2 2 0 0 0-2 2v2h16V3a2 2 0 0 0-2-2ZM1 13c0 1.1.9 2 2 2h8v3l3-3h1a2 2 0 0 0 2-2v-2H1v2Zm16-7H1v4h16V6Z" data-webtasks-id="da53be50-cfad-48d5"></path></svg>
</a>
</li>
<li class="js-topbar-dialog-corral" role="presentation" data-webtasks-id="60d77a94-e9c7-40ea">
<div class="topbar-dialog siteSwitcher-dialog dno" role="menu" data-webtasks-id="a6e89ea1-440a-488a">
<div class="header fw-wrap" data-webtasks-id="e69ffb81-bc5c-4ff3">
<h3 class="flex--item" data-webtasks-id="c6012954-54d0-494f">
<a href="https://travel.stackexchange.com" data-webtasks-id="9adfc3ed-f981-4c69">current community</a>
</h3>
<div class="flex--item fl1" data-webtasks-id="7cf83f5d-f210-4d0c">
<div class="ai-center d-flex jc-end" data-webtasks-id="3399c15b-607f-42b1">
<button class="js-close-button s-btn s-btn__muted p0 ml8 d-none sm:d-block" type="button" aria-label="Close" data-webtasks-id="7c94e71f-4917-4555">
<svg aria-hidden="true" class="svg-icon iconClear" width="18" height="18" viewBox="0 0 18 18" data-webtasks-id="f7efcb9e-6d73-4eff"><path d="M15 4.41 13.59 3 9 7.59 4.41 3 3 4.41 7.59 9 3 13.59 4.41 15 9 10.41 13.59 15 15 13.59 10.41 9 15 4.41Z" data-webtasks-id="4cbdc6fd-6f46-4ebc"></path></svg>
</button>
</div>
</div>
</div>
<div class="modal-content bg-powder-050 current-site-container" data-webtasks-id="b575e0d8-3a2b-4031">
<div class="d-none sm:d-block" data-webtasks-id="34ea6f00-fdd0-4d96">
<div class="d-flex ai-end" data-webtasks-id="537189ce-a3a0-4698">
<div class="s-user-card flex--item fl1" data-webtasks-id="293809a5-ad75-43fa">
<a href="/users/136878/webtasks-navigator" class="s-avatar s-avatar__32 s-user-card--avatar" data-webtasks-id="e1e9bbf1-934e-468f">
<div class="gravatar-wrapper-32" data-webtasks-id="a5e11853-b635-40f4"><img src="https://www.gravatar.com/avatar/64db2cea44c88e309a742529e139f6bd?s=32&d=identicon&r=PG&f=y&so-version=2" alt="Webtasks Navigator's user avatar" width="32" height="32" class="bar-sm avatar s-avatar--image" data-webtasks-id="6ad069a3-ceb2-4fe0"></div>
</a>
<div class="s-user-card--info" data-webtasks-id="db4ed2cf-8074-4862">
<a href="/users/136878/webtasks-navigator" class="s-user-card--link" data-webtasks-id="d620ea5a-e74f-4994">Webtasks Navigator</a>
<div class="s-user-card--awards lh-unset fc-black-700 fw-bold" data-webtasks-id="e1923f4f-66c6-4b36">
<span class="reputation-score" title="reputation score " dir="ltr" data-webtasks-id="704746ce-60db-47cb">1</span>
</div>
</div>
</div>
<div class="related-links flex--item p8" data-webtasks-id="c3e83588-9082-44e4">
<a href="https://travel.stackexchange.com/users/logout" data-gps-track="site_switcher.click({ item_type:8 })" data-webtasks-id="65c458bd-826f-4e73">log out</a>
</div>
</div>
</div>
<ul class="current-site " data-webtasks-id="c1a1cad5-5cbd-46f7">
<li class="d-flex" data-webtasks-id="762d5384-a811-49b7">
<div class="fl1" data-webtasks-id="64d074d7-6ab9-4d5d">
<a href="https://travel.stackexchange.com" class="current-site-link site-link js-gps-track d-flex gs8 gsx" data-id="273" data-gps-track="site_switcher.click({ item_type:3 })" data-webtasks-id="7f130de2-959e-424e">
<div class="favicon favicon-travel site-icon flex--item" title="Travel" data-webtasks-id="8d82e246-0499-451c"></div>
<span class="flex--item fl1" data-webtasks-id="5d73f996-1530-4ba8">
Travel
</span>
</a>
</div>
<div class="related-links" data-webtasks-id="ddf27c5e-d2b7-4411">
<a href="https://travel.stackexchange.com/help" class="js-gps-track" data-gps-track="site_switcher.click({ item_type:14 })" data-webtasks-id="03a8230e-1fd5-4b15">help</a>
<a href="https://chat.stackexchange.com?tab=site&host=travel.stackexchange.com" class="js-gps-track" data-gps-track="site_switcher.click({ item_type:6 })" data-webtasks-id="4061a4ea-459e-4224">chat</a>
<a href="https://travel.stackexchange.com/users/logout" class="js-gps-track" data-gps-track="site_switcher.click({ item_type:8 })" data-webtasks-id="63564873-5c0e-4ecd">log out</a>
</div>
</li>
<li class="related-site d-flex" data-webtasks-id="49af6d27-6749-41af">
<div class="L-shaped-icon-container" data-webtasks-id="39e34d4f-3f2a-4726">
<span class="L-shaped-icon" data-webtasks-id="31b122bc-96b5-42fd"></span>
</div>
<a href="https://travel.meta.stackexchange.com" class=" site-link js-gps-track d-flex gs8 gsx" data-id="275" data-gps-track="site.switch({ target_site:275, item_type:3 }),site_switcher.click({ item_type:4 })" data-webtasks-id="71f77e7c-bc70-40ff">
<div class="favicon favicon-travelmeta site-icon flex--item" title="Travel Meta" data-webtasks-id="8ef7c4a6-bc1d-499d"></div>
<span class="flex--item fl1" data-webtasks-id="d0080236-e279-44de">
Travel Meta
</span>
</a>
</li>
</ul>
</div>
<div class="header" id="your-communities-header" data-webtasks-id="d20b2b11-f1b2-4690">
<h3 data-webtasks-id="e1360f3c-4745-4dc2">
<a href="https://stackexchange.com/users/28364646/?tab=accounts" data-webtasks-id="df12c84a-f901-4dd7">your communities</a>
</h3>
<a href="#" id="edit-pinned-sites" data-webtasks-id="a4653e2d-145b-4f20">edit</a>
<a href="#" id="cancel-pinned-sites" style="display: none;" data-webtasks-id="e8095b3e-fdbd-4201">cancel</a>
</div>
<div class="modal-content" id="your-communities-section" data-webtasks-id="bf4910e1-02fc-4ffa">
<ul class="my-sites" data-webtasks-id="0bd8678a-bb3f-4850">
<li data-webtasks-id="b10ff9be-df06-427f">
<a href="https://stackoverflow.com" class=" site-link js-gps-track d-flex gs8 gsx" data-id="1" data-gps-track="site.switch({ target_site:1, item_type:3 }),site_switcher.click({ item_type:1 })" data-webtasks-id="48e34c75-ea98-4da5">
<div class="favicon favicon-stackoverflow site-icon flex--item" title="Stack Overflow" data-webtasks-id="4ea4ddb2-7890-4442"></div>
<span class="flex--item fl1" data-webtasks-id="f3d11020-9c37-438e">
Stack Overflow
</span>
<span class="rep-score flex--item" data-webtasks-id="81b63f43-fd06-4343">1</span>
</a>
</li>
<li data-webtasks-id="db47ed58-7e7e-490d">
<a href="https://travel.stackexchange.com" class=" site-link js-gps-track d-flex gs8 gsx" data-id="273" data-gps-track="site.switch({ target_site:273, item_type:3 }),site_switcher.click({ item_type:1 })" data-webtasks-id="468a7f6d-b1c8-479f">
<div class="favicon favicon-travel site-icon flex--item" title="Travel" data-webtasks-id="c6df01fb-7f6d-445c"></div>
<span class="flex--item fl1" data-webtasks-id="bce0b351-04b6-4632">
Travel
</span>
<span class="rep-score flex--item" data-webtasks-id="d3705017-910d-40ec">1</span>
</a>
</li>
</ul>
<div class="pinned-site-editor-container" style="display: none;" data-webtasks-id="c72e5480-fc48-4e88">
<input type="hidden" name="fkey" value="fe76f3281bad2063ad30f357d65244f2508ca27d494a61fe42e4d6aea23fa56d" data-webtasks-id="df12054d-f0fe-4a1d">
<div class="d-flex p12" data-webtasks-id="c2d694be-5f0c-47e5">
<div class="flex--item fl1 ps-relative" data-webtasks-id="768e2392-de26-488b">
<input id="js-site-search-txt" type="text" class="s-input s-input__sm w100 h100 site-filter-input" value="" placeholder="Add a Stack Exchange community" data-webtasks-id="15c0559e-f190-4c5e">
<ul class="js-found-sites found-sites hmx1 l0 r0 ps-absolute overflow-y-auto" data-webtasks-id="ebc1a676-f3fb-47bd"></ul>
</div>
<button class="ml8 s-btn s-btn__sm" type="submit" id="pin-site-btn" disabled="disabled" data-webtasks-id="b31ccd20-70bc-4fd1">Add</button>
</div>
<ul class="pinned-site-list sortable" data-custom-list="False" data-webtasks-id="d12d5ed0-a90f-4e5a">
</ul>
<div class="d-flex p12 jc-end" data-webtasks-id="6e99e7ff-6f9d-497f">
<a class="flex--item s-btn s-btn__sm js-reset-pinned-sites" href="#" data-webtasks-id="69ac0515-68d3-42a4">Reset</a>
<button class="ml8 flex--item s-btn s-btn__primary s-btn__sm" type="submit" id="save-pinned-sites-btn" disabled="disabled" data-webtasks-id="40f66cce-d261-4a52">Save</button>
</div>
</div>
</div>
<div class="header" data-webtasks-id="bf9bb3b3-1d46-4c75">
<h3 data-webtasks-id="e297ec9f-2237-4017"><a href="https://stackexchange.com/sites" data-webtasks-id="a7fbf333-c59b-4aaa">more stack exchange communities</a>
</h3>
<a href="https://stackoverflow.blog" class="float-right" data-webtasks-id="f6e8a551-73d6-488d">company blog</a>
</div>
<div class="modal-content" data-webtasks-id="6ea25a4b-92c7-4482">
<div class="child-content" data-webtasks-id="5e6b0428-96bf-4c21"></div>
</div>
</div>
</li>
</ol>
</nav>
</div>
</header>
<script data-webtasks-id="1cefd004-9444-4aa8">
StackExchange.ready(function () { StackExchange.topbar.init(); });
StackExchange.scrollPadding.setPaddingTop(50, 10);
</script>
<header class="site-header" data-webtasks-id="2c90f51b-d7fb-49ef">
<div class="site-header--container" data-webtasks-id="b0aeb6b0-7d24-4529">
<a class="site-header--link d-flex ai-center fs-headline1 fw-bold" href="https://travel.stackexchange.com" data-webtasks-id="a0ef3867-3ef7-46f3">
<img class="h-auto wmx100" src="https://cdn.sstatic.net/Sites/travel/Img/logo.svg?v=556a1fc4f70a" alt="Travel" data-webtasks-id="a5e49f7a-c24f-41bf">
</a>
</div>
</header>
<div class="container" data-webtasks-id="b235218f-6368-4ab4">
<div id="left-sidebar" data-is-here-when="md lg" class="left-sidebar js-pinned-left-sidebar ps-relative" data-webtasks-id="9e75c681-a274-444a">
<div class="left-sidebar--sticky-container js-sticky-leftnav" data-webtasks-id="1df218c3-a5dd-4e62">
<nav role="navigation" data-webtasks-id="2d0ef547-0789-4bc3">
<ol class="nav-links" data-webtasks-id="8700ec97-d1b3-4e71">
<li class="ps-relative" aria-current="false" data-webtasks-id="1cccb992-1235-45be">
<a href="/" class="pl8 js-gps-track nav-links--link" data-gps-track="top_nav.click({is_current: false, location:3, destination:8})" aria-controls="" data-controller="" data-s-popover-placement="right" aria-current="false" data-s-popover-auto-show="true" data-s-popover-hide-on-outside-click="never" data-webtasks-id="cff17bee-2a86-444f">
<div class="d-flex ai-center" data-webtasks-id="f75c2a7e-c5ef-44fc">
<div class="flex--item truncate" data-webtasks-id="1ee15f60-2116-42d3">
Home
</div>
</div>
</a>
</li>
<li data-webtasks-id="f91d6b18-6894-487c">
<ol class="nav-links" data-webtasks-id="8780421d-6b1e-4146">
<li class="fs-fine tt-uppercase ml8 mt16 mb4 fc-light" data-webtasks-id="778a9cac-8ab5-423f">Public</li>
<li class="ps-relative youarehere" aria-current="true" data-webtasks-id="b72d81ec-c4c8-4c63">
<a id="nav-questions" href="/questions" class="pl8 js-gps-track nav-links--link -link__with-icon" data-gps-track="top_nav.click({is_current: true, location:3, destination:1})" aria-controls="" data-controller="" data-s-popover-placement="right" aria-current="false" data-s-popover-auto-show="true" data-s-popover-hide-on-outside-click="never" data-webtasks-id="db2373a4-dbe1-488e">
<svg aria-hidden="true" class="svg-icon iconGlobe" width="18" height="18" viewBox="0 0 18 18" data-webtasks-id="2fe9eb2f-93dc-4dc8"><path d="M9 1C4.64 1 1 4.64 1 9c0 4.36 3.64 8 8 8 4.36 0 8-3.64 8-8 0-4.36-3.64-8-8-8ZM8 15.32a6.46 6.46 0 0 1-4.3-2.74 6.46 6.46 0 0 1-.93-5.01L7 11.68v.8c0 .88.12 1.32 1 1.32v1.52Zm5.72-2c-.2-.66-1-1.32-1.72-1.32h-1v-2c0-.44-.56-1-1-1H6V7h1c.44 0 1-.56 1-1V5h2c.88 0 1.4-.72 1.4-1.6v-.33a6.45 6.45 0 0 1 3.83 4.51 6.45 6.45 0 0 1-1.51 5.73v.01Z" data-webtasks-id="4c158c2c-8946-4150"></path></svg> <span class="-link--channel-name" data-webtasks-id="3882ba28-cb61-4a37">Questions</span>
</a>
</li>
<li class="ps-relative" aria-current="false" data-webtasks-id="865961de-f5c0-4451">
<a id="nav-tags" href="/tags" class=" js-gps-track nav-links--link" data-gps-track="top_nav.click({is_current: false, location:3, destination:2})" aria-controls="" data-controller="" data-s-popover-placement="right" aria-current="false" data-s-popover-auto-show="true" data-s-popover-hide-on-outside-click="never" data-webtasks-id="377be10d-dac6-436a">
<div class="d-flex ai-center" data-webtasks-id="0fa30b98-829a-41c4">
<div class="flex--item truncate" data-webtasks-id="32a171f1-9bf6-4a1c">
Tags
</div>
</div>
</a>
</li>
<li class="ps-relative" aria-current="false" data-webtasks-id="4a24f063-844e-4071">
<a id="nav-users" href="/users" class=" js-gps-track nav-links--link" data-gps-track="top_nav.click({is_current: false, location:3, destination:3})" aria-controls="" data-controller="" data-s-popover-placement="right" aria-current="false" data-s-popover-auto-show="true" data-s-popover-hide-on-outside-click="never" data-webtasks-id="abe93fd1-0b2f-4fa9">
<div class="d-flex ai-center" data-webtasks-id="87ef2595-aba8-4734">
<div class="flex--item truncate" data-webtasks-id="25d22ab7-a833-483b">
Users
</div>
</div>
</a>
</li>
<li class="ps-relative" aria-current="false" data-webtasks-id="d895f9e7-3705-44c8">
<a id="nav-unanswered" href="/unanswered" class=" js-gps-track nav-links--link" data-gps-track="top_nav.click({is_current: false, location:3, destination:5})" aria-controls="" data-controller="" data-s-popover-placement="right" aria-current="false" data-s-popover-auto-show="true" data-s-popover-hide-on-outside-click="never" data-webtasks-id="a660de25-b981-477f">
<div class="d-flex ai-center" data-webtasks-id="e0473163-97cc-464b">
<div class="flex--item truncate" data-webtasks-id="173d2cc2-166c-4088">
Unanswered
</div>
</div>
</a>
</li>
</ol>
</li>
<li class="d-flex ai-center jc-space-between ml8 mt24 mb4 js-create-team-cta" data-webtasks-id="6dc0e5a8-c82c-43b3">
<div class="flex--item tt-uppercase fs-fine fc-light" data-webtasks-id="24fa6d1b-f4a7-4ec7">Teams</div>
<div class="flex--item" data-webtasks-id="283d26bd-4af0-4636">
<a href="javascript:void(0)" class="s-link p12 fc-black-500 h:fc-black-800 js-gps-track" role="button" aria-controls="popover-teams-create-cta" data-controller="s-popover" data-action="s-popover#toggle" data-s-popover-placement="bottom-start" data-s-popover-toggle-class="is-selected" data-gps-track="teams.create.left-sidenav.click({ Action: ShowInfo })" data-ga="["teams left navigation","left nav show teams info",null,null,null]" aria-expanded="false" data-webtasks-id="cbf88e0d-b322-4902">
<svg aria-hidden="true" class="svg-icon iconInfoSm" width="14" height="14" viewBox="0 0 14 14" data-webtasks-id="002b7e78-7bef-449e"><path d="M7 1a6 6 0 1 1 0 12A6 6 0 0 1 7 1Zm1 10V6H6v5h2Zm0-6V3H6v2h2Z" data-webtasks-id="94a88dc3-4c2b-4b3b"></path></svg>
</a>
</div>
</li>
<li class="ps-relative js-create-team-cta" data-webtasks-id="c8d5c48a-fb97-43d5">
<a href="https://stackoverflowteams.com/teams/create/free/?utm_source=so-owned&utm_medium=side-bar&utm_campaign=campaign-38&utm_content=cta" class="pl8 js-gps-track nav-links--link" title="Stack Overflow for Teams is a private, secure spot for your organization's questions and answers." data-gps-track="teams.create.left-sidenav.click({ Action: FreemiumTeamsCreateClick })" data-ga="["teams left navigation","left nav team click","stackoverflow.com/teams/create/free",null,null]" data-webtasks-id="6f479d7a-d84e-4760">
<div class="d-flex ai-center" data-webtasks-id="a5a67efa-5bc7-4f92">
<div class="flex--item s-avatar va-middle bg-orange-400" data-webtasks-id="0e00a995-885e-4a8f">
<div class="s-avatar--letter mtn1" data-webtasks-id="738a5869-adb4-463e">
<svg aria-hidden="true" class="svg-icon iconBriefcaseSm" width="14" height="14" viewBox="0 0 14 14" data-webtasks-id="1949155a-35d9-4f14"><path d="M4 3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v1h.5c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 2 10.5v-5C2 4.67 2.67 4 3.5 4H4V3Zm5 1V3H5v1h4Z" data-webtasks-id="0ce7548e-7ee6-41c3"></path></svg>
</div>
<svg aria-hidden="true" class="native s-avatar--badge svg-icon iconShieldXSm" width="9" height="10" viewBox="0 0 9 10" data-webtasks-id="80d1bd75-ed59-4d41"><path fill="var(--white)" d="M0 1.84 4.5 0 9 1.84v3.17C9 7.53 6.3 10 4.5 10 2.7 10 0 7.53 0 5.01V1.84Z" data-webtasks-id="35c0c361-3b7c-4909"></path><path fill="var(--black-500)" d="M1 2.5 4.5 1 8 2.5v2.51C8 7.34 5.34 9 4.5 9 3.65 9 1 7.34 1 5.01V2.5Zm2.98 3.02L3.2 7h2.6l-.78-1.48a.4.4 0 0 1 .15-.38c.34-.24.73-.7.73-1.14 0-.71-.5-1.23-1.41-1.23-.92 0-1.39.52-1.39 1.23 0 .44.4.9.73 1.14.12.08.18.23.15.38Z" data-webtasks-id="e1373e64-70cd-4ed0"></path></svg>
</div>
<div class="flex--item pl6" data-webtasks-id="a551bf46-adfc-4ba0">
Create free Team
</div>
</div>
</a>
</li>
<li class="pl1 pr8" data-webtasks-id="2bbbc64d-2998-4fe8">
<button class="s-btn s-btn__link w100 fc-blue-700 h:fc-blue-900 p8 fs-caption mr8 mt8 d-block bar-md bg-blue-050 lh-md js-gps-track" aria-controls="teams-were-moved-popover" aria-expanded="false" data-controller="s-popover" data-action="s-popover#toggle" data-s-popover-placement="bottom-start" data-gps-track="teams.sot_migration_notification_teams_moved.click()" data-webtasks-id="d89e0972-1f66-4e0d">
Looking for your Teams?
</button>
</li>
</ol>
</nav>
</div>
<div class="s-popover mt4 ws3" id="teams-were-moved-popover" role="menu" data-webtasks-id="30714d76-046b-4a34">
<div class="s-popover--arrow" data-webtasks-id="9361c470-bfae-41bc"></div>
<p data-webtasks-id="b1b64ce4-a35b-4c98">Stack Overflow for Teams has its own domain!</p>
<p data-webtasks-id="7c0cf178-4561-449c">You can now access your Teams at <a href="https://stackoverflowteams.com" class="s-link fs-italic" data-webtasks-id="f91e3f6b-6fe1-4054">stackoverflowteams.com</a>. Teams no longer appear in the left sidebar on <span class="fs-italic" data-webtasks-id="bd4f9808-3f14-484b">stackoverflow.com</span>. Check your email to learn more about these changes.</p>
</div>
<div class="s-popover ws2" id="popover-teams-create-cta" role="menu" aria-hidden="true" data-webtasks-id="36099b9d-7b54-4252">
<div class="s-popover--arrow" data-webtasks-id="6733bf74-0120-47fd"></div>
<div class="ps-relative overflow-hidden" data-webtasks-id="29eb333c-f6d5-4715">
<p class="mb2" data-webtasks-id="6e9bf602-a352-4fc2"><strong data-webtasks-id="54b032e6-673b-4dc8">Teams</strong></p>
<p class="mb12 fs-caption fc-black-400" data-webtasks-id="a0b0ac46-bd71-4831">Q&A for work</p>
<p class="mb12 fs-caption fc-medium" data-webtasks-id="6d772fb1-64b2-4d1c">Connect and share knowledge within a single location that is structured and easy to search.</p>
<a href="https://stackoverflow.co/teams/" class="js-gps-track s-btn s-btn__primary s-btn__xs" data-gps-track="teams.create.left-sidenav.click({ Action: CtaClick })" data-ga="["teams left navigation","left nav cta","stackoverflow.com/teams",null,null]" data-webtasks-id="8150d344-b507-42a5">
Learn more about Teams
</a>
</div>
<div class="ps-absolute t8 r8" data-webtasks-id="2fd24dab-4400-4f46">
<svg aria-hidden="true" class="fc-orange-500 svg-spot spotPeople" width="48" height="48" viewBox="0 0 48 48" data-webtasks-id="b3cc26d1-1f79-4147"><path d="M13.5 28a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9ZM7 30a1 1 0 0 1 1-1h11a1 1 0 0 1 1 1v5h11v-5a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v10a2 2 0 0 1-2 2H33v5a1 1 0 0 1-1 1H20a1 1 0 0 1-1-1v-5H8a1 1 0 0 1-1-1V30Zm25-6.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0ZM24.5 34a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Z" opacity=".2" data-webtasks-id="6ef86c01-101f-4269"></path><path d="M16.4 26.08A6 6 0 1 0 7.53 26C5.64 26.06 4 27.52 4 29.45V40a1 1 0 0 0 1 1h9a1 1 0 1 0 0-2h-4v-7a1 1 0 1 0-2 0v7H6v-9.55c0-.73.67-1.45 1.64-1.45H16a1 1 0 0 0 .4-1.92ZM12 18a4 4 0 1 1 0 8 4 4 0 0 1 0-8Zm16.47 14a6 6 0 1 0-8.94 0A3.6 3.6 0 0 0 16 35.5V46a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V35.5c0-1.94-1.64-3.42-3.53-3.5ZM20 28a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm-.3 6h8.6c1 0 1.7.75 1.7 1.5V45h-2v-7a1 1 0 1 0-2 0v7h-4v-7a1 1 0 1 0-2 0v7h-2v-9.5c0-.75.7-1.5 1.7-1.5ZM42 22c0 1.54-.58 2.94-1.53 4A3.5 3.5 0 0 1 44 29.45V40a1 1 0 0 1-1 1h-9a1 1 0 1 1 0-2h4v-7a1 1 0 1 1 2 0v7h2v-9.55A1.5 1.5 0 0 0 40.48 28H32a1 1 0 0 1-.4-1.92A6 6 0 1 1 42 22Zm-2 0a4 4 0 1 0-8 0 4 4 0 0 0 8 0Z" data-webtasks-id="4bebab88-037c-488f"></path><g opacity=".35" data-webtasks-id="894db22a-981d-4ec9"><path d="M17 10a1 1 0 011-1h12a1 1 0 110 2H18a1 1 0 01-1-1Zm1-5a1 1 0 100 2h12a1 1 0 100-2H18ZM14 1a1 1 0 00-1 1v12a1 1 0 001 1h5.09l4.2 4.2a1 1 0 001.46-.04l3.7-4.16H34a1 1 0 001-1V2a1 1 0 00-1-1H14Zm1 12V3h18v10h-5a1 1 0 00-.75.34l-3.3 3.7-3.74-3.75a1 1 0 00-.71-.29H15Z" data-webtasks-id="dd246b28-9eac-4b7e"></path></g></svg>
</div>
</div>
</div>
<div id="content" class="" data-webtasks-id="871612d5-b8d1-4ea0">
<div id="mainbar" role="main" aria-labelledby="h-all-questions" data-webtasks-id="bb91fc8b-8a25-4e3a">
<div class="d-flex fw-wrap mb12" data-webtasks-id="ed6d9e59-12b2-4d5b">
<h1 class="flex--item fl1 fs-headline1 mr12 mb12" data-webtasks-id="ac714b65-8e2a-4a3e">All Questions</h1>
<div class="aside-cta flex--item mb12 print:d-none" data-webtasks-id="d173bbab-562b-4efb">
<a href="/questions/ask" class="ws-nowrap s-btn s-btn__primary" data-webtasks-id="26012854-6f81-4bbd">
Ask Question
</a>
</div>
</div>
<script type="application/json" data-role="module-args" data-module-name="entry-points/questions/userQuestionList.mod" data-webtasks-id="8e11ca5a-f523-48df">{"regularTagsString":"","moderatorTagsString":""}</script>
<script defer="" src="https://cdn.sstatic.net/Js/questions/userQuestionList.en.js?v=a73a37d9a033" data-webtasks-id="71a78af5-2437-4297"></script>
<div data-controller="se-uql" data-se-uql-id="" data-se-uql-sanitize-tag-query="false" data-webtasks-id="01e2f514-c2db-43a8">
<div class="d-flex ai-center jc-space-between mb12 sm:fd-column sm:ai-stretch" data-webtasks-id="f7972f30-02da-4cbf">
<div class="fs-body3 flex--item fl1 mr12 sm:mr0 sm:mb12" data-webtasks-id="1442e100-0dad-4ac8">
47,179
questions
</div>
<div class="uql-nav flex--item" data-action="se-uql-list:edit-current-requested@document->se-uql#toggleEditor" data-webtasks-id="9f4c446e-7fa8-4dad">
<div class="d-flex ai-center jc-space-between" data-webtasks-id="d0384a9b-c864-47ac">
<div class="js-uql-navigation s-btn-group flex--item mr16 ff-row-nowrap" data-webtasks-id="b8f89a7a-47ca-4f51">
<a class="s-btn s-btn__muted s-btn__outlined s-btn__sm d-flex" data-nav-value="Newest" href="/questions?tab=Newest" data-shortcut="N" data-webtasks-id="3ceb319c-a73c-4ba0">
<div class="flex--item" data-webtasks-id="e7e19b89-8069-4fa8">Newest</div>
</a>
<a class="s-btn s-btn__muted s-btn__outlined s-btn__sm d-flex" data-nav-value="Active" href="/questions?tab=Active" data-shortcut="A" data-webtasks-id="ba502db9-8715-4ad9">
<div class="flex--item" data-webtasks-id="12330e4f-03ea-4755">Active</div>
</a>
<a class="s-btn s-btn__muted s-btn__outlined s-btn__sm d-flex uql-nav--expanded-item" data-nav-value="Bounties" href="/questions?tab=Bounties" data-shortcut="E" data-webtasks-id="3250acea-a1c3-44f6">
<div class="flex--item" data-webtasks-id="0c3f7b27-43aa-4039">Bountied</div>
<div class="s-badge s-badge__bounty s-badge__bounty s-badge__sm lh-xs ml4 px4 flex--item" data-webtasks-id="2f010ec2-0dd1-4660">1</div>
</a>
<a class="s-btn s-btn__muted s-btn__outlined s-btn__sm d-flex uql-nav--expanded-item" data-nav-value="Unanswered" href="/questions?tab=Unanswered" data-shortcut="U" data-webtasks-id="09c89c5f-c334-4309">
<div class="flex--item" data-webtasks-id="af799ae3-4b75-4fbf">Unanswered</div>
</a>
<button class="s-btn s-btn__muted s-btn__outlined s-btn__sm s-btn__dropdown is-selected" role="button" data-controller="s-popover" data-action="s-popover#toggle" data-se-uql-target="toggleMoreButton" aria-haspopup="true" aria-expanded="false" aria-controls="uql-more-popover" data-webtasks-id="1f64f64e-4aaa-46d3">
More
</button>
</div>
<div class="s-popover z-dropdown ws2 px0 py4" id="uql-more-popover" data-se-uql-target="morePopover" data-webtasks-id="00fce302-73c5-4d0e">
<div class="s-popover--arrow" data-webtasks-id="b31d5faa-f477-47ff"></div>
<ul class="s-menu js-uql-navigation" role="menu" data-webtasks-id="013cb57d-305c-40b2">
<li class=" uql-nav--collapsed-item" role="menuitem" data-webtasks-id="21008788-3eaf-4711">
<a href="/questions?tab=Bounties" class="s-block-link s-block-link__left" data-shortcut="" data-webtasks-id="1bd51acf-b936-40f5">
Bountied
<span class="s-badge s-badge__bounty s-badge__bounty s-badge__sm lh-xs px4" data-webtasks-id="e1993022-36ce-48e5">1</span>
</a>
</li>
<li class=" uql-nav--collapsed-item" role="menuitem" data-webtasks-id="5c812f39-6c22-4415">
<a href="/questions?tab=Unanswered" class="s-block-link s-block-link__left" data-shortcut="" data-webtasks-id="d660f73e-7677-4fce">
Unanswered
</a>
</li>
<li role="menuitem" data-webtasks-id="c7b41526-4c86-4f56">
<a href="/questions?tab=Frequent" class="s-block-link s-block-link__left" data-shortcut="F" data-webtasks-id="c34490f4-6adb-48c9">
Frequent
</a>
</li>
<li role="menuitem" data-webtasks-id="18dff385-f917-447b">
<a href="/questions?tab=Votes" class="s-block-link s-block-link__left is-selected" aria-current="page" data-shortcut="V" data-webtasks-id="c46908b2-fb05-4bef">
Score
</a>
</li>
<li class="s-menu--divider" role="separator" data-webtasks-id="99d7dea6-60cf-43d6"></li>
<li role="menuitem" data-webtasks-id="c5f01403-70ce-4044">
<a href="/questions/tagged?tab=Unanswered&tagMode=Watched" class="s-block-link s-block-link__left" data-shortcut="T" data-webtasks-id="ef2f2a26-9af6-44d9">
Unanswered (my tags)
</a>
</li>
<li class="s-menu--divider" role="separator" data-webtasks-id="4cf52527-44fc-45b8"></li>
<li class="s-menu--title" role="separator" data-webtasks-id="986c682c-334c-4570">Custom filters</li>
<li role="menuitem" data-webtasks-id="bb7b8ad6-94fb-42cd">
<div class="py16 px24 ta-center fs-fine fc-black-500" data-webtasks-id="ab4d9ca0-23e4-4848">
Save custom sorting & filtering for easy access.
</div>
</li>
</ul>
</div>
<div class="flex--item" data-webtasks-id="ab8326b5-b2ff-42a7">
<button class="s-btn s-btn__filled s-btn__sm s-btn__icon ws-nowrap is-selected" role="button" data-controller="s-expandable-control" data-s-expandable-control-toggle-class="is-selected" data-se-uql-target="toggleFormButton" aria-expanded="true" aria-controls="uql-form" data-webtasks-id="0c0edc3b-27bb-486c">
<svg aria-hidden="true" class="svg-icon iconFilter" width="18" height="18" viewBox="0 0 18 18" data-webtasks-id="aa8e87a1-94b3-42df"><path d="M2 4h14v2H2V4Zm2 4h10v2H4V8Zm8 4H6v2h6v-2Z" data-webtasks-id="3c7ea5dd-b18c-45b9"></path></svg> Filter
</button>
</div>
</div>
</div>
</div>
<form class="s-expandable ps-relative z-active is-expanded" id="uql-form" data-se-uql-target="form" data-action="se-uql#navigate" data-webtasks-id="674814d8-660b-4433">
<input name="uqlId" type="hidden" data-webtasks-id="3bdcdf10-ce0c-4244">
<div class="s-expandable--content" data-webtasks-id="4fc926c9-2cae-4959">
<div class="bg-black-050 ba bc-black-100 bar-sm mb16" data-webtasks-id="047ba746-41c3-46a0">
<div class="px12 py16" data-webtasks-id="7f2a6557-6a4b-42e2">
<div class="d-flex gs32 fw-wrap" data-webtasks-id="3764efb2-56bb-4311">
<div class="flex--item" data-webtasks-id="803179bc-8c0c-4ec2">
<fieldset class="d-flex gs8 gsy fd-column" data-webtasks-id="6929db13-37d0-41ff">
<legend class="flex--item s-label px0" data-webtasks-id="b775ff5b-46c2-4e1b">Filter by</legend>
<div class="flex--item" data-webtasks-id="d70e0967-7aaf-4683">
<div class="d-flex gs4 gsx ai-center" data-webtasks-id="5d46d194-1dfa-4f77">
<div class="flex--item" data-webtasks-id="84fdeaed-4a21-4e58">
<input class="s-checkbox d-block" type="checkbox" name="filterId" value="NoAnswers" id="d5f77431-6644-4735-949a-ebb8cb6075ed" data-webtasks-id="56ad1d64-e704-4944">
</div>
<label class="flex--item s-label fw-normal ws-nowrap" for="d5f77431-6644-4735-949a-ebb8cb6075ed" id="83ee529e-1988-4607-893e-e2ed87ad3c8e" data-webtasks-id="34774b78-5096-4181">No answers</label>
</div>
</div>
<div class="flex--item" data-webtasks-id="755489b9-e23f-4139">
<div class="d-flex gs4 gsx ai-center" data-webtasks-id="66f2924f-6e40-469b">
<div class="flex--item" data-webtasks-id="3c9bf2bb-5eb7-499d">
<input class="s-checkbox d-block" type="checkbox" name="filterId" value="NoAcceptedAnswer" id="076d3fcd-6c1e-4f38-a925-e54b5ab255b3" data-webtasks-id="d0df1b4e-e469-4637">
</div>
<label class="flex--item s-label fw-normal ws-nowrap" for="076d3fcd-6c1e-4f38-a925-e54b5ab255b3" id="1704826b-47e0-46c2-b488-914dd97db8e7" data-webtasks-id="714ebad3-c428-4971">No accepted answer</label>
</div>
</div>
<div class="flex--item" data-webtasks-id="3462093a-11da-4c54">
<div class="d-flex gs4 gsx ai-center" data-webtasks-id="5419deb3-416d-450a">
<div class="flex--item" data-webtasks-id="98ecad97-7514-496b">
<input class="s-checkbox d-block" type="checkbox" name="filterId" value="Bounty" id="ddc78ae8-57ee-44ea-a962-860a66315a88" data-webtasks-id="beb0262c-29ab-4a9b">
</div>
<label class="flex--item s-label fw-normal ws-nowrap" for="ddc78ae8-57ee-44ea-a962-860a66315a88" id="233c28a4-bda2-43ae-8ac4-c8d00ce95298" data-webtasks-id="3ce591cd-c3e3-40d6">Has bounty</label>
</div>
</div>
</fieldset>
</div>
<div class="flex--item" data-webtasks-id="b693e860-a23b-4a71">
<fieldset class="d-flex gs8 gsy fd-column" data-webtasks-id="cc8f031b-c425-4658">
<legend class="flex--item s-label px0" data-webtasks-id="1fb12c7f-69ba-4ee6">Sorted by</legend>
<div class="flex--item" data-webtasks-id="84c5644a-6550-4f03">
<div class="d-flex gs4 gsx ai-center" data-webtasks-id="c488db28-5e51-47b3">
<div class="flex--item" data-webtasks-id="40c702c4-8a98-4a99">
<input class="s-radio d-block" type="radio" name="sortId" value="Newest" id="6d73d94b-fd8d-43d1-a8e2-ad6e8dcb4a9a" data-webtasks-id="6a5d332a-d909-444e">
</div>
<label class="flex--item s-label fw-normal ws-nowrap" for="6d73d94b-fd8d-43d1-a8e2-ad6e8dcb4a9a" id="f3cb88ed-45c1-4504-b218-6bd204e304f5" data-webtasks-id="33365219-2687-4f91">Newest</label>
</div>
</div>
<div class="flex--item" data-webtasks-id="c4b8eefe-91de-4a72">
<div class="d-flex gs4 gsx ai-center" data-webtasks-id="f6324e89-59c9-4239">
<div class="flex--item" data-webtasks-id="6714f7ab-2778-4f0e">
<input class="s-radio d-block" type="radio" name="sortId" value="RecentActivity" id="c3ce7d6a-0e1d-41ae-9a0c-ef8420878c8d" data-webtasks-id="9dcf5f0b-7c14-4420">
</div>
<label class="flex--item s-label fw-normal ws-nowrap" for="c3ce7d6a-0e1d-41ae-9a0c-ef8420878c8d" id="221ed33a-1066-47ec-ae68-dc05260a529d" data-webtasks-id="204f4a60-801e-4279">Recent activity</label>
</div>
</div>
<div class="flex--item" data-webtasks-id="05146641-dc50-4e00">
<div class="d-flex gs4 gsx ai-center" data-webtasks-id="5b572f13-4a6a-441b">
<div class="flex--item" data-webtasks-id="a41cdf1e-2785-43c3">
<input class="s-radio d-block" type="radio" name="sortId" value="MostVotes" checked="checked" id="f72950ae-d4df-4a13-a196-57adf05ac8ff" data-webtasks-id="77713152-49ff-4906">
</div>
<label class="flex--item s-label fw-normal ws-nowrap" for="f72950ae-d4df-4a13-a196-57adf05ac8ff" id="f9705f46-0b5a-4edb-9168-c31a0d5000ef" data-webtasks-id="e02a46a6-6ac3-44dc">Highest score</label>
</div>
</div>
<div class="flex--item" data-webtasks-id="03bf9671-fcd8-4277">
<div class="d-flex gs4 gsx ai-center" data-webtasks-id="ee167a81-a285-4049">
<div class="flex--item" data-webtasks-id="9b14a535-d1f1-4bee">
<input class="s-radio d-block" type="radio" name="sortId" value="MostFrequent" id="7a2e7130-2f2d-4a29-8fce-d0edcd14b1d7" data-webtasks-id="97b77994-a565-427c">
</div>
<label class="flex--item s-label fw-normal ws-nowrap" for="7a2e7130-2f2d-4a29-8fce-d0edcd14b1d7" id="ffb127f0-284d-47d4-b52a-31893907e151" data-webtasks-id="439360c9-bd02-4d16">Most frequent</label>
</div>
</div>
<div class="flex--item" data-webtasks-id="db5fd8b3-3cbb-4e04">
<div class="d-flex gs4 gsx ai-center" data-webtasks-id="dd790a46-8d3a-415c">
<div class="flex--item" data-webtasks-id="c99db242-34fa-4505">
<input class="s-radio d-block" type="radio" name="sortId" value="BountyEndingSoon" id="081308a5-5b7c-454a-91b7-5894af391866" data-webtasks-id="5bfc9ee0-d240-4ccc">
</div>
<label class="flex--item s-label fw-normal ws-nowrap" for="081308a5-5b7c-454a-91b7-5894af391866" id="644febcc-d555-43da-86c9-8ac94578c2c1" data-webtasks-id="3f0c24f8-c3ed-438b">Bounty ending soon</label>
</div>
</div>
</fieldset>
</div>
<div class="flex--item" data-webtasks-id="cc10b43a-551a-4e91">
<fieldset class="d-flex gs8 gsy fd-column" data-webtasks-id="0e24baab-400c-4d06">
<legend class="flex--item s-label px0" data-webtasks-id="ad84b983-9491-4143">Tagged with</legend>
<div class="flex--item" data-webtasks-id="c3dcc7c8-54fd-4708">
<div class="d-flex gs4 gsx ai-center" data-webtasks-id="9a1ecf29-224d-441a">
<div class="flex--item" data-webtasks-id="79936b23-ba7b-488a">
<input class="s-radio d-block" type="radio" name="tagModeId" value="Watched" id="a3ca459c-c60f-44b6-a9ed-5202e0be54a9" data-webtasks-id="6d9d9b11-922b-4e6d">
</div>
<label class="flex--item s-label fw-normal ws-nowrap" for="a3ca459c-c60f-44b6-a9ed-5202e0be54a9" id="1d4d02d6-d207-457f-8648-41ef77bcaa1a" data-webtasks-id="d9fae1c1-df57-4291">My watched tags</label>
</div>
</div>
<div class="flex--item" data-webtasks-id="92240d17-c64e-4f09">
<div class="d-flex gs4 gsx ai-center" data-webtasks-id="981d93f7-5acd-4b3b">
<div class="flex--item" data-webtasks-id="1afc078d-de52-4c8b">
<input class="s-radio d-block" type="radio" name="tagModeId" value="Specified" checked="checked" id="99ae0342-39d7-464a-962e-c3fcdea3d92d" data-webtasks-id="d51bb505-9fbc-416e">
</div>
<label class="flex--item s-label fw-normal ws-nowrap" for="99ae0342-39d7-464a-962e-c3fcdea3d92d" id="7a732873-0f8f-491a-9b5a-bc50214d9a69" data-webtasks-id="cd30e333-2593-4640">The following tags:</label>
</div>
</div>
</fieldset>
<div class="ps-relative ml24 mt8 ws2" data-webtasks-id="3f03fdf2-ef2c-448d">
<input id="uql-modal-tag-input" class="w100 s-input" name="tagQuery" data-se-uql-target="tagQuery" type="text" size="60" tabindex="0" aria-labelledby="7a732873-0f8f-491a-9b5a-bc50214d9a69" placeholder="e.g. visas or usa" value="" data-webtasks-id="6af1294f-227d-4809" style="display: none;"><div class="js-tag-editor tag-editor multi-line s-input" data-webtasks-id="da72de79-eeab-43aa" style="padding: 0px 9.1px; box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; width: 100%;"><span data-webtasks-id="17edc957-805d-4427"></span><input type="text" autocomplete="off" tabindex="0" aria-autocomplete="list" aria-haspopup="listbox" role="combobox" aria-expanded="false" placeholder="e.g. visas or usa" aria-labelledby="7a732873-0f8f-491a-9b5a-bc50214d9a69" class="s-input js-tageditor-replacing" data-webtasks-id="530e85b2-6ca2-4d87" style="width: 19px;"><span data-webtasks-id="fadf05ba-c3a4-43fc"></span></div>
</div>
</div>
</div>
</div>
<div class="p12 bt bc-black-100" data-webtasks-id="3ac2bb3e-1a5b-4f63">
<div class="d-flex" data-webtasks-id="50c261c7-7856-45db">
<div class="d-flex gs4 gsx fl1" data-webtasks-id="c1bbaad5-d2b4-4f5b">
<button class="s-btn s-btn__sm s-btn__primary flex--item" type="submit" data-se-uql-target="applyButton" data-webtasks-id="4a52ad3b-70f9-4a95">Apply filter</button>
<button class="s-btn s-btn__filled s-btn__sm flex--item" role="button" data-action="se-uql#showSaveModal" data-webtasks-id="b27ce86a-2436-48f3">
Save custom filter </button>
</div>
<div class="flex--item" data-webtasks-id="f20917e2-a5cc-4f0f">
<button class="s-btn s-btn__sm" data-action="se-uql#cancelEditor" type="button" data-webtasks-id="4550e2b8-5ba9-4249">Cancel</button>
</div>
</div>
</div>
</div>
</div>
</form>
<script type="text/html" data-se-uql-target="saveTemplate" data-webtasks-id="fcbec7cf-7ef8-4055">
</script>
</div>
<div id="questions" class=" flush-left" data-webtasks-id="244a30e6-7088-47d7">
<div id="question-summary-3080" class="s-post-summary js-post-summary" data-post-id="3080" data-post-type-id="1" data-webtasks-id="5b08c0b7-892d-41f3">
<div class="s-post-summary--stats js-post-summary-stats" data-webtasks-id="454975f0-10c7-476c">
<div class="s-post-summary--stats-item s-post-summary--stats-item__emphasized" title="Score of 355" data-webtasks-id="c902422b-3e1a-48ec">
<span class="s-post-summary--stats-item-number" data-webtasks-id="c0276e00-4385-4bfd">355</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="11eedc0c-9bdf-4366">votes</span>
</div>
<div class="s-post-summary--stats-item has-answers has-accepted-answer" title="one of the answers was accepted as the correct answer" data-webtasks-id="51c77f7b-9457-4316">
<svg aria-hidden="true" class="svg-icon iconCheckmarkSm" width="14" height="14" viewBox="0 0 14 14" data-webtasks-id="12da5e3a-5171-483e"><path d="M13 3.41 11.59 2 5 8.59 2.41 6 1 7.41l4 4 8-8Z" data-webtasks-id="4de18db9-a135-4868"></path></svg> <span class="s-post-summary--stats-item-number" data-webtasks-id="4f8da4a6-1ea3-4f1b">13</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="be6fa138-fce8-4069">answers</span>
</div>
<div class="s-post-summary--stats-item is-supernova" title="116382 views" data-webtasks-id="8dc1bafe-e12b-43f1">
<span class="s-post-summary--stats-item-number" data-webtasks-id="f674ffe1-c226-40a3">116k</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="f7f35ac2-f9a0-4f1f">views</span>
</div>
</div>
<div class="s-post-summary--content" data-webtasks-id="e0121866-4048-4351">
<h3 class="s-post-summary--content-title" data-webtasks-id="a1a83b1f-ff58-4fe0">
<a href="/questions/3080/ok-were-all-adults-here-so-really-how-on-earth-should-i-use-a-squat-toilet" class="s-link" data-webtasks-id="48a984c0-9815-4aaf">OK we're all adults here, so really, how on earth should I use a squat toilet?</a>
</h3>
<div class="s-post-summary--content-excerpt" data-webtasks-id="542aafaf-41f4-43f9">
OK so for anyone that's travelled beyond North America and Western Europe you know what I'm talking about.
Left: Romania, last year. Right: Turkey, last night.
They start popping up in the Balkans ...
</div>
<div class="s-post-summary--meta" data-webtasks-id="0cb50d6d-a963-4fce">
<div class="s-post-summary--meta-tags d-inline-block tags js-tags t-tips-and-tricks t-hygiene t-asia t-eastern-europe t-toilets" data-webtasks-id="c2b36fd8-14cb-4e53">
<ul class="ml0 list-ls-none js-post-tag-list-wrapper d-inline" data-webtasks-id="aafe641c-bef6-4fb3"><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="0e3c7144-fa17-4fef"><a href="/questions/tagged/tips-and-tricks" class="post-tag flex--item mt0 js-tagname-tips-and-tricks" title="show questions tagged 'tips-and-tricks'" aria-label="show questions tagged 'tips-and-tricks'" rel="tag" aria-labelledby="tag-tips-and-tricks-tooltip-container" data-webtasks-id="654de9bf-e4de-4840">tips-and-tricks</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="dd4709fe-69f8-4583"><a href="/questions/tagged/hygiene" class="post-tag flex--item mt0 js-tagname-hygiene" title="show questions tagged 'hygiene'" aria-label="show questions tagged 'hygiene'" rel="tag" aria-labelledby="tag-hygiene-tooltip-container" data-webtasks-id="9a6c169e-30e1-4de5">hygiene</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="d701243b-ea04-4244"><a href="/questions/tagged/asia" class="post-tag flex--item mt0 js-tagname-asia" title="show questions tagged 'asia'" aria-label="show questions tagged 'asia'" rel="tag" aria-labelledby="tag-asia-tooltip-container" data-webtasks-id="3abd4511-d68b-4674">asia</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="9c350069-1463-43a3"><a href="/questions/tagged/eastern-europe" class="post-tag flex--item mt0 js-tagname-eastern-europe" title="show questions tagged 'eastern-europe'" aria-label="show questions tagged 'eastern-europe'" rel="tag" aria-labelledby="tag-eastern-europe-tooltip-container" data-webtasks-id="e0e5c086-b7bb-4e54">eastern-europe</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="d6b895fc-e349-4a0d"><a href="/questions/tagged/toilets" class="post-tag flex--item mt0 js-tagname-toilets" title="show questions tagged 'toilets'" aria-label="show questions tagged 'toilets'" rel="tag" aria-labelledby="tag-toilets-tooltip-container" data-webtasks-id="e04cf825-943d-4ba6">toilets</a></li></ul>
</div>
<div class="s-user-card s-user-card__minimal" aria-live="polite" data-webtasks-id="0a6e4a3b-74dd-41be">
<a href="/users/140/hippietrail" class="s-avatar s-avatar__16 s-user-card--avatar js-user-hover-target" data-user-id="140" data-webtasks-id="46e21701-8141-4f77"> <div class="gravatar-wrapper-16" data-webtasks-id="9fb9521b-dcd3-422c">
<img src="https://i.stack.imgur.com/TgTIa.jpg?s=32&g=1" alt="hippietrail's user avatar" width="16" ,="" height="16" class="s-avatar--image" data-webtasks-id="59f80d92-62d8-4cf6">
</div>
</a>
<div class="s-user-card--info" data-webtasks-id="5f807b83-e95a-4220">
<div class="s-user-card--link d-flex gs4" data-webtasks-id="dc221f8e-e2fb-45f5">
<a href="/users/140/hippietrail" class="flex--item" data-webtasks-id="8ec0655a-a403-4749">hippietrail</a>
</div>
<ul class="s-user-card--awards" data-webtasks-id="b943f6ea-7978-48ad">
<li class="s-user-card--rep" data-webtasks-id="b3480d3e-a126-42fa"><span class="todo-no-class-here" title="reputation score 77,663" dir="ltr" data-webtasks-id="b0694395-1e94-4edd">77.7k</span></li>
</ul>
</div>
<time class="s-user-card--time" data-webtasks-id="91cd9d5a-8012-4cec">asked <span title="2011-10-27 23:10:30Z" class="relativetime" data-webtasks-id="2b763cb5-43d0-41c9">Oct 27, 2011 at 23:10</span></time>
</div>
</div>
</div>
</div>
<div id="question-summary-38177" class="s-post-summary js-post-summary s-post-summary__watched" data-post-id="38177" data-post-type-id="1" data-webtasks-id="74bdffee-d6f8-4beb">
<div class="s-post-summary--stats js-post-summary-stats" data-webtasks-id="e7af353d-fa5a-4cf6">
<div class="s-post-summary--stats-item s-post-summary--stats-item__emphasized" title="Score of 331" data-webtasks-id="e35cb5fe-eee2-4a7b">
<span class="s-post-summary--stats-item-number" data-webtasks-id="176232af-ec45-411d">331</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="887327ba-d05b-4db3">votes</span>
</div>
<div class="s-post-summary--stats-item has-answers has-accepted-answer" title="one of the answers was accepted as the correct answer" data-webtasks-id="16c4ca08-a3c0-4e32">
<svg aria-hidden="true" class="svg-icon iconCheckmarkSm" width="14" height="14" viewBox="0 0 14 14" data-webtasks-id="40134c2f-c8f1-4661"><path d="M13 3.41 11.59 2 5 8.59 2.41 6 1 7.41l4 4 8-8Z" data-webtasks-id="2df967ed-4de2-4520"></path></svg> <span class="s-post-summary--stats-item-number" data-webtasks-id="90a5bc4c-fef1-4a2a">9</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="d109762c-cedd-4f5f">answers</span>
</div>
<div class="s-post-summary--stats-item is-hot" title="44881 views" data-webtasks-id="6579be6f-5f4e-4d17">
<span class="s-post-summary--stats-item-number" data-webtasks-id="19adc869-1e0c-4b70">45k</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="a29dddd2-aaf2-4b3f">views</span>
</div>
</div>
<div class="s-post-summary--content" data-webtasks-id="318b86a3-d869-4881">
<h3 class="s-post-summary--content-title" data-webtasks-id="9234fb5b-c065-483c">
<a href="/questions/38177/how-do-you-know-if-americans-genuinely-literally-mean-what-they-say" class="s-link" data-webtasks-id="3c2f7efa-3a40-4090">How do you know if Americans genuinely/literally mean what they say?</a>
</h3>
<div class="s-post-summary--content-excerpt" data-webtasks-id="7eacdd5a-2dc9-472e">
I have come across a few situations when an American will say something like "We should have lunch some time" or "Let's have lunch some time." Or "you should come down to visit me in D.C. (or Miami or ...
</div>
<div class="s-post-summary--meta" data-webtasks-id="4f9efe8c-58dd-43d7">
<div class="s-post-summary--meta-tags d-inline-block tags js-tags t-usa t-us-citizens t-culture" data-webtasks-id="610682e6-04d6-450b">
<ul class="ml0 list-ls-none js-post-tag-list-wrapper d-inline" data-webtasks-id="be820b7b-2f3c-4e16"><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="3ec8d8f7-5985-42cc"><a href="/questions/tagged/usa" class="post-tag flex--item mt0 js-tagname-usa s-tag__watched" title="show questions tagged 'usa'" aria-label="show questions tagged 'usa'" rel="tag" aria-labelledby="tag-usa-tooltip-container" data-webtasks-id="3a041163-c62d-4ac5">usa</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="59acb828-395b-4c3c"><a href="/questions/tagged/us-citizens" class="post-tag flex--item mt0 js-tagname-us-citizens" title="show questions tagged 'us-citizens'" aria-label="show questions tagged 'us-citizens'" rel="tag" aria-labelledby="tag-us-citizens-tooltip-container" data-webtasks-id="11f027eb-4bb5-4f94">us-citizens</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="a9e1a2bd-c5d4-43db"><a href="/questions/tagged/culture" class="post-tag flex--item mt0 js-tagname-culture" title="show questions tagged 'culture'" aria-label="show questions tagged 'culture'" rel="tag" aria-labelledby="tag-culture-tooltip-container" data-webtasks-id="bf093527-a4ca-45f0">culture</a></li></ul>
</div>
<div class="s-user-card s-user-card__minimal" aria-live="polite" data-webtasks-id="177ca0b7-be97-40ea">
<span class="s-avatar s-avatar__16 s-user-card--avatar" data-user-id="" tabindex="0" data-webtasks-id="87d7a3e8-c3bc-410e"> <div class="gravatar-wrapper-16" data-webtasks-id="ab612268-a8a2-4108">
<img src="https://cdn.sstatic.net/Img/user.svg?v=20c64bb67fc9" alt="user avatar" width="16" ,="" height="16" class="s-avatar--image" data-webtasks-id="7b762d96-3413-44ca">
</div>
</span>
<div class="s-user-card--info" data-webtasks-id="6c922a75-a54c-4bb3">
<div class="s-user-card--link d-flex gs4" data-webtasks-id="77b26997-9e9f-4747">
user8803
</div>
</div>
<time class="s-user-card--time" data-webtasks-id="2cb4809e-d023-4078">asked <span title="2014-11-03 12:59:38Z" class="relativetime" data-webtasks-id="dff1bd11-dde9-4859">Nov 3, 2014 at 12:59</span></time>
</div>
</div>
</div>
</div>
<div id="question-summary-149323" class="s-post-summary js-post-summary" data-post-id="149323" data-post-type-id="1" data-webtasks-id="6e38f36e-7dfa-4786">
<div class="s-post-summary--stats js-post-summary-stats" data-webtasks-id="7d53a7de-21a1-45cb">
<div class="s-post-summary--stats-item s-post-summary--stats-item__emphasized" title="Score of 291" data-webtasks-id="3736ff9b-c740-4d88">
<span class="s-post-summary--stats-item-number" data-webtasks-id="37177f1f-fac4-44c9">291</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="239785c5-9dd8-4569">votes</span>
</div>
<div class="s-post-summary--stats-item has-answers has-accepted-answer" title="one of the answers was accepted as the correct answer" data-webtasks-id="fef35c9e-c490-4904">
<svg aria-hidden="true" class="svg-icon iconCheckmarkSm" width="14" height="14" viewBox="0 0 14 14" data-webtasks-id="b51ab646-019b-42be"><path d="M13 3.41 11.59 2 5 8.59 2.41 6 1 7.41l4 4 8-8Z" data-webtasks-id="42281623-eeea-4579"></path></svg> <span class="s-post-summary--stats-item-number" data-webtasks-id="0fddc55f-f1c7-48e5">9</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="f0576535-4bb8-4c1d">answers</span>
</div>
<div class="s-post-summary--stats-item is-supernova" title="175839 views" data-webtasks-id="9771e4d7-24ab-43ec">
<span class="s-post-summary--stats-item-number" data-webtasks-id="1ad06202-7de7-475e">176k</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="44b8a47f-9a51-44f1">views</span>
</div>
</div>
<div class="s-post-summary--content" data-webtasks-id="d8a3a160-1b6d-4425">
<h3 class="s-post-summary--content-title" data-webtasks-id="1615e8e0-1d75-4cfd">
<a href="/questions/149323/my-name-causes-an-issue-with-any-booking-names-end-with-mr-and-mrs" class="s-link" data-webtasks-id="551a228e-31ac-411c">My name causes an issue with any booking! (names end with MR and MRS)</a>
</h3>
<div class="s-post-summary--content-excerpt" data-webtasks-id="bc1f7851-f0bb-4df6">
My name is Amr Eladawy. Whenever I get a ticket through an agent and they put my first name as Amr, it lands as A only in the Airlines system. That happened with many airlines and different agents. ...
</div>
<div class="s-post-summary--meta" data-webtasks-id="78cddeb1-e590-449e">
<div class="s-post-summary--meta-tags d-inline-block tags js-tags t-bookings t-airlines" data-webtasks-id="53157b78-c39e-4232">
<ul class="ml0 list-ls-none js-post-tag-list-wrapper d-inline" data-webtasks-id="d4f4da71-a685-455b"><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="64b75dc4-8f28-4f4d"><a href="/questions/tagged/bookings" class="post-tag flex--item mt0 js-tagname-bookings" title="show questions tagged 'bookings'" aria-label="show questions tagged 'bookings'" rel="tag" aria-labelledby="tag-bookings-tooltip-container" data-webtasks-id="d889d362-8e74-473c">bookings</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="2f4da152-3c8b-429e"><a href="/questions/tagged/airlines" class="post-tag flex--item mt0 js-tagname-airlines" title="show questions tagged 'airlines'" aria-label="show questions tagged 'airlines'" rel="tag" aria-labelledby="tag-airlines-tooltip-container" data-webtasks-id="796de029-f1fc-4b31">airlines</a></li></ul>
</div>
<div class="s-user-card s-user-card__minimal" aria-live="polite" data-webtasks-id="078fabfb-fd8e-4066">
<a href="/users/105202/amr-eladawy" class="s-avatar s-avatar__16 s-user-card--avatar js-user-hover-target" data-user-id="105202" data-webtasks-id="9d1e0e28-dae0-41f5"> <div class="gravatar-wrapper-16" data-webtasks-id="227287c2-5cdc-48c6">
<img src="https://i.stack.imgur.com/qYTmy.jpg?s=32&g=1" alt="Amr Eladawy's user avatar" width="16" ,="" height="16" class="s-avatar--image" data-webtasks-id="1d4d11d6-c40f-469d">
</div>
</a>
<div class="s-user-card--info" data-webtasks-id="1cb0e2d0-8226-4fe8">
<div class="s-user-card--link d-flex gs4" data-webtasks-id="88e92ed5-01a3-4f72">
<a href="/users/105202/amr-eladawy" class="flex--item" data-webtasks-id="a6d0599f-2bcd-41c9">Amr Eladawy</a>
</div>
<ul class="s-user-card--awards" data-webtasks-id="43133b54-5608-4064">
<li class="s-user-card--rep" data-webtasks-id="459473d9-a4fc-43fb"><span class="todo-no-class-here" title="reputation score " dir="ltr" data-webtasks-id="d8cd06e7-9552-47ec">2,142</span></li>
</ul>
</div>
<time class="s-user-card--time" data-webtasks-id="dc5e4196-f849-44df">asked <span title="2019-11-05 09:52:34Z" class="relativetime" data-webtasks-id="67061ef9-ebfa-4afc">Nov 5, 2019 at 9:52</span></time>
</div>
</div>
</div>
</div>
<div id="question-summary-20207" class="s-post-summary js-post-summary" data-post-id="20207" data-post-type-id="1" data-webtasks-id="8847c0b6-1c57-460f">
<div class="s-post-summary--stats js-post-summary-stats" data-webtasks-id="b4d0b3fd-11c3-4d8f">
<div class="s-post-summary--stats-item s-post-summary--stats-item__emphasized" title="Score of 252" data-webtasks-id="9c86883f-2126-4758">
<span class="s-post-summary--stats-item-number" data-webtasks-id="39904c3c-bc3c-4770">252</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="bead1280-623b-4aa5">votes</span>
</div>
<div class="s-post-summary--stats-item has-answers has-accepted-answer" title="one of the answers was accepted as the correct answer" data-webtasks-id="5634fe1c-9ead-4607">
<svg aria-hidden="true" class="svg-icon iconCheckmarkSm" width="14" height="14" viewBox="0 0 14 14" data-webtasks-id="dae6e54e-4921-4c90"><path d="M13 3.41 11.59 2 5 8.59 2.41 6 1 7.41l4 4 8-8Z" data-webtasks-id="4ca006b3-60f1-4427"></path></svg> <span class="s-post-summary--stats-item-number" data-webtasks-id="81f198f3-e1a3-4643">3</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="8ace9a2a-d780-4e25">answers</span>
</div>
<div class="s-post-summary--stats-item is-supernova" title="132993 views" data-webtasks-id="a6d5aeba-0263-4f73">
<span class="s-post-summary--stats-item-number" data-webtasks-id="d51e8393-24f6-4d92">133k</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="b2a94a0d-a4e4-49ac">views</span>
</div>
</div>
<div class="s-post-summary--content" data-webtasks-id="fe211e78-4381-4065">
<h3 class="s-post-summary--content-title" data-webtasks-id="8fba844d-83b0-4b98">
<a href="/questions/20207/why-are-airline-passengers-asked-to-lift-up-window-shades-during-takeoff-and-lan" class="s-link" data-webtasks-id="6c538ebe-8de6-4e59">Why are airline passengers asked to lift up window shades during takeoff and landing?</a>
</h3>
<div class="s-post-summary--content-excerpt" data-webtasks-id="cfe148cf-44d6-4615">
I have always wondered why the windows shades have to be raised during take off and landing. I can't think of any safety issues by having a closed window.
</div>
<div class="s-post-summary--meta" data-webtasks-id="be83ffe7-ada8-487a">
<div class="s-post-summary--meta-tags d-inline-block tags js-tags t-air-travel t-regulations t-aircraft" data-webtasks-id="e5d57f5d-6aed-451c">
<ul class="ml0 list-ls-none js-post-tag-list-wrapper d-inline" data-webtasks-id="32d665bd-58fb-445a"><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="5cb5f90d-71de-43e1"><a href="/questions/tagged/air-travel" class="post-tag flex--item mt0 js-tagname-air-travel" title="show questions tagged 'air-travel'" aria-label="show questions tagged 'air-travel'" rel="tag" aria-labelledby="tag-air-travel-tooltip-container" data-webtasks-id="8d7d5026-2aa7-4e9a">air-travel</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="3c7db0ac-9cd4-48d7"><a href="/questions/tagged/regulations" class="post-tag flex--item mt0 js-tagname-regulations" title="show questions tagged 'regulations'" aria-label="show questions tagged 'regulations'" rel="tag" aria-labelledby="tag-regulations-tooltip-container" data-webtasks-id="ab843e5a-cca1-4688">regulations</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="8e453b40-e3a8-4979"><a href="/questions/tagged/aircraft" class="post-tag flex--item mt0 js-tagname-aircraft" title="show questions tagged 'aircraft'" aria-label="show questions tagged 'aircraft'" rel="tag" aria-labelledby="tag-aircraft-tooltip-container" data-webtasks-id="3d4d0482-1797-40b4">aircraft</a></li></ul>
</div>
<div class="s-user-card s-user-card__minimal" aria-live="polite" data-webtasks-id="43d7b2cf-df02-4990">
<a href="/users/7345/bobby" class="s-avatar s-avatar__16 s-user-card--avatar" data-user-id="7345" data-webtasks-id="ee9ff847-1167-4193"> <div class="gravatar-wrapper-16" data-webtasks-id="83560102-9f72-4657">
<img src="https://www.gravatar.com/avatar/d8b1eeba6e9e5a0eb1bc0f1e2b2c7b8d?s=32&d=identicon&r=PG&f=y&so-version=2" alt="bobby's user avatar" width="16" ,="" height="16" class="s-avatar--image" data-webtasks-id="995ef253-0519-43e4">
</div>
</a>
<div class="s-user-card--info" data-webtasks-id="1c572359-c0f1-4e08">
<div class="s-user-card--link d-flex gs4" data-webtasks-id="8ca5f7e5-f258-4a0f">
<a href="/users/7345/bobby" class="flex--item" data-webtasks-id="3176c7cc-fff0-4bba">bobby</a>
</div>
<ul class="s-user-card--awards" data-webtasks-id="49d84927-e868-449d">
<li class="s-user-card--rep" data-webtasks-id="30adc023-a5cf-49b7"><span class="todo-no-class-here" title="reputation score " dir="ltr" data-webtasks-id="2de68b05-a354-436e">2,447</span></li>
</ul>
</div>
<time class="s-user-card--time" data-webtasks-id="0762a22a-2ed2-4bbb">asked <span title="2013-09-02 17:54:47Z" class="relativetime" data-webtasks-id="aea62132-c197-464d">Sep 2, 2013 at 17:54</span></time>
</div>
</div>
</div>
</div>
<div id="question-summary-24540" class="s-post-summary js-post-summary s-post-summary__watched" data-post-id="24540" data-post-type-id="1" data-webtasks-id="c403e3b7-4c8a-486f">
<div class="s-post-summary--stats js-post-summary-stats" data-webtasks-id="a5a7646f-3fd0-4ad3">
<div class="s-post-summary--stats-item s-post-summary--stats-item__emphasized" title="Score of 248" data-webtasks-id="ea55a14f-805f-4cab">
<span class="s-post-summary--stats-item-number" data-webtasks-id="73f819b1-6b9b-4644">248</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="b7c03ec7-38f3-4175">votes</span>
</div>
<div class="s-post-summary--stats-item has-answers " title="8 answers" data-webtasks-id="b69c8ca7-fc52-4245">
<span class="s-post-summary--stats-item-number" data-webtasks-id="6de1d8b0-2655-44fd">8</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="ca73cec2-b0fa-41d4">answers</span>
</div>
<div class="s-post-summary--stats-item is-hot" title="73700 views" data-webtasks-id="6de8a244-edc7-4f9a">
<span class="s-post-summary--stats-item-number" data-webtasks-id="49ee5a48-6810-443a">74k</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="50bb824e-55f8-4854">views</span>
</div>
</div>
<div class="s-post-summary--content" data-webtasks-id="d35a5323-dc99-4689">
<h3 class="s-post-summary--content-title" data-webtasks-id="4e15ef56-64fb-4a0a">
<a href="/questions/24540/how-to-intentionally-get-denied-entry-to-the-us-without-getting-into-trouble" class="s-link" data-webtasks-id="c07d0b70-fe1f-44be">How to intentionally get denied entry to the US, without getting into trouble?</a>
</h3>
<div class="s-post-summary--content-excerpt" data-webtasks-id="a40b6f81-8d8a-43c0">
I have a multiple entry visitors visa for five years. I went to USA last year and lived there for one year with my husband (6 months entry and other 6 months of extension).
I left USA legally. Now my ...
</div>
<div class="s-post-summary--meta" data-webtasks-id="946e654b-8046-4630">
<div class="s-post-summary--meta-tags d-inline-block tags js-tags t-usa t-customs-and-immigration t-b1-b2-visas t-denial-of-entry t-removal" data-webtasks-id="2485d99b-7236-46f7">
<ul class="ml0 list-ls-none js-post-tag-list-wrapper d-inline" data-webtasks-id="3df16ea6-d107-4374"><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="8fa93009-9494-4538"><a href="/questions/tagged/usa" class="post-tag flex--item mt0 js-tagname-usa s-tag__watched" title="show questions tagged 'usa'" aria-label="show questions tagged 'usa'" rel="tag" aria-labelledby="tag-usa-tooltip-container" data-webtasks-id="f880f1ba-a474-4f76">usa</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="e05b00e9-7ef7-4188"><a href="/questions/tagged/customs-and-immigration" class="post-tag flex--item mt0 js-tagname-customs-and-immigration s-tag__watched" title="show questions tagged 'customs-and-immigration'" aria-label="show questions tagged 'customs-and-immigration'" rel="tag" aria-labelledby="tag-customs-and-immigration-tooltip-container" data-webtasks-id="366cb679-dbac-45ac">customs-and-immigration</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="20f0c57e-4ad8-449e"><a href="/questions/tagged/b1-b2-visas" class="post-tag flex--item mt0 js-tagname-b1-b2-visas" title="show questions tagged 'b1-b2-visas'" aria-label="show questions tagged 'b1-b2-visas'" rel="tag" aria-labelledby="tag-b1-b2-visas-tooltip-container" data-webtasks-id="7385c603-4757-408b">b1-b2-visas</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="8b9410b1-dae7-4aaa"><a href="/questions/tagged/denial-of-entry" class="post-tag flex--item mt0 js-tagname-denial-of-entry" title="show questions tagged 'denial-of-entry'" aria-label="show questions tagged 'denial-of-entry'" rel="tag" aria-labelledby="tag-denial-of-entry-tooltip-container" data-webtasks-id="e9d57a87-2768-41e5">denial-of-entry</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="70971dec-6195-41c5"><a href="/questions/tagged/removal" class="post-tag flex--item mt0 js-tagname-removal" title="show questions tagged 'removal'" aria-label="show questions tagged 'removal'" rel="tag" aria-labelledby="tag-removal-tooltip-container" data-webtasks-id="72d26975-563d-4b4f">removal</a></li></ul>
</div>
<div class="s-user-card s-user-card__minimal" aria-live="polite" data-webtasks-id="5cfa76c0-a336-424a">
<a href="/users/11743/user11743" class="s-avatar s-avatar__16 s-user-card--avatar" data-user-id="11743" data-webtasks-id="a292f798-efaa-4265"> <div class="gravatar-wrapper-16" data-webtasks-id="76106ac7-5980-46cf">
<img src="https://www.gravatar.com/avatar/322f2385bd9db6bbc5ca6e37bb637fcd?s=32&d=identicon&r=PG&f=y&so-version=2" alt="user11743's user avatar" width="16" ,="" height="16" class="s-avatar--image" data-webtasks-id="0dfbd02b-3a80-4517">
</div>
</a>
<div class="s-user-card--info" data-webtasks-id="bb27b4de-6cb2-467c">
<div class="s-user-card--link d-flex gs4" data-webtasks-id="57e59e81-4d3a-42bc">
<a href="/users/11743/user11743" class="flex--item" data-webtasks-id="ab007cd8-0d1a-4818">user11743</a>
</div>
<ul class="s-user-card--awards" data-webtasks-id="47c57256-9b58-4352">
<li class="s-user-card--rep" data-webtasks-id="ce758e51-bf8a-49ff"><span class="todo-no-class-here" title="reputation score " dir="ltr" data-webtasks-id="ac1500f3-893c-4e96">2,017</span></li>
</ul>
</div>
<time class="s-user-card--time" data-webtasks-id="850fecbf-d177-4b01">asked <span title="2014-02-27 02:11:18Z" class="relativetime" data-webtasks-id="d20b919d-732c-4acd">Feb 27, 2014 at 2:11</span></time>
</div>
</div>
</div>
</div>
<div id="question-summary-96447" class="s-post-summary js-post-summary s-post-summary__watched" data-post-id="96447" data-post-type-id="1" data-webtasks-id="32e86396-d291-4cfd">
<div class="s-post-summary--stats js-post-summary-stats" data-webtasks-id="e3787655-b03a-47aa">
<div class="s-post-summary--stats-item s-post-summary--stats-item__emphasized" title="Score of 200" data-webtasks-id="6dc1535c-1ed0-4c72">
<span class="s-post-summary--stats-item-number" data-webtasks-id="b3d36c0f-b4d7-4c08">200</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="7e56681b-a858-4df2">votes</span>
</div>
<div class="s-post-summary--stats-item has-answers has-accepted-answer" title="one of the answers was accepted as the correct answer" data-webtasks-id="618cbff9-da38-4b36">
<svg aria-hidden="true" class="svg-icon iconCheckmarkSm" width="14" height="14" viewBox="0 0 14 14" data-webtasks-id="5dbe1547-aee0-4687"><path d="M13 3.41 11.59 2 5 8.59 2.41 6 1 7.41l4 4 8-8Z" data-webtasks-id="62a7b952-d621-4335"></path></svg> <span class="s-post-summary--stats-item-number" data-webtasks-id="cbc8f87d-ae30-4e98">8</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="6200241e-da8e-4c0f">answers</span>
</div>
<div class="s-post-summary--stats-item is-hot" title="45341 views" data-webtasks-id="fd4cb1f4-786d-4985">
<span class="s-post-summary--stats-item-number" data-webtasks-id="eaa63294-21cd-44c5">45k</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="18f3c65e-8ad6-4eb7">views</span>
</div>
</div>
<div class="s-post-summary--content" data-webtasks-id="eb49319d-71e8-4993">
<h3 class="s-post-summary--content-title" data-webtasks-id="8a090cbe-15d4-47aa">
<a href="/questions/96447/why-prohibit-engine-braking" class="s-link" data-webtasks-id="44cbee24-6498-4dcb">Why prohibit engine braking?</a>
</h3>
<div class="s-post-summary--content-excerpt" data-webtasks-id="23770eaf-81ca-44ad">
When I learned driving in The Netherlands (in a car with a manual gearbox), I learned that on a down slope¹, I should switch to low gear and use the engine to brake, thus reducing the wear on the ...
</div>
<div class="s-post-summary--meta" data-webtasks-id="e29189e6-820f-41b8">
<div class="s-post-summary--meta-tags d-inline-block tags js-tags t-usa t-driving" data-webtasks-id="4fee65ba-1ae3-4c01">
<ul class="ml0 list-ls-none js-post-tag-list-wrapper d-inline" data-webtasks-id="9633899e-437a-44b8"><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="a6920bcd-7611-452b"><a href="/questions/tagged/usa" class="post-tag flex--item mt0 js-tagname-usa s-tag__watched" title="show questions tagged 'usa'" aria-label="show questions tagged 'usa'" rel="tag" aria-labelledby="tag-usa-tooltip-container" data-webtasks-id="27c5e37a-b7e6-4e3e">usa</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="5e27c565-a51e-498c"><a href="/questions/tagged/driving" class="post-tag flex--item mt0 js-tagname-driving" title="show questions tagged 'driving'" aria-label="show questions tagged 'driving'" rel="tag" aria-labelledby="tag-driving-tooltip-container" data-webtasks-id="2e7a41e7-5fb5-40b4">driving</a></li></ul>
</div>
<div class="s-user-card s-user-card__minimal" aria-live="polite" data-webtasks-id="fa3a4ebe-e385-4ccf">
<a href="/users/2509/gerrit" class="s-avatar s-avatar__16 s-user-card--avatar js-user-hover-target" data-user-id="2509" data-webtasks-id="3fb43013-633c-4dbe"> <div class="gravatar-wrapper-16" data-webtasks-id="e87f43e2-1049-475c">
<img src="https://i.stack.imgur.com/vAAS0.png?s=32&g=1" alt="gerrit's user avatar" width="16" ,="" height="16" class="s-avatar--image" data-webtasks-id="ea0a3dde-a16f-4f09">
</div>
</a>
<div class="s-user-card--info" data-webtasks-id="e3b21f1b-ae61-4a49">
<div class="s-user-card--link d-flex gs4" data-webtasks-id="68f8947a-2901-45ac">
<a href="/users/2509/gerrit" class="flex--item" data-webtasks-id="28939ca0-6d3a-46cb">gerrit</a>
</div>
<ul class="s-user-card--awards" data-webtasks-id="ea7a518b-e1ab-44fa">
<li class="s-user-card--rep" data-webtasks-id="03c16ef1-80c8-4551"><span class="todo-no-class-here" title="reputation score 54,172" dir="ltr" data-webtasks-id="fab6a9a8-85cd-4e70">54.2k</span></li>
</ul>
</div>
<time class="s-user-card--time" data-webtasks-id="1dbc2860-9d8e-4492">asked <span title="2017-07-04 16:09:00Z" class="relativetime" data-webtasks-id="3ca4bc95-89ea-4993">Jul 4, 2017 at 16:09</span></time>
</div>
</div>
</div>
</div>
<div id="question-summary-1224" class="s-post-summary js-post-summary" data-post-id="1224" data-post-type-id="1" data-webtasks-id="9969213e-3b9b-4a19">
<div class="s-post-summary--stats js-post-summary-stats" data-webtasks-id="b3622804-6519-465b">
<div class="s-post-summary--stats-item s-post-summary--stats-item__emphasized" title="Score of 198" data-webtasks-id="5caa93e6-aec4-417e">
<span class="s-post-summary--stats-item-number" data-webtasks-id="39ca479e-4d0c-4b47">198</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="1a8122db-38de-4f57">votes</span>
</div>
<div class="s-post-summary--stats-item has-answers has-accepted-answer" title="one of the answers was accepted as the correct answer" data-webtasks-id="667031c4-2bbf-4062">
<svg aria-hidden="true" class="svg-icon iconCheckmarkSm" width="14" height="14" viewBox="0 0 14 14" data-webtasks-id="784401fc-0b87-48d9"><path d="M13 3.41 11.59 2 5 8.59 2.41 6 1 7.41l4 4 8-8Z" data-webtasks-id="646c7fc8-46a9-44e9"></path></svg> <span class="s-post-summary--stats-item-number" data-webtasks-id="79f46b1e-bafc-4d7c">11</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="c127d3f1-12e6-404e">answers</span>
</div>
<div class="s-post-summary--stats-item is-hot" title="22123 views" data-webtasks-id="42842576-9eaa-4e19">
<span class="s-post-summary--stats-item-number" data-webtasks-id="16ae6dcd-3fcd-410c">22k</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="dee84a7f-fc1b-4b3b">views</span>
</div>
</div>
<div class="s-post-summary--content" data-webtasks-id="7a8739b0-1895-442d">
<h3 class="s-post-summary--content-title" data-webtasks-id="aaf95401-6b6b-4253">
<a href="/questions/1224/tactics-to-avoid-getting-harassed-by-corrupt-police" class="s-link" data-webtasks-id="cfa4e64a-8003-4e56">Tactics to avoid getting harassed by corrupt police?</a>
</h3>
<div class="s-post-summary--content-excerpt" data-webtasks-id="82d4b755-7aee-48de">
In Uzbekistan I was stopped, searched and questioned six times in one day.
At the border with Tajikistan, one official tried hiding my paperwork to elicit something from me.
In Kyrgyzstan, I was ...
</div>
<div class="s-post-summary--meta" data-webtasks-id="c1f7f409-67f7-4bb7">
<div class="s-post-summary--meta-tags d-inline-block tags js-tags t-safety t-tips-and-tricks t-local-customs t-officials t-corruption" data-webtasks-id="f05db42c-0843-4b1c">
<ul class="ml0 list-ls-none js-post-tag-list-wrapper d-inline" data-webtasks-id="90104077-c3d8-4f6a"><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="77656dca-2e4e-4fda"><a href="/questions/tagged/safety" class="post-tag flex--item mt0 js-tagname-safety" title="show questions tagged 'safety'" aria-label="show questions tagged 'safety'" rel="tag" aria-labelledby="tag-safety-tooltip-container" data-webtasks-id="f3ad9d2b-187f-4b78">safety</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="addd2c8f-1012-4b77"><a href="/questions/tagged/tips-and-tricks" class="post-tag flex--item mt0 js-tagname-tips-and-tricks" title="show questions tagged 'tips-and-tricks'" aria-label="show questions tagged 'tips-and-tricks'" rel="tag" aria-labelledby="tag-tips-and-tricks-tooltip-container" data-webtasks-id="5b4228bc-c4b7-4707">tips-and-tricks</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="d0a67c16-e0f5-4c58"><a href="/questions/tagged/local-customs" class="post-tag flex--item mt0 js-tagname-local-customs" title="show questions tagged 'local-customs'" aria-label="show questions tagged 'local-customs'" rel="tag" aria-labelledby="tag-local-customs-tooltip-container" data-webtasks-id="9efdfeb8-8463-4c2a">local-customs</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="56a6bfa4-e2ab-4aee"><a href="/questions/tagged/officials" class="post-tag flex--item mt0 js-tagname-officials" title="show questions tagged 'officials'" aria-label="show questions tagged 'officials'" rel="tag" aria-labelledby="tag-officials-tooltip-container" data-webtasks-id="e749bf39-9383-4140">officials</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="ebc4c310-8c70-4fd8"><a href="/questions/tagged/corruption" class="post-tag flex--item mt0 js-tagname-corruption" title="show questions tagged 'corruption'" aria-label="show questions tagged 'corruption'" rel="tag" aria-labelledby="tag-corruption-tooltip-container" data-webtasks-id="200f9386-00df-416a">corruption</a></li></ul>
</div>
<div class="s-user-card s-user-card__minimal" aria-live="polite" data-webtasks-id="78676e92-b27b-428c">
<a href="/users/101/mark-mayo" class="s-avatar s-avatar__16 s-user-card--avatar js-user-hover-target" data-user-id="101" data-webtasks-id="5c714599-91f6-4c80"> <div class="gravatar-wrapper-16" data-webtasks-id="d223650f-f513-423e">
<img src="https://www.gravatar.com/avatar/72b31720e3694b17adfaf57ac9454f0e?s=32&d=identicon&r=PG" alt="Mark Mayo's user avatar" width="16" ,="" height="16" class="s-avatar--image" data-webtasks-id="5c45b38e-c24d-4dac">
</div>
</a>
<div class="s-user-card--info" data-webtasks-id="3f7b84da-e60f-4ea8">
<div class="s-user-card--link d-flex gs4" data-webtasks-id="1026fc91-b940-4944">
<a href="/users/101/mark-mayo" class="flex--item" data-webtasks-id="4cd1f903-1bcb-4603">Mark Mayo</a>
</div>
<ul class="s-user-card--awards" data-webtasks-id="265a1c79-1806-49cd">
<li class="s-user-card--rep" data-webtasks-id="b0cac2e5-1825-4fdb"><span class="todo-no-class-here" title="reputation score 158,406" dir="ltr" data-webtasks-id="fdbffcbe-cd96-49ce">158k</span></li>
</ul>
</div>
<time class="s-user-card--time" data-webtasks-id="9e4a2901-fbae-4cfd">asked <span title="2011-07-24 05:46:56Z" class="relativetime" data-webtasks-id="609a2a93-18ba-456d">Jul 24, 2011 at 5:46</span></time>
</div>
</div>
</div>
</div>
<div id="question-summary-98367" class="s-post-summary js-post-summary s-post-summary__watched" data-post-id="98367" data-post-type-id="1" data-webtasks-id="259dde65-9231-4b2e">
<div class="s-post-summary--stats js-post-summary-stats" data-webtasks-id="5e2cb24a-fae8-4d0a">
<div class="s-post-summary--stats-item s-post-summary--stats-item__emphasized" title="Score of 194" data-webtasks-id="74082aa9-6b42-4103">
<span class="s-post-summary--stats-item-number" data-webtasks-id="5911120e-4f67-454c">194</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="80e2d7d1-8fd8-4042">votes</span>
</div>
<div class="s-post-summary--stats-item has-answers " title="12 answers" data-webtasks-id="5be21434-546c-48c7">
<span class="s-post-summary--stats-item-number" data-webtasks-id="31794240-9eba-4380">12</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="a2602095-08ce-4ae6">answers</span>
</div>
<div class="s-post-summary--stats-item is-hot" title="62024 views" data-webtasks-id="6223d73b-de41-4de1">
<span class="s-post-summary--stats-item-number" data-webtasks-id="4424cca4-cd61-48e2">62k</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="5cfe8ebb-fc68-4e48">views</span>
</div>
</div>
<div class="s-post-summary--content" data-webtasks-id="44bcfe9d-2e9d-49be">
<h3 class="s-post-summary--content-title" data-webtasks-id="b2220e88-9a2b-4d94">
<a href="/questions/98367/boss-is-asking-for-passport-but-it-has-a-stamp-in-it-i-dont-want-him-to-see-w" class="s-link" data-webtasks-id="11829753-b319-4a23">Boss is asking for passport, but it has a stamp in it I don't want him to see. What to do?</a>
</h3>
<div class="s-post-summary--content-excerpt" data-webtasks-id="f43f41a4-857c-43ef">
I am an Indian national who has been working in Africa for 10 months. This stay in Africa is my first time leaving India. My passport has no previous stamps or marks in it. I recently had an emergency ...
</div>
<div class="s-post-summary--meta" data-webtasks-id="c3460a4f-c475-4faa">
<div class="s-post-summary--meta-tags d-inline-block tags js-tags t-passports t-indian-citizens" data-webtasks-id="724a3d25-74ac-4c20">
<ul class="ml0 list-ls-none js-post-tag-list-wrapper d-inline" data-webtasks-id="e6df4475-25ed-49ad"><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="1abcb3d5-7f96-4b0e"><a href="/questions/tagged/passports" class="post-tag flex--item mt0 js-tagname-passports" title="show questions tagged 'passports'" aria-label="show questions tagged 'passports'" rel="tag" aria-labelledby="tag-passports-tooltip-container" data-webtasks-id="f0e1b0cb-8162-4d9b">passports</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="920d31c6-3428-40dc"><a href="/questions/tagged/indian-citizens" class="post-tag flex--item mt0 js-tagname-indian-citizens s-tag__watched" title="show questions tagged 'indian-citizens'" aria-label="show questions tagged 'indian-citizens'" rel="tag" aria-labelledby="tag-indian-citizens-tooltip-container" data-webtasks-id="502eeaa8-fe76-4a15">indian-citizens</a></li></ul>
</div>
<div class="s-user-card s-user-card__minimal" aria-live="polite" data-webtasks-id="c8245ce1-f9ab-40fa">
<a href="/users/65188/megha" class="s-avatar s-avatar__16 s-user-card--avatar" data-user-id="65188" data-webtasks-id="e6df8dbf-cec5-4ac6"> <div class="gravatar-wrapper-16" data-webtasks-id="e67aee37-9f6b-409d">
<img src="https://www.gravatar.com/avatar/fa1fc9434d2c88d24d81b780f219cbe4?s=32&d=identicon&r=PG" alt="Megha's user avatar" width="16" ,="" height="16" class="s-avatar--image" data-webtasks-id="27e6416d-c625-464d">
</div>
</a>
<div class="s-user-card--info" data-webtasks-id="43d170d1-462f-4662">
<div class="s-user-card--link d-flex gs4" data-webtasks-id="b19ff143-13f6-4243">
<a href="/users/65188/megha" class="flex--item" data-webtasks-id="f67874d6-0f51-49a8">Megha</a>
</div>
<ul class="s-user-card--awards" data-webtasks-id="4afb79e4-0def-49c2">
<li class="s-user-card--rep" data-webtasks-id="ee2d5bf3-bad5-4d26"><span class="todo-no-class-here" title="reputation score " dir="ltr" data-webtasks-id="ed49f717-d5c5-498a">1,729</span></li>
</ul>
</div>
<time class="s-user-card--time" data-webtasks-id="e51fad32-efed-4954">asked <span title="2017-07-18 17:33:12Z" class="relativetime" data-webtasks-id="8ffcf64d-f697-48e9">Jul 18, 2017 at 17:33</span></time>
</div>
</div>
</div>
</div>
<div id="question-summary-2539" class="s-post-summary js-post-summary" data-post-id="2539" data-post-type-id="1" data-webtasks-id="4134accd-d91b-42a6">
<div class="s-post-summary--stats js-post-summary-stats" data-webtasks-id="40518cd6-0a81-469f">
<div class="s-post-summary--stats-item s-post-summary--stats-item__emphasized" title="Score of 173" data-webtasks-id="7508a8df-0983-4e15">
<span class="s-post-summary--stats-item-number" data-webtasks-id="7599e937-3421-40ef">173</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="122c81bf-2fcf-4ae7">votes</span>
</div>
<div class="s-post-summary--stats-item has-answers has-accepted-answer" title="one of the answers was accepted as the correct answer" data-webtasks-id="25512e31-a101-4a74">
<svg aria-hidden="true" class="svg-icon iconCheckmarkSm" width="14" height="14" viewBox="0 0 14 14" data-webtasks-id="d4496c6b-07a1-4eaf"><path d="M13 3.41 11.59 2 5 8.59 2.41 6 1 7.41l4 4 8-8Z" data-webtasks-id="ced8fa1b-42ee-427a"></path></svg> <span class="s-post-summary--stats-item-number" data-webtasks-id="f6224d10-8b5e-4626">11</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="9c787888-b60a-4ab8">answers</span>
</div>
<div class="s-post-summary--stats-item is-hot" title="20514 views" data-webtasks-id="dfcb7e56-c794-48a4">
<span class="s-post-summary--stats-item-number" data-webtasks-id="dd1b2c48-3a5d-413f">21k</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="75028684-d5ae-463b">views</span>
</div>
</div>
<div class="s-post-summary--content" data-webtasks-id="9d40f1da-54a5-4ff1">
<h3 class="s-post-summary--content-title" data-webtasks-id="afed7183-e1c8-41a4">
<a href="/questions/2539/how-to-avoid-drinking-vodka" class="s-link" data-webtasks-id="3834cd16-69b7-437a">How to avoid drinking vodka?</a>
</h3>
<div class="s-post-summary--content-excerpt" data-webtasks-id="179746ad-af69-42e4">
This summer, I spent some time in Moscow and St. Petersburg; I also visited a friend and his family. Their custom was to drink a lot of vodka during the meal. We, the guests, also had to drink some ...
</div>
<div class="s-post-summary--meta" data-webtasks-id="7385a4ce-b88d-4485">
<div class="s-post-summary--meta-tags d-inline-block tags js-tags t-health t-tips-and-tricks t-russia t-culture t-alcohol" data-webtasks-id="74a0c7da-19a1-4472">
<ul class="ml0 list-ls-none js-post-tag-list-wrapper d-inline" data-webtasks-id="815a6ad0-1132-4092"><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="b29cd8b7-4c9e-46ea"><a href="/questions/tagged/health" class="post-tag flex--item mt0 js-tagname-health" title="show questions tagged 'health'" aria-label="show questions tagged 'health'" rel="tag" aria-labelledby="tag-health-tooltip-container" data-webtasks-id="f63eb3e8-753d-4bb6">health</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="40943220-9740-46af"><a href="/questions/tagged/tips-and-tricks" class="post-tag flex--item mt0 js-tagname-tips-and-tricks" title="show questions tagged 'tips-and-tricks'" aria-label="show questions tagged 'tips-and-tricks'" rel="tag" aria-labelledby="tag-tips-and-tricks-tooltip-container" data-webtasks-id="0451790f-6b47-4e62">tips-and-tricks</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="f942704d-bf86-4381"><a href="/questions/tagged/russia" class="post-tag flex--item mt0 js-tagname-russia" title="show questions tagged 'russia'" aria-label="show questions tagged 'russia'" rel="tag" aria-labelledby="tag-russia-tooltip-container" data-webtasks-id="e50d9f00-1e17-4777">russia</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="6b1994fe-b93d-4242"><a href="/questions/tagged/culture" class="post-tag flex--item mt0 js-tagname-culture" title="show questions tagged 'culture'" aria-label="show questions tagged 'culture'" rel="tag" aria-labelledby="tag-culture-tooltip-container" data-webtasks-id="0c1f317c-1e3a-4739">culture</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="aff900b2-7e26-4385"><a href="/questions/tagged/alcohol" class="post-tag flex--item mt0 js-tagname-alcohol" title="show questions tagged 'alcohol'" aria-label="show questions tagged 'alcohol'" rel="tag" aria-labelledby="tag-alcohol-tooltip-container" data-webtasks-id="7b087674-1acb-47f5">alcohol</a></li></ul>
</div>
<div class="s-user-card s-user-card__minimal" aria-live="polite" data-webtasks-id="1397378f-0d15-424d">
<a href="/users/693/roflcoptrexception" class="s-avatar s-avatar__16 s-user-card--avatar" data-user-id="693" data-webtasks-id="d065ae35-48cc-46d9"> <div class="gravatar-wrapper-16" data-webtasks-id="0a68ec58-3fb6-4343">
<img src="https://www.gravatar.com/avatar/198ed0c6bee62df75e5fbdcffa3bee78?s=32&d=identicon&r=PG&f=y&so-version=2" alt="RoflcoptrException's user avatar" width="16" ,="" height="16" class="s-avatar--image" data-webtasks-id="0da50f16-84e7-455a">
</div>
</a>
<div class="s-user-card--info" data-webtasks-id="7b3ff3f9-5ea6-4328">
<div class="s-user-card--link d-flex gs4" data-webtasks-id="a4668092-fff4-4e0b">
<a href="/users/693/roflcoptrexception" class="flex--item" data-webtasks-id="a816ae30-c6b1-4ff7">RoflcoptrException</a>
</div>
<ul class="s-user-card--awards" data-webtasks-id="833aa9f2-e674-4d8e">
<li class="s-user-card--rep" data-webtasks-id="8cb1a65c-8db2-462b"><span class="todo-no-class-here" title="reputation score 51,212" dir="ltr" data-webtasks-id="22cf058e-6522-4703">51.2k</span></li>
</ul>
</div>
<time class="s-user-card--time" data-webtasks-id="5b0964d3-8860-4fb2">asked <span title="2011-10-01 09:53:08Z" class="relativetime" data-webtasks-id="2426a70d-aedf-4f03">Oct 1, 2011 at 9:53</span></time>
</div>
</div>
</div>
</div>
<div id="question-summary-66845" class="s-post-summary js-post-summary s-post-summary__watched" data-post-id="66845" data-post-type-id="1" data-webtasks-id="7499ee76-e98b-4430">
<div class="s-post-summary--stats js-post-summary-stats" data-webtasks-id="433afab6-fb78-45c3">
<div class="s-post-summary--stats-item s-post-summary--stats-item__emphasized" title="Score of 162" data-webtasks-id="d4894102-42da-4c14">
<span class="s-post-summary--stats-item-number" data-webtasks-id="bbb9384e-2828-46e6">162</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="3d3c8db5-0b93-4b89">votes</span>
</div>
<div class="s-post-summary--stats-item has-answers " title="5 answers" data-webtasks-id="f382c211-fb1a-4d36">
<span class="s-post-summary--stats-item-number" data-webtasks-id="d59dd076-1929-4a90">5</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="404cb727-9846-44c3">answers</span>
</div>
<div class="s-post-summary--stats-item is-hot" title="26955 views" data-webtasks-id="29412583-e701-4c90">
<span class="s-post-summary--stats-item-number" data-webtasks-id="48378acb-1692-4cf3">27k</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="7b91d2c1-c375-47f8">views</span>
</div>
</div>
<div class="s-post-summary--content" data-webtasks-id="f70c9f3e-e968-4e79">
<h3 class="s-post-summary--content-title" data-webtasks-id="8c8d216a-0e3b-4a04">
<a href="/questions/66845/i-dont-know-my-nationality-how-can-i-visit-denmark" class="s-link" data-webtasks-id="56f60664-fcd1-4826">I don't know my nationality. How can I visit Denmark?</a>
</h3>
<div class="s-post-summary--content-excerpt" data-webtasks-id="cdc5c072-bb2d-4caa">
I was born in a Thailand refugee camp to Vietnamese parents, but quickly as an infant, they immigrated to Denmark. We lived there for 10-11 years and then moved to the U.S. I am a green card holder of ...
</div>
<div class="s-post-summary--meta" data-webtasks-id="7efa5bc9-1bd2-4775">
<div class="s-post-summary--meta-tags d-inline-block tags js-tags t-visas t-passports t-thailand t-denmark t-stateless-persons" data-webtasks-id="a7af9df2-800f-4874">
<ul class="ml0 list-ls-none js-post-tag-list-wrapper d-inline" data-webtasks-id="e1e9f8cc-9ba0-4e17"><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="bb776f13-39cd-4697"><a href="/questions/tagged/visas" class="post-tag flex--item mt0 js-tagname-visas s-tag__watched" title="show questions tagged 'visas'" aria-label="show questions tagged 'visas'" rel="tag" aria-labelledby="tag-visas-tooltip-container" data-webtasks-id="cc466970-94ed-4522">visas</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="89b646e1-5424-4aa8"><a href="/questions/tagged/passports" class="post-tag flex--item mt0 js-tagname-passports" title="show questions tagged 'passports'" aria-label="show questions tagged 'passports'" rel="tag" aria-labelledby="tag-passports-tooltip-container" data-webtasks-id="216cf3b5-d79e-4c8c">passports</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="727fdaf8-6ab6-42e0"><a href="/questions/tagged/thailand" class="post-tag flex--item mt0 js-tagname-thailand" title="show questions tagged 'thailand'" aria-label="show questions tagged 'thailand'" rel="tag" aria-labelledby="tag-thailand-tooltip-container" data-webtasks-id="91c56ac5-0ce2-4699">thailand</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="ba12b804-ec10-4c1a"><a href="/questions/tagged/denmark" class="post-tag flex--item mt0 js-tagname-denmark" title="show questions tagged 'denmark'" aria-label="show questions tagged 'denmark'" rel="tag" aria-labelledby="tag-denmark-tooltip-container" data-webtasks-id="c386afc2-f072-46a2">denmark</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="94eb2eec-aee5-4c5e"><a href="/questions/tagged/stateless-persons" class="post-tag flex--item mt0 js-tagname-stateless-persons" title="show questions tagged 'stateless-persons'" aria-label="show questions tagged 'stateless-persons'" rel="tag" aria-labelledby="tag-stateless-persons-tooltip-container" data-webtasks-id="5229d5ce-295c-4bb0">stateless-persons</a></li></ul>
</div>
<div class="s-user-card s-user-card__minimal" aria-live="polite" data-webtasks-id="866356f3-104a-4d82">
<a href="/users/42452/quinn" class="s-avatar s-avatar__16 s-user-card--avatar" data-user-id="42452" data-webtasks-id="016d28e3-aacc-42c3"> <div class="gravatar-wrapper-16" data-webtasks-id="6590539c-07b6-43ac">
<img src="https://www.gravatar.com/avatar/6f8eb3d37384fae5c4d920bfdf00d3a5?s=32&d=identicon&r=PG&f=y&so-version=2" alt="Quinn's user avatar" width="16" ,="" height="16" class="s-avatar--image" data-webtasks-id="0964d30b-4529-4863">
</div>
</a>
<div class="s-user-card--info" data-webtasks-id="e70b8943-42f5-431d">
<div class="s-user-card--link d-flex gs4" data-webtasks-id="cdac2052-400e-45fb">
<a href="/users/42452/quinn" class="flex--item" data-webtasks-id="6a568eea-6da5-4a67">Quinn</a>
</div>
<ul class="s-user-card--awards" data-webtasks-id="c861c40c-0d5b-49ba">
<li class="s-user-card--rep" data-webtasks-id="40b3aa41-fe82-4ab4"><span class="todo-no-class-here" title="reputation score " dir="ltr" data-webtasks-id="d977a366-7a89-4d0c">1,221</span></li>
</ul>
</div>
<time class="s-user-card--time" data-webtasks-id="f8fa7333-6ffb-4250">asked <span title="2016-04-19 00:13:10Z" class="relativetime" data-webtasks-id="39b79809-4fd4-4186">Apr 19, 2016 at 0:13</span></time>
</div>
</div>
</div>
</div>
<div id="question-summary-10" class="s-post-summary js-post-summary" data-post-id="10" data-post-type-id="1" data-webtasks-id="fd27b252-a720-440b">
<div class="s-post-summary--stats js-post-summary-stats" data-webtasks-id="e41a3d53-7d88-4807">
<div class="s-post-summary--stats-item s-post-summary--stats-item__emphasized" title="Score of 159" data-webtasks-id="bc1969e3-b81b-4016">
<span class="s-post-summary--stats-item-number" data-webtasks-id="d3a799e7-1aba-4bfb">159</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="35777f2c-6e3d-4b8f">votes</span>
</div>
<div class="s-post-summary--stats-item has-answers has-accepted-answer" title="one of the answers was accepted as the correct answer" data-webtasks-id="2534e7a0-7016-483b">
<svg aria-hidden="true" class="svg-icon iconCheckmarkSm" width="14" height="14" viewBox="0 0 14 14" data-webtasks-id="85727de2-f1cd-4c65"><path d="M13 3.41 11.59 2 5 8.59 2.41 6 1 7.41l4 4 8-8Z" data-webtasks-id="edbdd610-d9fc-44d3"></path></svg> <span class="s-post-summary--stats-item-number" data-webtasks-id="f348ff30-40ad-4b44">22</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="c4805a25-65a8-4ba6">answers</span>
</div>
<div class="s-post-summary--stats-item is-hot" title="26702 views" data-webtasks-id="b172345e-ffcf-4566">
<span class="s-post-summary--stats-item-number" data-webtasks-id="ceb91298-9211-422d">27k</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="47f5e95c-c6bc-47b4">views</span>
</div>
</div>
<div class="s-post-summary--content" data-webtasks-id="f336a1a2-b153-4f7e">
<h3 class="s-post-summary--content-title" data-webtasks-id="08e82d26-742a-4d39">
<a href="/questions/10/when-traveling-to-a-country-with-a-different-currency-how-should-you-take-your" class="s-link" data-webtasks-id="48a73dc0-cbdd-46ba">When traveling to a country with a different currency, how should you take your money?</a>
</h3>
<div class="s-post-summary--content-excerpt" data-webtasks-id="1dffdf30-3c28-476d">
Recently my wife and I traveled to Italy and before we left we got about 85% of our money in travelers checks and the other 15% we carried on in cash. When we arrived there, no one would take our ...
</div>
<div class="s-post-summary--meta" data-webtasks-id="eb6f0c01-db73-4d9d">
<div class="s-post-summary--meta-tags d-inline-block tags js-tags t-safety t-international-travel t-money t-exchange" data-webtasks-id="cedef7ef-7f70-4c85">
<ul class="ml0 list-ls-none js-post-tag-list-wrapper d-inline" data-webtasks-id="c9932646-5903-4245"><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="8eec823b-44be-42aa"><a href="/questions/tagged/safety" class="post-tag flex--item mt0 js-tagname-safety" title="show questions tagged 'safety'" aria-label="show questions tagged 'safety'" rel="tag" aria-labelledby="tag-safety-tooltip-container" data-webtasks-id="6ffc0443-b503-47cf">safety</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="9ad5370e-92e8-4761"><a href="/questions/tagged/international-travel" class="post-tag flex--item mt0 js-tagname-international-travel" title="show questions tagged 'international-travel'" aria-label="show questions tagged 'international-travel'" rel="tag" aria-labelledby="tag-international-travel-tooltip-container" data-webtasks-id="189cf547-20d3-4990">international-travel</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="1f6ae218-145d-472f"><a href="/questions/tagged/money" class="post-tag flex--item mt0 js-tagname-money" title="show questions tagged 'money'" aria-label="show questions tagged 'money'" rel="tag" aria-labelledby="tag-money-tooltip-container" data-webtasks-id="890f86b7-2d0b-4ec1">money</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="2998fab2-ff01-48cf"><a href="/questions/tagged/exchange" class="post-tag flex--item mt0 js-tagname-exchange" title="show questions tagged 'exchange'" aria-label="show questions tagged 'exchange'" rel="tag" aria-labelledby="tag-exchange-tooltip-container" data-webtasks-id="a2c52ebb-7870-44b3">exchange</a></li></ul>
</div>
<div class="s-user-card s-user-card__minimal" aria-live="polite" data-webtasks-id="002cf864-ceb3-4e01">
<a href="/users/10/darren-kopp" class="s-avatar s-avatar__16 s-user-card--avatar js-user-hover-target" data-user-id="10" data-webtasks-id="8b461ec2-4038-440a"> <div class="gravatar-wrapper-16" data-webtasks-id="dc86e496-3255-452b">
<img src="https://www.gravatar.com/avatar/6bdef69e9f0f98bebcf8acc2a9ff25cd?s=32&d=identicon&r=PG" alt="Darren Kopp's user avatar" width="16" ,="" height="16" class="s-avatar--image" data-webtasks-id="14a9aa25-1e09-489a">
</div>
</a>
<div class="s-user-card--info" data-webtasks-id="ad7d528c-3414-4ee6">
<div class="s-user-card--link d-flex gs4" data-webtasks-id="9d873ca0-8d3c-40de">
<a href="/users/10/darren-kopp" class="flex--item" data-webtasks-id="f90e2597-97e3-4825">Darren Kopp</a>
</div>
<ul class="s-user-card--awards" data-webtasks-id="7aef1349-73a4-4a48">
<li class="s-user-card--rep" data-webtasks-id="ccb25446-2e0c-46cd"><span class="todo-no-class-here" title="reputation score " dir="ltr" data-webtasks-id="525077e5-92eb-46d9">2,242</span></li>
</ul>
</div>
<time class="s-user-card--time" data-webtasks-id="f5d0367b-922a-474f">asked <span title="2011-06-21 20:31:41Z" class="relativetime" data-webtasks-id="53466bc1-0fbf-4e0c">Jun 21, 2011 at 20:31</span></time>
</div>
</div>
</div>
</div>
<div id="question-summary-70827" class="s-post-summary js-post-summary" data-post-id="70827" data-post-type-id="1" data-webtasks-id="ff81c2a7-2d85-49c5">
<div class="s-post-summary--stats js-post-summary-stats" data-webtasks-id="8fe4d6e9-2ebf-4464">
<div class="s-post-summary--stats-item s-post-summary--stats-item__emphasized" title="Score of 159" data-webtasks-id="605117fe-e099-46b8">
<span class="s-post-summary--stats-item-number" data-webtasks-id="943ae7ea-bf0c-456c">159</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="ba37f1cb-f553-47f9">votes</span>
</div>
<div class="s-post-summary--stats-item has-answers has-accepted-answer" title="one of the answers was accepted as the correct answer" data-webtasks-id="68d653e9-f243-48a0">
<svg aria-hidden="true" class="svg-icon iconCheckmarkSm" width="14" height="14" viewBox="0 0 14 14" data-webtasks-id="59eebe72-845e-44b4"><path d="M13 3.41 11.59 2 5 8.59 2.41 6 1 7.41l4 4 8-8Z" data-webtasks-id="1e62aef5-00b3-4552"></path></svg> <span class="s-post-summary--stats-item-number" data-webtasks-id="08c33da4-9c26-43df">11</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="a63292f2-1936-4b9b">answers</span>
</div>
<div class="s-post-summary--stats-item is-supernova" title="167471 views" data-webtasks-id="abe535ff-4749-4f36">
<span class="s-post-summary--stats-item-number" data-webtasks-id="1fddb128-5e3f-4d78">167k</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="ec8586bc-e7cb-49fd">views</span>
</div>
</div>
<div class="s-post-summary--content" data-webtasks-id="71e84906-c046-482f">
<h3 class="s-post-summary--content-title" data-webtasks-id="163e9458-e01a-47c1">
<a href="/questions/70827/ok-we-are-all-adults-here-so-what-is-a-bidet-for-and-how-do-i-use-it" class="s-link" data-webtasks-id="575848ff-fda8-4379">OK, we are all adults here, so what is a bidet for and how do I use it?</a>
</h3>
<div class="s-post-summary--content-excerpt" data-webtasks-id="90b6880c-6dc2-4c38">
Confession time: I am from one of these barbaric countries where the use of the bidet is not widespread. So I have no idea...
Question 1: What is the bidet good for?
Question 2: How do I use it?
...
</div>
<div class="s-post-summary--meta" data-webtasks-id="05679d3d-9cea-4910">
<div class="s-post-summary--meta-tags d-inline-block tags js-tags t-tips-and-tricks t-local-customs t-hygiene t-etiquette" data-webtasks-id="935b1650-af96-4145">
<ul class="ml0 list-ls-none js-post-tag-list-wrapper d-inline" data-webtasks-id="5d70f1b1-d923-4b7c"><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="a3b047bc-9c99-4be0"><a href="/questions/tagged/tips-and-tricks" class="post-tag flex--item mt0 js-tagname-tips-and-tricks" title="show questions tagged 'tips-and-tricks'" aria-label="show questions tagged 'tips-and-tricks'" rel="tag" aria-labelledby="tag-tips-and-tricks-tooltip-container" data-webtasks-id="d17c6f19-e891-4431">tips-and-tricks</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="efede03f-fc8b-453f"><a href="/questions/tagged/local-customs" class="post-tag flex--item mt0 js-tagname-local-customs" title="show questions tagged 'local-customs'" aria-label="show questions tagged 'local-customs'" rel="tag" aria-labelledby="tag-local-customs-tooltip-container" data-webtasks-id="d2c27363-6532-423b">local-customs</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="739245fe-ef23-4f03"><a href="/questions/tagged/hygiene" class="post-tag flex--item mt0 js-tagname-hygiene" title="show questions tagged 'hygiene'" aria-label="show questions tagged 'hygiene'" rel="tag" aria-labelledby="tag-hygiene-tooltip-container" data-webtasks-id="47997694-4223-4d39">hygiene</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="48e4ed70-00fa-46c7"><a href="/questions/tagged/etiquette" class="post-tag flex--item mt0 js-tagname-etiquette" title="show questions tagged 'etiquette'" aria-label="show questions tagged 'etiquette'" rel="tag" aria-labelledby="tag-etiquette-tooltip-container" data-webtasks-id="daec1dd5-7a27-4ff9">etiquette</a></li></ul>
</div>
<div class="s-user-card s-user-card__minimal" aria-live="polite" data-webtasks-id="84f5ea0a-9035-4ae8">
<a href="/users/32134/mts" class="s-avatar s-avatar__16 s-user-card--avatar js-user-hover-target" data-user-id="32134" data-webtasks-id="68fdc772-3938-416a"> <div class="gravatar-wrapper-16" data-webtasks-id="4eab6e8b-a0ea-43fd">
<img src="https://www.gravatar.com/avatar/d9208b9e5a39264b1b6743fc8e90b85d?s=32&d=identicon&r=PG&f=y&so-version=2" alt="mts's user avatar" width="16" ,="" height="16" class="s-avatar--image" data-webtasks-id="845e2acd-e8a2-4509">
</div>
</a>
<div class="s-user-card--info" data-webtasks-id="538710cb-9e08-4337">
<div class="s-user-card--link d-flex gs4" data-webtasks-id="8af2f430-e234-40e0">
<a href="/users/32134/mts" class="flex--item" data-webtasks-id="256106dc-e535-411b">mts</a>
</div>
<ul class="s-user-card--awards" data-webtasks-id="7df2af08-d175-4c65">
<li class="s-user-card--rep" data-webtasks-id="8bf14985-1d84-440d"><span class="todo-no-class-here" title="reputation score 26,209" dir="ltr" data-webtasks-id="38fda3a3-2269-4b9f">26.2k</span></li>
</ul>
</div>
<time class="s-user-card--time" data-webtasks-id="f897bad9-f233-473c">asked <span title="2016-06-06 14:10:13Z" class="relativetime" data-webtasks-id="85727b26-f84f-4001">Jun 6, 2016 at 14:10</span></time>
</div>
</div>
</div>
</div>
<div id="question-summary-104273" class="s-post-summary js-post-summary" data-post-id="104273" data-post-type-id="1" data-webtasks-id="f5a5c155-afed-4714">
<div class="s-post-summary--stats js-post-summary-stats" data-webtasks-id="69192c0e-4271-4544">
<div class="s-post-summary--stats-item s-post-summary--stats-item__emphasized" title="Score of 153" data-webtasks-id="5b152972-9560-4228">
<span class="s-post-summary--stats-item-number" data-webtasks-id="be8aa884-53a4-469a">153</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="582c8520-0003-4218">votes</span>
</div>
<div class="s-post-summary--stats-item has-answers " title="11 answers" data-webtasks-id="6424d68e-64ef-4c33">
<span class="s-post-summary--stats-item-number" data-webtasks-id="fe9d7b49-aa5a-4277">11</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="8d8d8042-2091-449d">answers</span>
</div>
<div class="s-post-summary--stats-item is-hot" title="56145 views" data-webtasks-id="276114f1-0f1e-48a4">
<span class="s-post-summary--stats-item-number" data-webtasks-id="09687809-3600-4802">56k</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="27c99499-ae21-415f">views</span>
</div>
</div>
<div class="s-post-summary--content" data-webtasks-id="186472e3-dc0a-4f84">
<h3 class="s-post-summary--content-title" data-webtasks-id="9d2fb381-6a3e-453d">
<a href="/questions/104273/took-airline-plane-blanket-by-accident-didnt-realize-it-was-forbidden-what-sh" class="s-link" data-webtasks-id="4753401b-70db-4efa">Took airline plane blanket by accident; didn't realize it was forbidden. What should I do?</a>
</h3>
<div class="s-post-summary--content-excerpt" data-webtasks-id="20b53a37-fc3a-4a29">
I'm very new to traveling in general. When I flew on a long flight, the airline gave us blankets and pillows. I, having no idea that I was supposed to leave the blanket behind, took it as I collected ...
</div>
<div class="s-post-summary--meta" data-webtasks-id="1519cf4c-7051-41c0">
<div class="s-post-summary--meta-tags d-inline-block tags js-tags t-air-travel t-legal t-airlines t-regulations t-etiquette" data-webtasks-id="4f19da82-852c-40dd">
<ul class="ml0 list-ls-none js-post-tag-list-wrapper d-inline" data-webtasks-id="0bdc7a16-56ff-4c3b"><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="0c65a9ac-b637-406c"><a href="/questions/tagged/air-travel" class="post-tag flex--item mt0 js-tagname-air-travel" title="show questions tagged 'air-travel'" aria-label="show questions tagged 'air-travel'" rel="tag" aria-labelledby="tag-air-travel-tooltip-container" data-webtasks-id="9a8d7fb5-c61c-4e9d">air-travel</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="87ca2793-2d66-4d1e"><a href="/questions/tagged/legal" class="post-tag flex--item mt0 js-tagname-legal" title="show questions tagged 'legal'" aria-label="show questions tagged 'legal'" rel="tag" aria-labelledby="tag-legal-tooltip-container" data-webtasks-id="da13667a-e2c3-401c">legal</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="927b0dca-dfdf-4672"><a href="/questions/tagged/airlines" class="post-tag flex--item mt0 js-tagname-airlines" title="show questions tagged 'airlines'" aria-label="show questions tagged 'airlines'" rel="tag" aria-labelledby="tag-airlines-tooltip-container" data-webtasks-id="37116b56-8b5a-4053">airlines</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="19f8ab5d-b3c6-4602"><a href="/questions/tagged/regulations" class="post-tag flex--item mt0 js-tagname-regulations" title="show questions tagged 'regulations'" aria-label="show questions tagged 'regulations'" rel="tag" aria-labelledby="tag-regulations-tooltip-container" data-webtasks-id="0003b685-fde2-4d7c">regulations</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="39715a91-ed12-40ef"><a href="/questions/tagged/etiquette" class="post-tag flex--item mt0 js-tagname-etiquette" title="show questions tagged 'etiquette'" aria-label="show questions tagged 'etiquette'" rel="tag" aria-labelledby="tag-etiquette-tooltip-container" data-webtasks-id="95ba576c-0b74-4d35">etiquette</a></li></ul>
</div>
<div class="s-user-card s-user-card__minimal" aria-live="polite" data-webtasks-id="efeb9602-472e-440c">
<a href="/users/69502/feels-really-bad" class="s-avatar s-avatar__16 s-user-card--avatar" data-user-id="69502" data-webtasks-id="7f90a8b2-85b2-43bb"> <div class="gravatar-wrapper-16" data-webtasks-id="e80d8019-3895-45b6">
<img src="https://www.gravatar.com/avatar/03a9928dd0b992dec6ae9210e790784b?s=32&d=identicon&r=PG" alt="feels-really-bad's user avatar" width="16" ,="" height="16" class="s-avatar--image" data-webtasks-id="60e91c57-4147-4a7e">
</div>
</a>
<div class="s-user-card--info" data-webtasks-id="a1c0b5ce-2d1e-4d4e">
<div class="s-user-card--link d-flex gs4" data-webtasks-id="a6dc7e6b-8e6c-4f0f">
<a href="/users/69502/feels-really-bad" class="flex--item" data-webtasks-id="8c21ab7b-55f5-47aa">feels-really-bad</a>
</div>
<ul class="s-user-card--awards" data-webtasks-id="3565b128-3a8f-497c">
<li class="s-user-card--rep" data-webtasks-id="dbbd61c0-40af-495a"><span class="todo-no-class-here" title="reputation score " dir="ltr" data-webtasks-id="0d62f867-cbf4-43fd">1,277</span></li>
</ul>
</div>
<time class="s-user-card--time" data-webtasks-id="4c36489f-c66b-47f5">asked <span title="2017-10-24 18:39:35Z" class="relativetime" data-webtasks-id="d28d1c69-fdd1-436f">Oct 24, 2017 at 18:39</span></time>
</div>
</div>
</div>
</div>
<div id="question-summary-60324" class="s-post-summary js-post-summary s-post-summary__watched" data-post-id="60324" data-post-type-id="1" data-webtasks-id="009abf3e-572a-4ceb">
<div class="s-post-summary--stats js-post-summary-stats" data-webtasks-id="8c47ebb4-0be1-4485">
<div class="s-post-summary--stats-item s-post-summary--stats-item__emphasized" title="Score of 151" data-webtasks-id="e03c0eec-68c7-4ce9">
<span class="s-post-summary--stats-item-number" data-webtasks-id="05cce6bc-f844-4555">151</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="05f17d77-b812-43ea">votes</span>
</div>
<div class="s-post-summary--stats-item has-answers has-accepted-answer" title="one of the answers was accepted as the correct answer" data-webtasks-id="49f2d441-88e1-4ae6">
<svg aria-hidden="true" class="svg-icon iconCheckmarkSm" width="14" height="14" viewBox="0 0 14 14" data-webtasks-id="a0af2dde-6129-4540"><path d="M13 3.41 11.59 2 5 8.59 2.41 6 1 7.41l4 4 8-8Z" data-webtasks-id="79bf690a-9ed7-4c62"></path></svg> <span class="s-post-summary--stats-item-number" data-webtasks-id="19494c23-ab9d-4c30">4</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="f2ea1da6-8a9e-405e">answers</span>
</div>
<div class="s-post-summary--stats-item is-hot" title="23157 views" data-webtasks-id="af9fbe9f-8177-4c2b">
<span class="s-post-summary--stats-item-number" data-webtasks-id="dcb52520-f06e-4d8d">23k</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="49bbdf92-499e-4891">views</span>
</div>
</div>
<div class="s-post-summary--content" data-webtasks-id="2bff40eb-9bee-4873">
<h3 class="s-post-summary--content-title" data-webtasks-id="b91ec5f4-f78e-47bd">
<a href="/questions/60324/immigration-officer-that-stopped-me-at-the-airport-is-texting-me-what-do-i-do" class="s-link" data-webtasks-id="1dd9fe4a-3ee3-47d4">Immigration officer that stopped me at the airport is texting me. What do I do?</a>
</h3>
<div class="s-post-summary--content-excerpt" data-webtasks-id="b9f2ab89-4468-48da">
Yesterday my cousin arrived to Chicago from Mexico, she is visiting family there to spend the holidays, this is not the first time she visits.
She was stopped by immigration, because they thought it ...
</div>
<div class="s-post-summary--meta" data-webtasks-id="9a862f5d-2c93-4a49">
<div class="s-post-summary--meta-tags d-inline-block tags js-tags t-usa t-customs-and-immigration t-legal t-officials" data-webtasks-id="b4fe88a0-b2f0-4dfa">
<ul class="ml0 list-ls-none js-post-tag-list-wrapper d-inline" data-webtasks-id="fc11c95b-d4fe-409b"><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="8a8ad881-c705-4e5e"><a href="/questions/tagged/usa" class="post-tag flex--item mt0 js-tagname-usa s-tag__watched" title="show questions tagged 'usa'" aria-label="show questions tagged 'usa'" rel="tag" aria-labelledby="tag-usa-tooltip-container" data-webtasks-id="d884e928-aafc-467f">usa</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="8b68096f-0fa6-4b5e"><a href="/questions/tagged/customs-and-immigration" class="post-tag flex--item mt0 js-tagname-customs-and-immigration s-tag__watched" title="show questions tagged 'customs-and-immigration'" aria-label="show questions tagged 'customs-and-immigration'" rel="tag" aria-labelledby="tag-customs-and-immigration-tooltip-container" data-webtasks-id="606edc58-f862-4e6a">customs-and-immigration</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="4ba57fbe-1b24-46c9"><a href="/questions/tagged/legal" class="post-tag flex--item mt0 js-tagname-legal" title="show questions tagged 'legal'" aria-label="show questions tagged 'legal'" rel="tag" aria-labelledby="tag-legal-tooltip-container" data-webtasks-id="e0f35b13-27a0-4d58">legal</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="e8f96aa4-257b-4367"><a href="/questions/tagged/officials" class="post-tag flex--item mt0 js-tagname-officials" title="show questions tagged 'officials'" aria-label="show questions tagged 'officials'" rel="tag" aria-labelledby="tag-officials-tooltip-container" data-webtasks-id="19c57026-29fd-43c2">officials</a></li></ul>
</div>
<div class="s-user-card s-user-card__minimal" aria-live="polite" data-webtasks-id="9cab71e4-0e72-4f06">
<a href="/users/38292/diegoj" class="s-avatar s-avatar__16 s-user-card--avatar js-user-hover-target" data-user-id="38292" data-webtasks-id="b3e68838-d593-43c8"> <div class="gravatar-wrapper-16" data-webtasks-id="b84d1ac3-231e-45b0">
<img src="https://www.gravatar.com/avatar/d5874a9362fed58bb2df043c20345fa2?s=32&d=identicon&r=PG" alt="DiegoJ's user avatar" width="16" ,="" height="16" class="s-avatar--image" data-webtasks-id="f6e94788-28e1-48bf">
</div>
</a>
<div class="s-user-card--info" data-webtasks-id="96f84e2d-f6d9-40fc">
<div class="s-user-card--link d-flex gs4" data-webtasks-id="92040f2a-d5ed-4545">
<a href="/users/38292/diegoj" class="flex--item" data-webtasks-id="c8a6a77e-2cfa-4ade">DiegoJ</a>
</div>
<ul class="s-user-card--awards" data-webtasks-id="778c167f-f405-46b3">
<li class="s-user-card--rep" data-webtasks-id="c593c803-529d-47e1"><span class="todo-no-class-here" title="reputation score " dir="ltr" data-webtasks-id="13b59edc-2151-4e1d">1,273</span></li>
</ul>
</div>
<time class="s-user-card--time" data-webtasks-id="099f4faa-a0cc-49da">asked <span title="2015-12-22 16:25:01Z" class="relativetime" data-webtasks-id="d459fff7-47ad-4446">Dec 22, 2015 at 16:25</span></time>
</div>
</div>
</div>
</div>
<div id="question-summary-146965" class="s-post-summary js-post-summary" data-post-id="146965" data-post-type-id="1" data-webtasks-id="e092541e-e7e7-413b">
<div class="s-post-summary--stats js-post-summary-stats" data-webtasks-id="ec2606c3-f8c9-47e8">
<div class="s-post-summary--stats-item s-post-summary--stats-item__emphasized" title="Score of 146" data-webtasks-id="77224ab2-90e9-46b7">
<span class="s-post-summary--stats-item-number" data-webtasks-id="835cf867-036e-4dd6">146</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="ae239141-2d53-43d7">votes</span>
</div>
<div class="s-post-summary--stats-item has-answers has-accepted-answer" title="one of the answers was accepted as the correct answer" data-webtasks-id="9a59065b-a5ec-46cc">
<svg aria-hidden="true" class="svg-icon iconCheckmarkSm" width="14" height="14" viewBox="0 0 14 14" data-webtasks-id="a6c061b0-bbd5-4740"><path d="M13 3.41 11.59 2 5 8.59 2.41 6 1 7.41l4 4 8-8Z" data-webtasks-id="17acc937-9a2d-427f"></path></svg> <span class="s-post-summary--stats-item-number" data-webtasks-id="a10de904-15fd-40e3">5</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="4e5016be-a21d-4599">answers</span>
</div>
<div class="s-post-summary--stats-item is-hot" title="11153 views" data-webtasks-id="01b90c29-b958-4158">
<span class="s-post-summary--stats-item-number" data-webtasks-id="01a4ef0a-fad8-4409">11k</span>
<span class="s-post-summary--stats-item-unit" data-webtasks-id="1d5cbb7b-bbcf-4f89">views</span>
</div>
</div>
<div class="s-post-summary--content" data-webtasks-id="e67339ef-b6b2-4487">
<h3 class="s-post-summary--content-title" data-webtasks-id="67e001a2-5e49-4494">
<a href="/questions/146965/which-museums-have-artworks-of-all-four-ninja-turtles-namesakes" class="s-link" data-webtasks-id="3412ae29-bd46-41ff">Which museums have artworks of all four Ninja Turtles' namesakes?</a>
</h3>
<div class="s-post-summary--content-excerpt" data-webtasks-id="0c8bb860-583c-4bd6">
I was visiting the Louvre recently, where I tried to ignore the lines to Leonardo's Mona-Lisa and looked at all the other great art instead, such as Michelangelo's dying slave and the many works by ...
</div>
<div class="s-post-summary--meta" data-webtasks-id="d94bc3ec-951d-4d86">
<div class="s-post-summary--meta-tags d-inline-block tags js-tags t-factoids t-museums" data-webtasks-id="08038e39-470a-47a4">
<ul class="ml0 list-ls-none js-post-tag-list-wrapper d-inline" data-webtasks-id="6b372c04-90bd-4a99"><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="506844e6-a6f5-4b40"><a href="/questions/tagged/factoids" class="post-tag flex--item mt0 js-tagname-factoids" title="show questions tagged 'factoids'" aria-label="show questions tagged 'factoids'" rel="tag" aria-labelledby="tag-factoids-tooltip-container" data-webtasks-id="2cfea6bd-5f3b-40bb">factoids</a></li><li class="d-inline mr4 js-post-tag-list-item" data-webtasks-id="d5d3b5d9-327a-497e"><a href="/questions/tagged/museums" class="post-tag flex--item mt0 js-tagname-museums" title="show questions tagged 'museums'" aria-label="show questions tagged 'museums'" rel="tag" aria-labelledby="tag-museums-tooltip-container" data-webtasks-id="8d742a2d-76d2-494c">museums</a></li></ul>
</div>
<div class="s-user-card s-user-card__minimal" aria-live="polite" data-webtasks-id="77fcf19f-d622-4b1e">
<a href="/users/103754/mlk" class="s-avatar s-avatar__16 s-user-card--avatar" data-user-id="103754" data-webtasks-id="830f1301-421b-4ed3"> <div class="gravatar-wrapper-16" data-webtasks-id="82996695-5b3c-4fff">
<img src="https://www.gravatar.com/avatar/1238a480420cdaea4e30ace1d1495d1d?s=32&d=identicon&r=PG&f=y&so-version=2" alt="mlk's user avatar" width="16" ,="" height="16" class="s-avatar--image" data-webtasks-id="98be1f5c-680b-4ae3">
</div>
</a>
<div class="s-user-card--info" data-webtasks-id="32d3a961-2fd3-4c24">
<div class="s-user-card--link d-flex gs4" data-webtasks-id="994eb2bc-a4df-472a">
<a href="/users/103754/mlk" class="flex--item" data-webtasks-id="da87bda1-15f8-4815">mlk</a>
</div>
<ul class="s-user-card--awards" data-webtasks-id="7324aa62-6f59-4e67">
<li class="s-user-card--rep" data-webtasks-id="30d051ff-69eb-4162"><span class="todo-no-class-here" title="reputation score " dir="ltr" data-webtasks-id="f94042a0-ab3f-405e">1,151</span></li>
</ul>
</div>
<time class="s-user-card--time" data-webtasks-id="efd7309c-1f1e-44d7">asked <span title="2019-09-17 09:59:14Z" class="relativetime" data-webtasks-id="61dc04a2-a40e-4af8">Sep 17, 2019 at 9:59</span></time>
</div>
</div>
</div>
</div>
<br class="clear-both" data-webtasks-id="0c9e9430-4e65-4953">
</div>
<br class="clear-both" data-webtasks-id="32232c94-6669-4499">
<div class="s-pagination site273 themed page-sizer float-right" data-webtasks-id="46115f62-deb5-48ea">
<a href="/questions?tab=votes&pagesize=15" title="Show 15 items per page" class="s-pagination--item is-selected" aria-current="true" data-webtasks-id="fc240a01-4f10-4381">15</a>
<a href="/questions?tab=votes&pagesize=30" title="Show 30 items per page" class="s-pagination--item" data-webtasks-id="d7c06169-c1f5-48ee">30</a>
<a href="/questions?tab=votes&pagesize=50" title="Show 50 items per page" class="s-pagination--item" data-webtasks-id="bc4ec869-476c-4834">50</a>
<span class="s-pagination--item s-pagination--item__clear" data-webtasks-id="5fb18f3c-05ed-473f">per page</span>
</div>
<div class="s-pagination site273 themed pager float-left" data-webtasks-id="a2542762-d928-48f7">
<div class="s-pagination--item is-selected" aria-current=""page"" data-webtasks-id="0a2492c8-196b-4e90">1</div>
<a class="s-pagination--item js-pagination-item" href="/questions?tab=votes&page=2" rel="" title="Go to page 2" data-webtasks-id="50e18f1e-6c9d-475f">2</a>
<a class="s-pagination--item js-pagination-item" href="/questions?tab=votes&page=3" rel="" title="Go to page 3" data-webtasks-id="4c295d2e-651d-4a7d">3</a>
<a class="s-pagination--item js-pagination-item" href="/questions?tab=votes&page=4" rel="" title="Go to page 4" data-webtasks-id="134c5f20-937c-4001">4</a>
<a class="s-pagination--item js-pagination-item" href="/questions?tab=votes&page=5" rel="" title="Go to page 5" data-webtasks-id="0f855f62-a8a4-42dd">5</a>
<div class="s-pagination--item s-pagination--item__clear" data-webtasks-id="f0840d91-8115-4968">…</div>
<a class="s-pagination--item js-pagination-item" href="/questions?tab=votes&page=3146" rel="" title="Go to page 3146" data-webtasks-id="d62cbf2a-a285-4ee3">3146</a>
<a class="s-pagination--item js-pagination-item" href="/questions?tab=votes&page=2" rel="next" title="Go to page 2" data-webtasks-id="01137c74-4b82-430b"> Next</a></div>
</div>
<div id="sidebar" role="complementary" aria-label="sidebar" data-webtasks-id="dc32e241-5023-4688">
<div class="s-sidebarwidget s-sidebarwidget__yellow s-anchors s-anchors__grayscale mb16" data-tracker="cb=1" data-webtasks-id="913e6d90-6736-4889">
<ul class="d-block p0 m0" data-webtasks-id="6aae960a-755d-4d2b">
<li class="s-sidebarwidget--header s-sidebarwidget__small-bold-text d-flex fc-black-600 d:fc-black-900 bb bbw1" data-webtasks-id="8a5a6472-e785-4f6d">
Featured on Meta
</li>
<li class="s-sidebarwidget--item d-flex px16" data-webtasks-id="196081e2-3756-44c8">
<div class="flex--item1 fl-shrink0" data-webtasks-id="42069b86-16e8-4a40">
<div class="favicon favicon-stackexchangemeta" title="Meta Stack Exchange" data-webtasks-id="2f127097-476a-49c2"></div> </div>
<div class="flex--item wmn0 ow-break-word" data-webtasks-id="556d5368-7943-482d">
<a href="https://meta.stackexchange.com/questions/390463/starting-the-prompt-design-site-a-new-home-in-our-stack-exchange-neighborhood?cb=1" class="js-gps-track" data-ga="["community bulletin board","Featured on Meta","https://meta.stackexchange.com/questions/390463/starting-the-prompt-design-site-a-new-home-in-our-stack-exchange-neighborhood",null,null]" data-gps-track="communitybulletin.click({ priority: 3, position: 0 })" data-webtasks-id="3f26bc6c-180c-4abc">Starting the Prompt Design Site: A New Home in our Stack Exchange Neighborhood</a>
</div>
</li>
<li class="s-sidebarwidget--item d-flex px16" data-webtasks-id="9c27d407-4473-48b0">
<div class="flex--item1 fl-shrink0" data-webtasks-id="aacf09e1-ac61-4a1e">
<div class="favicon favicon-stackexchangemeta" title="Meta Stack Exchange" data-webtasks-id="c573aafb-2e3a-4d54"></div> </div>
<div class="flex--item wmn0 ow-break-word" data-webtasks-id="6965fb0a-aacb-4a47">
<a href="https://meta.stackexchange.com/questions/390761/colors-update-a-more-detailed-look?cb=1" class="js-gps-track" data-ga="["community bulletin board","Featured on Meta","https://meta.stackexchange.com/questions/390761/colors-update-a-more-detailed-look",null,null]" data-gps-track="communitybulletin.click({ priority: 3, position: 1 })" data-webtasks-id="70ab4a2f-a3c2-4020">Colors update: A more detailed look</a>
</div>
</li>
<li class="s-sidebarwidget--item d-flex px16" data-webtasks-id="f8a40e37-1e6b-4764">
<div class="flex--item1 fl-shrink0" data-webtasks-id="c5c3a3b1-a05a-4fc3">
<div class="favicon favicon-travelmeta" title="Travel Meta Stack Exchange" data-webtasks-id="2eb570f0-9e55-40ae"></div> </div>
<div class="flex--item wmn0 ow-break-word" data-webtasks-id="cf60cac3-8b2b-4cba">
<a href="https://travel.meta.stackexchange.com/questions/8524/july-2023-photo-competition-theme-of-pets-traveling?cb=1" class="js-gps-track" data-ga="["community bulletin board","Featured on Meta","https://travel.meta.stackexchange.com/questions/8524/july-2023-photo-competition-theme-of-pets-traveling",null,null]" data-gps-track="communitybulletin.click({ priority: 6, position: 2 })" data-webtasks-id="3656a000-e9f3-45b4">July 2023 photo competition, theme of 'pets traveling'</a>
</div>
</li>
</ul>
</div>
<div class="s-sidebarwidget mb16 module" data-controller="se-uql-list" data-webtasks-id="91d62645-3e1f-4f11">
<h2 class="s-sidebarwidget--header mb0 fs-body2" data-webtasks-id="28092199-2675-4d82">Custom Filters</h2>
<ul class="s-sidebarwidget--content s-sidebarwidget__items" data-webtasks-id="1ece7974-6124-4e95">
<li class="s-sidebarwidget--item fc-black-300" data-webtasks-id="b69b16a6-aa4f-4936">
<a class="s-btn s-btn__link" data-action="se-uql-list#editCurrent" href="/questions?edited=true" data-webtasks-id="0bbb2a21-28d2-4b87">Create a custom filter</a>
</li>
</ul>
</div>
<div class="js-tag-preferences-container" data-webtasks-id="58784c74-2d50-4a08">
<div class="s-sidebarwidget mb16" data-webtasks-id="16bebc22-0528-4349">
<div class="s-sidebarwidget--header d-flex" data-webtasks-id="3cf32851-ea25-4b3c">
<h2 class="flex--item fl1 overflow-hidden ow-break-word mb0 fs-body2" id="js-add-watched-label" data-webtasks-id="b7d3672a-b468-49f9">
Watched Tags </h2>
<a class="js-edit-watched-tags flex--item ml12" href="/users/tag-notifications/136878#watching-273" aria-label="edit your watched tags" data-webtasks-id="2ee7e5b1-5604-4bdf">edit</a>
</div>
<div class="s-sidebarwidget--content fd-column" data-webtasks-id="715da1b2-7550-4e48">
<div class="js-watched-tag-list d-flex gs4 py4 fw-wrap" data-webtasks-id="33c68eaa-185a-4990">
<script type="text/html" class="js-tag-template" data-webtasks-id="f7178eb6-9548-4694"></script><div class="js-tag flex--item " data-webtasks-id="4cdffb4c-1f0c-4ec6"><a href="/questions/tagged/customs-and-immigration" class="post-tag user-tag" title="show questions tagged 'customs-and-immigration'" aria-label="show questions tagged 'customs-and-immigration'" rel="tag" aria-labelledby="tag-customs-and-immigration-tooltip-container" data-webtasks-id="454b2d99-94f6-4cea">customs-and-immigration</a></div><div class="js-tag flex--item " data-webtasks-id="3b053cc6-1fc5-41f6"><a href="/questions/tagged/indian-citizens" class="post-tag user-tag" title="show questions tagged 'indian-citizens'" aria-label="show questions tagged 'indian-citizens'" rel="tag" aria-labelledby="tag-indian-citizens-tooltip-container" data-webtasks-id="47137d53-5336-4b1d">indian-citizens</a></div><div class="js-tag flex--item " data-webtasks-id="f8eedd45-cb19-4319"><a href="/questions/tagged/luggage" class="post-tag user-tag" title="show questions tagged 'luggage'" aria-label="show questions tagged 'luggage'" rel="tag" aria-labelledby="tag-luggage-tooltip-container" data-webtasks-id="03b6f4f0-342c-4abe">luggage</a></div><div class="js-tag flex--item " data-webtasks-id="6346a44b-176f-4e15"><a href="/questions/tagged/paperwork" class="post-tag user-tag" title="show questions tagged 'paperwork'" aria-label="show questions tagged 'paperwork'" rel="tag" aria-labelledby="tag-paperwork-tooltip-container" data-webtasks-id="c237adbe-f4bd-4ef7">paperwork</a></div><div class="js-tag flex--item " data-webtasks-id="26635ba2-da7e-4e64"><a href="/questions/tagged/public-transport" class="post-tag user-tag" title="show questions tagged 'public-transport'" aria-label="show questions tagged 'public-transport'" rel="tag" aria-labelledby="tag-public-transport-tooltip-container" data-webtasks-id="17d58333-4810-4076">public-transport</a></div><div class="js-tag flex--item " data-webtasks-id="eb3388e9-fc96-42d4"><a href="/questions/tagged/schengen" class="post-tag user-tag" title="show questions tagged 'schengen'" aria-label="show questions tagged 'schengen'" rel="tag" aria-labelledby="tag-schengen-tooltip-container" data-webtasks-id="603596eb-b4c0-4030">schengen</a></div><div class="js-tag flex--item " data-webtasks-id="dcd71731-049b-4f96"><a href="/questions/tagged/standard-visitor-visas" class="post-tag user-tag" title="show questions tagged 'standard-visitor-visas'" aria-label="show questions tagged 'standard-visitor-visas'" rel="tag" aria-labelledby="tag-standard-visitor-visas-tooltip-container" data-webtasks-id="5e1d5bff-e3ef-4bc6">standard-visitor-visas</a></div><div class="js-tag flex--item " data-webtasks-id="5fa91088-6f31-40fe"><a href="/questions/tagged/uk" class="post-tag user-tag" title="show questions tagged 'uk'" aria-label="show questions tagged 'uk'" rel="tag" aria-labelledby="tag-uk-tooltip-container" data-webtasks-id="9f57673b-9a19-4496">uk</a></div><div class="js-tag flex--item " data-webtasks-id="70ac2d20-1fa4-4eb4"><a href="/questions/tagged/usa" class="post-tag user-tag" title="show questions tagged 'usa'" aria-label="show questions tagged 'usa'" rel="tag" aria-labelledby="tag-usa-tooltip-container" data-webtasks-id="ac7ee908-5c05-42dd">usa</a></div><div class="js-tag flex--item " data-webtasks-id="8dff083a-ca34-42e3"><a href="/questions/tagged/visas" class="post-tag user-tag" title="show questions tagged 'visas'" aria-label="show questions tagged 'visas'" rel="tag" aria-labelledby="tag-visas-tooltip-container" data-webtasks-id="a5be401c-aa8d-4888">visas</a></div>
</div>
<div class="js-add-watched-container" data-webtasks-id="7c5074f9-b111-4648"></div>
<div class="js-show-add-watched-container d-flex fd-column ta-center ai-center gsy gs16 mx-auto d-none" data-webtasks-id="12d174e8-00a5-48ae">
<div class="flex--item" data-webtasks-id="e627904e-ce4a-4fe5">
<svg aria-hidden="true" class="fc-blue-400 d:fc-blue-700 svg-spot spotSearch" width="48" height="48" viewBox="0 0 48 48" data-webtasks-id="47309cbd-9c41-4c53"><path d="M29.22 38.1a3.4 3.4 0 0 1 4.81-4.82l8.81 8.81a3.4 3.4 0 0 1-4.81 4.81l-8.81-8.8Z" opacity=".2" data-webtasks-id="825b7ffa-95fb-4666"></path><path d="M18.5 5a1 1 0 1 0 0 2c.63 0 1.24.05 1.84.15a1 1 0 0 0 .32-1.98A13.6 13.6 0 0 0 18.5 5Zm7.02 1.97a1 1 0 1 0-1.04 1.7 11.5 11.5 0 0 1 5.44 8.45 1 1 0 0 0 1.98-.24 13.5 13.5 0 0 0-6.38-9.91ZM18.5 0a18.5 18.5 0 1 0 10.76 33.55c.16.57.46 1.12.9 1.57L40 44.94A3.5 3.5 0 1 0 44.94 40l-9.82-9.82c-.45-.45-1-.75-1.57-.9A18.5 18.5 0 0 0 18.5 0ZM2 18.5a16.5 16.5 0 1 1 33 0 16.5 16.5 0 0 1-33 0Zm29.58 15.2a1.5 1.5 0 1 1 2.12-2.12l9.83 9.83a1.5 1.5 0 1 1-2.12 2.12l-9.83-9.83Z" data-webtasks-id="78a6ba45-b6cd-42bb"></path></svg>
</div>
<p class="flex--item wmx2 fc-black-500" data-webtasks-id="a3351ffd-020b-4768">
Watch tags to curate your list of questions. </p>
<a class="js-show-add-watched flex--item s-btn s-btn__filled s-btn__sm s-btn__icon d-none" data-webtasks-id="f1f2b7ec-8fdb-4b90"><svg aria-hidden="true" class="svg-icon iconEye" width="18" height="18" viewBox="0 0 18 18" data-webtasks-id="ae6a907b-1867-4f2e"><path d="M9.06 3C4 3 1 9 1 9s3 6 8.06 6C14 15 17 9 17 9s-3-6-7.94-6ZM9 13a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm0-2a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2Z" data-webtasks-id="51ce8623-d036-4227"></path></svg> Watch a tag</a>
</div>
</div>
</div>
<div class="-ignored s-sidebarwidget mb16" data-webtasks-id="1f430aa6-7dd7-486c">
<div class="s-sidebarwidget--header d-flex" data-webtasks-id="05d3590d-5c6b-442b">
<h2 class="flex--item fl1 mb0 fs-body2" id="js-add-ignored-label" data-webtasks-id="e578545d-b1fd-4315">Ignored Tags</h2>
<a class="js-edit-ignored-tags flex--item ml12 d-none" href="/users/tag-notifications/136878#ignored-273" aria-label="edit your ignored tags" data-webtasks-id="f0547d07-8095-4eda">edit</a>
</div>
<div class="s-sidebarwidget--content fd-column" data-webtasks-id="dd9a4eb5-8c98-4eb5">
<div class="js-ignored-tag-list d-flex gs4 py4 fw-wrap ai-baseline d-none" data-webtasks-id="fc0d2de3-e7c8-45cd">
<script type="text/html" class="js-tag-template" data-webtasks-id="1a2125c4-7f87-4e26"></script>
</div>
<div class="js-add-ignored-container" data-webtasks-id="fa33b917-c76e-4552"></div>
<button class="js-show-add-ignored none mx-auto d-inline-block s-btn s-btn__filled s-btn__sm" data-webtasks-id="31fd0fce-191c-467f">Add an ignored tag</button>
<div class="js-ignored-edit-visible mt8 d-none" data-webtasks-id="65c3a169-661a-4a7b">
<div class="d-flex ai-center" data-webtasks-id="2c48c1c2-7efe-4060">
<div class="flex--item mr8" data-webtasks-id="e41945ba-1d06-4a4a"><input type="radio" name="hideIgnored" class="js-hide-ignored s-radio" id="6d02908b-dc7a-4a04-863e-5115b0d5dd79-on" data-webtasks-id="fc8315a6-943b-4d24"></div>
<label for="6d02908b-dc7a-4a04-863e-5115b0d5dd79-on" class="flex--item s-label fs-body1 fw-normal" data-webtasks-id="9d56df7f-01fe-4693">Hide questions in your ignored tags</label>
</div>
<div class="d-flex ai-center" data-webtasks-id="9ca960b1-04d0-4adc">
<div class="flex--item mr8" data-webtasks-id="636b948c-9700-4138"><input type="radio" name="hideIgnored" class="js-dim-ignored s-radio" id="6d02908b-dc7a-4a04-863e-5115b0d5dd79-off" checked="checked" data-webtasks-id="78911400-6664-421f"></div>
<label for="6d02908b-dc7a-4a04-863e-5115b0d5dd79-off" class="flex--item s-label fs-body1 fw-normal" data-webtasks-id="659a6fa2-b837-4076">Gray out questions in your ignored tags</label>
</div>
</div>
</div>
</div>
</div>
<script data-webtasks-id="ead02846-a328-4a9b">
StackExchange.ready(function() {
StackExchange.tagPreferences.applyPrefs(true, [], undefined);
});
</script>
<div class="js-sidebar-zone" data-webtasks-id="ae4a2d26-d1a8-43c8">
<style data-webtasks-id="bf87ae2b-3450-41b6">
</style>
<div class="js-zone-container zone-container-sidebar" data-webtasks-id="5a0861c8-1d8b-4b51">
<div id="dfp-tsb" class="everyonelovesstackoverflow everyoneloves__top-sidebar" data-dfp-zone="true" data-webtasks-id="e50f5f8b-1ceb-4fbb" style="min-height: auto; height: auto; display: none;" data-google-query-id="CIbXvIWsg4ADFckctwAddUkARQ"><div id="google_ads_iframe_/248424177/travel.stackexchange.com/sb/question-pages_0__container__" data-webtasks-id="8475963e-596c-4678" style="border: 0pt none; width: 300px; height: 0px;"></div></div>
<div class="js-report-ad-button-container " style="width: 300px" data-webtasks-id="2fb63485-a6d3-42ec"></div>
</div>
</div>
<div class="module js-gps-related-tags" id="related-tags" data-webtasks-id="abacd8d9-a23b-46b5">
<h2 id="h-related-tags" class="fc-black-700" data-webtasks-id="a05f9a4d-bfc7-4660">Related Tags</h2>
<div data-name="visas" data-webtasks-id="7c514d0e-1092-465a">
<a href="/questions/tagged/visas" class="post-tag no-tag-menu" title="show questions tagged 'visas'" aria-label="show questions tagged 'visas'" rel="tag" data-webtasks-id="6ee7c036-0020-4c39">visas</a> <span class="item-multiplier" data-webtasks-id="45c17e32-2a45-4dcc"><span class="item-multiplier-x" data-webtasks-id="db1feb7c-21bd-41fc">×</span> <span class="item-multiplier-count" data-webtasks-id="3de56b52-c1e4-41df">10166</span> </span>
</div>
<div data-name="usa" data-webtasks-id="3cc21919-9b68-454e">
<a href="/questions/tagged/usa" class="post-tag no-tag-menu" title="show questions tagged 'usa'" aria-label="show questions tagged 'usa'" rel="tag" data-webtasks-id="57e3a20d-79da-453e">usa</a> <span class="item-multiplier" data-webtasks-id="eb8c1dfd-2c34-41a4"><span class="item-multiplier-x" data-webtasks-id="d49a988e-f399-4de5">×</span> <span class="item-multiplier-count" data-webtasks-id="29ba1154-a5be-48d6">5682</span> </span>
</div>
<div data-name="uk" data-webtasks-id="64d1d554-a804-44a2">
<a href="/questions/tagged/uk" class="post-tag no-tag-menu" title="show questions tagged 'uk'" aria-label="show questions tagged 'uk'" rel="tag" data-webtasks-id="408016a9-5333-43a9">uk</a> <span class="item-multiplier" data-webtasks-id="22100ce2-99f4-430d"><span class="item-multiplier-x" data-webtasks-id="77b23f65-4d38-44b4">×</span> <span class="item-multiplier-count" data-webtasks-id="af60fbf1-8329-4c63">5064</span> </span>
</div>
<div data-name="air-travel" data-webtasks-id="b1f5bbbf-e6d9-496e">
<a href="/questions/tagged/air-travel" class="post-tag no-tag-menu" title="show questions tagged 'air-travel'" aria-label="show questions tagged 'air-travel'" rel="tag" data-webtasks-id="38ed798f-c2c2-4dcc">air-travel</a> <span class="item-multiplier" data-webtasks-id="daff6047-f31f-447d"><span class="item-multiplier-x" data-webtasks-id="9d369c4e-0071-44bc">×</span> <span class="item-multiplier-count" data-webtasks-id="0550af2b-c97f-4f5e">4877</span> </span>
</div>
<div data-name="customs-and-immigration" data-webtasks-id="35a9db1e-84c4-438c">
<a href="/questions/tagged/customs-and-immigration" class="post-tag no-tag-menu" title="show questions tagged 'customs-and-immigration'" aria-label="show questions tagged 'customs-and-immigration'" rel="tag" data-webtasks-id="e278520e-59f0-47fb">customs-and-immigration</a> <span class="item-multiplier" data-webtasks-id="95fa7c6d-0b74-4168"><span class="item-multiplier-x" data-webtasks-id="d1dd86da-43a5-44dc">×</span> <span class="item-multiplier-count" data-webtasks-id="520c69b2-9283-420d">3908</span> </span>
</div>
<div data-name="schengen" data-webtasks-id="77b62f38-37c7-4c4a">
<a href="/questions/tagged/schengen" class="post-tag no-tag-menu" title="show questions tagged 'schengen'" aria-label="show questions tagged 'schengen'" rel="tag" data-webtasks-id="30ca3d5c-ddc7-4f25">schengen</a> <span class="item-multiplier" data-webtasks-id="19637661-1892-448e"><span class="item-multiplier-x" data-webtasks-id="279f4b6a-699b-4a16">×</span> <span class="item-multiplier-count" data-webtasks-id="8b0c0664-bd50-4c03">3600</span> </span>
</div>
<div data-name="transit" data-webtasks-id="9d467039-3e56-4f52">
<a href="/questions/tagged/transit" class="post-tag no-tag-menu" title="show questions tagged 'transit'" aria-label="show questions tagged 'transit'" rel="tag" data-webtasks-id="41705589-081a-49ca">transit</a> <span class="item-multiplier" data-webtasks-id="161f5d91-3a76-44eb"><span class="item-multiplier-x" data-webtasks-id="16da9d96-2e55-4985">×</span> <span class="item-multiplier-count" data-webtasks-id="578d2868-f609-4478">2281</span> </span>
</div>
<div data-name="passports" data-webtasks-id="098a2999-2a92-4bb4">
<a href="/questions/tagged/passports" class="post-tag no-tag-menu" title="show questions tagged 'passports'" aria-label="show questions tagged 'passports'" rel="tag" data-webtasks-id="d0564ea3-fa88-4b86">passports</a> <span class="item-multiplier" data-webtasks-id="492ad71d-0032-44cb"><span class="item-multiplier-x" data-webtasks-id="168a2e9c-e8a5-416a">×</span> <span class="item-multiplier-count" data-webtasks-id="df57fb19-99ab-4c00">1910</span> </span>
</div>
<div data-name="indian-citizens" data-webtasks-id="6831e568-1981-4e82">
<a href="/questions/tagged/indian-citizens" class="post-tag no-tag-menu" title="show questions tagged 'indian-citizens'" aria-label="show questions tagged 'indian-citizens'" rel="tag" data-webtasks-id="a9d5d634-b3a9-48d2">indian-citizens</a> <span class="item-multiplier" data-webtasks-id="e49d0f1f-9564-4fa9"><span class="item-multiplier-x" data-webtasks-id="30ceea26-e4e8-4a14">×</span> <span class="item-multiplier-count" data-webtasks-id="23bb3e0e-3e4e-4b5a">1843</span> </span>
</div>
<div data-name="trains" data-webtasks-id="8a8a921e-8180-43ad">
<a href="/questions/tagged/trains" class="post-tag no-tag-menu" title="show questions tagged 'trains'" aria-label="show questions tagged 'trains'" rel="tag" data-webtasks-id="4d114c49-95ca-451c">trains</a> <span class="item-multiplier" data-webtasks-id="bae2f13c-b3fe-469e"><span class="item-multiplier-x" data-webtasks-id="7fd75eaf-7b7f-4f2c">×</span> <span class="item-multiplier-count" data-webtasks-id="1c98dbca-46e3-4581">1682</span> </span>
</div>
<div class="dno js-hidden" data-name="canada" data-webtasks-id="daf5ccbe-5dcc-4d96">
<a href="/questions/tagged/canada" class="post-tag no-tag-menu" title="show questions tagged 'canada'" aria-label="show questions tagged 'canada'" rel="tag" data-webtasks-id="decdc0c1-b23b-4ec4">canada</a> <span class="item-multiplier" data-webtasks-id="bfae30a7-67af-44aa"><span class="item-multiplier-x" data-webtasks-id="8fc07a39-77c5-4d4b">×</span> <span class="item-multiplier-count" data-webtasks-id="74f904d9-635a-4647">1615</span> </span>
</div>
<div class="dno js-hidden" data-name="luggage" data-webtasks-id="fb34e98b-5e4d-4561">
<a href="/questions/tagged/luggage" class="post-tag no-tag-menu" title="show questions tagged 'luggage'" aria-label="show questions tagged 'luggage'" rel="tag" data-webtasks-id="bb4ee209-5ef8-43d8">luggage</a> <span class="item-multiplier" data-webtasks-id="9dfed73e-7edb-4b30"><span class="item-multiplier-x" data-webtasks-id="925a80f6-688f-40c2">×</span> <span class="item-multiplier-count" data-webtasks-id="f6fb756d-f54d-419c">1457</span> </span>
</div>
<div class="dno js-hidden" data-name="international-travel" data-webtasks-id="852af64c-34ba-47a6">
<a href="/questions/tagged/international-travel" class="post-tag no-tag-menu" title="show questions tagged 'international-travel'" aria-label="show questions tagged 'international-travel'" rel="tag" data-webtasks-id="c6a58d59-eaa8-4dc9">international-travel</a> <span class="item-multiplier" data-webtasks-id="1a8c212e-511f-4fbd"><span class="item-multiplier-x" data-webtasks-id="6373a591-4385-4ae1">×</span> <span class="item-multiplier-count" data-webtasks-id="1a4bc2f2-5ca2-4256">1391</span> </span>
</div>
<div class="dno js-hidden" data-name="tickets" data-webtasks-id="7c4815b5-0d7d-4109">
<a href="/questions/tagged/tickets" class="post-tag no-tag-menu" title="show questions tagged 'tickets'" aria-label="show questions tagged 'tickets'" rel="tag" data-webtasks-id="b84ad459-01f0-4b29">tickets</a> <span class="item-multiplier" data-webtasks-id="e1d41767-1b7c-45b3"><span class="item-multiplier-x" data-webtasks-id="5733426e-1466-44d3">×</span> <span class="item-multiplier-count" data-webtasks-id="72632f23-efe0-4294">1369</span> </span>
</div>
<div class="dno js-hidden" data-name="paperwork" data-webtasks-id="90a7f871-92c8-4900">
<a href="/questions/tagged/paperwork" class="post-tag no-tag-menu" title="show questions tagged 'paperwork'" aria-label="show questions tagged 'paperwork'" rel="tag" data-webtasks-id="faf536a2-3a56-4e58">paperwork</a> <span class="item-multiplier" data-webtasks-id="efaea099-d259-44ff"><span class="item-multiplier-x" data-webtasks-id="403af1a6-8e2d-46f7">×</span> <span class="item-multiplier-count" data-webtasks-id="e49005f5-3808-4cf1">1317</span> </span>
</div>
<div class="dno js-hidden" data-name="germany" data-webtasks-id="a9905eae-e0d2-46df">
<a href="/questions/tagged/germany" class="post-tag no-tag-menu" title="show questions tagged 'germany'" aria-label="show questions tagged 'germany'" rel="tag" data-webtasks-id="359c8f29-051e-4cbf">germany</a> <span class="item-multiplier" data-webtasks-id="d51cbfda-adef-4c76"><span class="item-multiplier-x" data-webtasks-id="0170f3cb-8f99-45f3">×</span> <span class="item-multiplier-count" data-webtasks-id="f29207c0-9070-403b">1289</span> </span>
</div>
<div class="dno js-hidden" data-name="public-transport" data-webtasks-id="74a821a5-382e-4336">
<a href="/questions/tagged/public-transport" class="post-tag no-tag-menu" title="show questions tagged 'public-transport'" aria-label="show questions tagged 'public-transport'" rel="tag" data-webtasks-id="33b90282-0fe3-444c">public-transport</a> <span class="item-multiplier" data-webtasks-id="46eacd3c-dbcd-4df3"><span class="item-multiplier-x" data-webtasks-id="924c41fb-f681-40e6">×</span> <span class="item-multiplier-count" data-webtasks-id="92f1bb10-65d9-49ff">1282</span> </span>
</div>
<div class="dno js-hidden" data-name="visa-refusals" data-webtasks-id="dd9f96ae-7da4-469f">
<a href="/questions/tagged/visa-refusals" class="post-tag no-tag-menu" title="show questions tagged 'visa-refusals'" aria-label="show questions tagged 'visa-refusals'" rel="tag" data-webtasks-id="79c4a093-31c1-47db">visa-refusals</a> <span class="item-multiplier" data-webtasks-id="6b5397e5-14dc-4500"><span class="item-multiplier-x" data-webtasks-id="a0e0977b-7acb-4e47">×</span> <span class="item-multiplier-count" data-webtasks-id="5eee662e-302d-4a22">1267</span> </span>
</div>
<div class="dno js-hidden" data-name="schengen-visas" data-webtasks-id="40aa9027-de66-4e10">
<a href="/questions/tagged/schengen-visas" class="post-tag no-tag-menu" title="show questions tagged 'schengen-visas'" aria-label="show questions tagged 'schengen-visas'" rel="tag" data-webtasks-id="f978162d-1f35-4fc2">schengen-visas</a> <span class="item-multiplier" data-webtasks-id="cf30ea3e-c84d-4073"><span class="item-multiplier-x" data-webtasks-id="3e4bfd54-1031-41e6">×</span> <span class="item-multiplier-count" data-webtasks-id="9d4aa912-8454-4fd7">1231</span> </span>
</div>
<div class="dno js-hidden" data-name="airports" data-webtasks-id="f8cbd697-89c6-46d3">
<a href="/questions/tagged/airports" class="post-tag no-tag-menu" title="show questions tagged 'airports'" aria-label="show questions tagged 'airports'" rel="tag" data-webtasks-id="41c48647-401c-4e3c">airports</a> <span class="item-multiplier" data-webtasks-id="309d587b-8900-49a2"><span class="item-multiplier-x" data-webtasks-id="e7429e67-0abf-4494">×</span> <span class="item-multiplier-count" data-webtasks-id="ac1fcd86-5c01-4ffb">1181</span> </span>
</div>
<div class="dno js-hidden" data-name="europe" data-webtasks-id="2f9b1490-2286-420f">
<a href="/questions/tagged/europe" class="post-tag no-tag-menu" title="show questions tagged 'europe'" aria-label="show questions tagged 'europe'" rel="tag" data-webtasks-id="7d75afe5-e51d-494e">europe</a> <span class="item-multiplier" data-webtasks-id="46916ab4-9578-4793"><span class="item-multiplier-x" data-webtasks-id="ac2ae0c4-6541-4455">×</span> <span class="item-multiplier-count" data-webtasks-id="e4a7f0bc-065a-485d">1154</span> </span>
</div>
<div class="dno js-hidden" data-name="legal" data-webtasks-id="a447377a-d307-44ff">
<a href="/questions/tagged/legal" class="post-tag no-tag-menu" title="show questions tagged 'legal'" aria-label="show questions tagged 'legal'" rel="tag" data-webtasks-id="c544cbc7-9414-4010">legal</a> <span class="item-multiplier" data-webtasks-id="8d8bc21d-a309-4b6e"><span class="item-multiplier-x" data-webtasks-id="c917e7a2-b3e7-45df">×</span> <span class="item-multiplier-count" data-webtasks-id="4dd9c44b-01c6-4674">1087</span> </span>
</div>
<div class="dno js-hidden" data-name="india" data-webtasks-id="7f32e62e-1711-4170">
<a href="/questions/tagged/india" class="post-tag no-tag-menu" title="show questions tagged 'india'" aria-label="show questions tagged 'india'" rel="tag" data-webtasks-id="0c600b9d-65e1-4044">india</a> <span class="item-multiplier" data-webtasks-id="39bd46de-2393-4d2f"><span class="item-multiplier-x" data-webtasks-id="4b6a01d7-180d-42e9">×</span> <span class="item-multiplier-count" data-webtasks-id="0385c1f7-1a26-46e8">1084</span> </span>
</div>
<div class="dno js-hidden" data-name="france" data-webtasks-id="03260f56-11a7-4810">
<a href="/questions/tagged/france" class="post-tag no-tag-menu" title="show questions tagged 'france'" aria-label="show questions tagged 'france'" rel="tag" data-webtasks-id="2aacf72e-25dc-4926">france</a> <span class="item-multiplier" data-webtasks-id="ccc19306-20e7-40ff"><span class="item-multiplier-x" data-webtasks-id="5fc0bcf6-a16f-46ff">×</span> <span class="item-multiplier-count" data-webtasks-id="1eac1f4c-a9cc-46f3">1067</span> </span>
</div>
<div class="dno js-hidden" data-name="transit-visas" data-webtasks-id="e1052a99-da22-46db">
<a href="/questions/tagged/transit-visas" class="post-tag no-tag-menu" title="show questions tagged 'transit-visas'" aria-label="show questions tagged 'transit-visas'" rel="tag" data-webtasks-id="eda4ea72-8a10-405f">transit-visas</a> <span class="item-multiplier" data-webtasks-id="cc9dfa3c-daa0-4a5a"><span class="item-multiplier-x" data-webtasks-id="440354c1-5fe0-4488">×</span> <span class="item-multiplier-count" data-webtasks-id="32d09371-b89e-482b">1042</span> </span>
</div>
<a href="#" class="show-more js-show-more js-gps-track" data-gps-track="related_tags.click({ item_type:2 })" data-webtasks-id="126f0a73-c894-4b99">
more related tags
</a>
<script data-webtasks-id="9a2e7e6f-0a0c-4d52">
StackExchange.ready(function () {
var $div = $('#h-related-tags').parent();
$div.find('.js-show-more').click(function () {
$div.find('.js-hidden').show();
$(this).remove();
return false;
});
});
</script>
</div>
<div id="hot-network-questions" class="module tex2jax_ignore" data-webtasks-id="40463404-fd3c-484b">
<h4 data-webtasks-id="859decd6-a394-4550">
<a href="https://stackexchange.com/questions?tab=hot" class="js-gps-track s-link s-link__inherit" data-gps-track="posts_hot_network.click({ item_type:1, location:9 })" data-webtasks-id="26dad1fa-2b79-4dcc">
Hot Network Questions
</a>
</h4>
<ul data-webtasks-id="45f88b01-7109-402a">
<li data-webtasks-id="ff45117d-a8e6-49f8">
<div class="favicon favicon-music" title="Music: Practice & Theory Stack Exchange" data-webtasks-id="e675b795-10f1-4484"></div><a href="https://music.stackexchange.com/questions/130794/lilypond-on-the-fly-print-page-number-check-first-not-working-in-version-2" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:240 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="48c739d2-6895-499e">
Lilypond - '\on-the-fly #print-page-number-check-first' not working in version 2.24.1 anymore
</a>
</li>
<li data-webtasks-id="b1623e40-d111-410b">
<div class="favicon favicon-puzzling" title="Puzzling Stack Exchange" data-webtasks-id="d4c983d3-0123-413e"></div><a href="https://puzzling.stackexchange.com/questions/121481/how-far-on-average-does-the-grasshopper-need-to-travel-to-get-home-after-its-dru" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:559 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="91ddbf5b-af73-4d05">
How far on average does the grasshopper need to travel to get home after its drunken jumping spree?
</a>
</li>
<li data-webtasks-id="3891c72e-0adc-45af">
<div class="favicon favicon-christianity" title="Christianity Stack Exchange" data-webtasks-id="09f1b131-bfa4-4fdb"></div><a href="https://christianity.stackexchange.com/questions/96138/if-and-when-a-catholic-priest-may-reveal-something-from-a-penitents-confession" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:304 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="a24ff418-639c-4a83">
If and When a Catholic Priest May Reveal Something from a Penitent's Confession
</a>
</li>
<li data-webtasks-id="1742bc09-1cbf-470b">
<div class="favicon favicon-langdev" title="Programming Language Design and Implementation Stack Exchange" data-webtasks-id="f55bf1a5-f72d-481c"></div><a href="https://langdev.stackexchange.com/questions/2134/what-languages-give-you-access-to-the-ast-to-modify-during-compilation" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:716 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="8cfd93cc-7028-4aa8">
What languages give you access to the AST to modify during compilation?
</a>
</li>
<li data-webtasks-id="43d1ffce-55af-4c93">
<div class="favicon favicon-math" title="Mathematics Stack Exchange" data-webtasks-id="251b457b-4398-46b1"></div><a href="https://math.stackexchange.com/questions/4733399/epsilon-delta-is-super-redundant-isnt-it" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:69 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="3982b686-34b6-4812">
Epsilon delta is super redundant, isn't it?
</a>
</li>
<li data-webtasks-id="8d57d345-3c7b-4894">
<div class="favicon favicon-latin" title="Latin Language Stack Exchange" data-webtasks-id="053fa520-4e43-475d"></div><a href="https://latin.stackexchange.com/questions/21223/minae-quibus-usque-ad-mortem-timeri-parum-est" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:644 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="2c05644c-28f0-4f0e">
"minae quibus usque ad mortem timeri parum est."
</a>
</li>
<li data-webtasks-id="52626a0b-5e61-42ca">
<div class="favicon favicon-politics" title="Politics Stack Exchange" data-webtasks-id="0a474359-28fa-408e"></div><a href="https://politics.stackexchange.com/questions/80253/is-there-a-legal-way-for-a-country-to-gain-territory-from-another-through-a-refe" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:475 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="36caf205-90fb-43e6">
Is there a legal way for a country to gain territory from another through a referendum?
</a>
</li>
<li data-webtasks-id="e0411795-d08b-43c9">
<div class="favicon favicon-worldbuilding" title="Worldbuilding Stack Exchange" data-webtasks-id="dfe68321-95a2-473b"></div><a href="https://worldbuilding.stackexchange.com/questions/247882/what-would-stop-a-large-spaceship-from-looking-like-a-flying-brick" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:579 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="00ba0617-5d06-487c">
What would stop a large spaceship from looking like a flying brick?
</a>
</li>
<li data-webtasks-id="f33445a5-8650-4904">
<div class="favicon favicon-codegolf" title="Code Golf Stack Exchange" data-webtasks-id="12b1e220-81b1-4106"></div><a href="https://codegolf.stackexchange.com/questions/262518/landmine-number-i" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:200 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="3f0bc621-bb12-4ad1">
Landmine Number I
</a>
</li>
<li data-webtasks-id="c7a19b00-e458-4f96">
<div class="favicon favicon-english" title="English Language & Usage Stack Exchange" data-webtasks-id="e4c4f1c9-19c6-4075"></div><a href="https://english.stackexchange.com/questions/609812/preposition-to-followed-by-gerund-in-steinbeck-started-the-little-wind-to-mo" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:97 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="003db8c8-32a9-4737">
Preposition ‘to’ followed by gerund in Steinbeck: “started the little wind to moving among the leaves”
</a>
</li>
<li data-webtasks-id="9e57915f-2067-4b5b">
<div class="favicon favicon-langdev" title="Programming Language Design and Implementation Stack Exchange" data-webtasks-id="f6c56823-8442-40d7"></div><a href="https://langdev.stackexchange.com/questions/2163/why-add-an-increment-decrement-operator-when-compound-assignments-exist" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:716 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="5d047633-c15c-4349">
Why add an increment/decrement operator when compound assignments exist?
</a>
</li>
<li data-webtasks-id="a0a26429-b461-44a5">
<div class="favicon favicon-ell" title="English Language Learners Stack Exchange" data-webtasks-id="2bb930fd-915b-42da"></div><a href="https://ell.stackexchange.com/questions/338526/the-neuroscientist-says-baby-approved-what-does-that-mean" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:481 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="6a7904e4-fa94-4513">
The neuroscientist says "Baby approved!" What does that mean?
</a>
</li>
<li class="js-hidden" style="" data-webtasks-id="2eee039a-898f-440a">
<div class="favicon favicon-physics" title="Physics Stack Exchange" data-webtasks-id="de16869e-22d5-4135"></div><a href="https://physics.stackexchange.com/questions/771210/will-just-the-increase-in-height-of-water-column-increase-pressure-or-does-mass" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:151 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="124d7b26-2c23-41f3">
Will just the increase in height of water column increase pressure or does mass play any role in it?
</a>
</li>
<li class="js-hidden" style="" data-webtasks-id="48b7d7b7-6b5e-4adf">
<div class="favicon favicon-softwareengineering" title="Software Engineering Stack Exchange" data-webtasks-id="2d09fdc9-f6ba-4e26"></div><a href="https://softwareengineering.stackexchange.com/questions/446403/is-password-hashing-bad" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:131 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="e31381f5-42ee-4dcf">
Is Password Hashing Bad?
</a>
</li>
<li class="js-hidden" style="" data-webtasks-id="7ddc4b79-cf7f-4ef4">
<div class="favicon favicon-academia" title="Academia Stack Exchange" data-webtasks-id="a29c0585-df35-4f80"></div><a href="https://academia.stackexchange.com/questions/198612/typo-in-cover-letter-of-the-journal-name-where-my-manuscript-is-currently-under" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:415 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="36714ad3-e09f-4798">
Typo in cover letter of the journal name where my manuscript is currently under review
</a>
</li>
<li class="js-hidden" style="" data-webtasks-id="2fa3a0bb-d246-40bc">
<div class="favicon favicon-ell" title="English Language Learners Stack Exchange" data-webtasks-id="656cff37-9e40-4df9"></div><a href="https://ell.stackexchange.com/questions/338634/adjectives-ending-in-ical-vs-those-ending-in-ic" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:481 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="5ba8602b-e26c-4251">
Adjectives ending in -ical vs those ending in -ic
</a>
</li>
<li class="js-hidden" style="" data-webtasks-id="735724ea-2997-473e">
<div class="favicon favicon-langdev" title="Programming Language Design and Implementation Stack Exchange" data-webtasks-id="757491b9-50d8-4f99"></div><a href="https://langdev.stackexchange.com/questions/2128/why-do-keywords-have-to-be-reserved-words" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:716 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="475a38e5-6b6c-4510">
Why do keywords have to be reserved words?
</a>
</li>
<li class="js-hidden" style="" data-webtasks-id="c2a761d1-e9b2-4276">
<div class="favicon favicon-codegolf" title="Code Golf Stack Exchange" data-webtasks-id="26ae972f-2de7-4c2a"></div><a href="https://codegolf.stackexchange.com/questions/262553/landmine-number-ii" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:200 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="99f15f79-4c96-4a08">
Landmine Number II
</a>
</li>
<li class="js-hidden" style="" data-webtasks-id="fc192672-5c10-4364">
<div class="favicon favicon-electronics" title="Electrical Engineering Stack Exchange" data-webtasks-id="f92a0802-739b-4f87"></div><a href="https://electronics.stackexchange.com/questions/673323/do-hard-ips-in-fpga-require-instantiation" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:135 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="9cd06554-2718-4d02">
Do Hard IPs in FPGA require instantiation?
</a>
</li>
<li class="js-hidden" style="" data-webtasks-id="6a6d5252-11f1-4a3b">
<div class="favicon favicon-codegolf" title="Code Golf Stack Exchange" data-webtasks-id="d06c0528-f75c-4204"></div><a href="https://codegolf.stackexchange.com/questions/262512/generate-all-linked-chains" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:200 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="55eb872d-5f82-4845">
Generate all linked chains
</a>
</li>
<li class="js-hidden" style="" data-webtasks-id="c20564df-c065-43c0">
<div class="favicon favicon-politics" title="Politics Stack Exchange" data-webtasks-id="10567c7f-b6d0-41cf"></div><a href="https://politics.stackexchange.com/questions/80306/what-would-be-the-terminology-for-a-state-that-has-democracy-but-is-also-totalit" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:475 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="bc32525d-f634-4788">
What would be the terminology for a state that has democracy but is also totalitarian?
</a>
</li>
<li class="js-hidden" style="" data-webtasks-id="9bc536ed-a4dd-4677">
<div class="favicon favicon-unix" title="Unix & Linux Stack Exchange" data-webtasks-id="e29183bc-7cd2-4025"></div><a href="https://unix.stackexchange.com/questions/750951/is-there-any-potential-negative-effect-of-adding-something-to-the-path-variable" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:106 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="0b993b86-625e-4608">
Is there any potential negative effect of adding something to the PATH variable that is not yet installed on the system?
</a>
</li>
<li class="js-hidden" style="" data-webtasks-id="3948f2a2-2f1c-4164">
<div class="favicon favicon-aviation" title="Aviation Stack Exchange" data-webtasks-id="0f1dbeb0-950c-419e"></div><a href="https://aviation.stackexchange.com/questions/99882/ok-i-searched-whats-this-part-on-the-inner-part-of-the-wing-on-a-cessna-152" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:528 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="b3a85071-2bbc-4a07">
Ok, I searched, what's this part on the inner part of the wing on a Cessna 152 - opposite of the thermometer
</a>
</li>
<li class="js-hidden" style="" data-webtasks-id="b165076a-53bf-47fa">
<div class="favicon favicon-stackoverflow" title="Stack Overflow" data-webtasks-id="4191eeba-7d4f-499c"></div><a href="https://stackoverflow.com/questions/76646533/how-to-perfect-forward-variadic-template-args-with-default-argument-stdsource" class="js-gps-track question-hyperlink mb0" data-gps-track="site.switch({ item_type:9, target_site:1 }); posts_hot_network.click({ item_type:2, location:9 })" data-webtasks-id="a4d3dd48-ffb9-49c7">
How to perfect forward variadic template args with default argument std::source_location?
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<script type="text/javascript" data-webtasks-id="2e943cc5-50f4-456c">
var cam = cam || { opt: {} };
var clcGamLoaderOptions = cam || { opt: {} };
var opt = clcGamLoaderOptions.opt;
opt.refresh = !1;
opt.refreshInterval = 0;
opt.sf = !1;
opt.hb = !1;
opt.ll = !0;
opt.tlb_position = 0;
opt.personalization_consent = !1;
opt.targeting_consent = !1;
opt.performance_consent = !1;
opt.targeting = {Registered:['true']};
opt.adReportEnabled = !0;
opt.adReportUrl = '/ads/report-ad';
opt.adReportText = 'Report this ad';
opt.adReportFileTypeErrorMessage = 'Please select a PNG or JPG file.';
opt.adReportFileSizeErrorMessage = 'The file must be under 2 MiB.';
opt.adReportErrorText = 'Error uploading ad report.';
opt.adReportThanksText = 'Thanks for your feedback. We’ll review this against our code of conduct and take action if necessary.';
opt.adReportLoginExpiredMessage = 'Your login session has expired, please login and try again.';
opt.adReportLoginErrorMessage = 'An error occurred when loading the report form - please try again';
opt.adReportModalClass = 'js-ad-report';
opt.requestGuid = 'b0ae9639-bef6-40f9-9700-94536f188a61';
opt.targeting.TargetingConsent = ['False_Active'];
const urlParams = new URLSearchParams(window.location.search);
if (urlParams.has('dfptestads')) {
const dfptestads = urlParams.get('dfptestads');
opt.targeting.DfpTestAds = dfptestads;
}
</script>
<script data-webtasks-id="e4d60ef6-df8c-4c39">;(()=>{"use strict";var __webpack_modules__={23:(e,t,o)=>{o.d(t,{Z7:()=>l,eq:()=>r,kG:()=>n});const s=/^\/tags\//.test(location.pathname)||/^\/questions\/tagged\//.test(location.pathname)?"tag-pages":/^\/$/.test(location.pathname)||/^\/home/.test(location.pathname)?"home-page":"question-pages";let a=location.hostname;const i={slots:{lb:[[728,90]],mlb:[[728,90]],smlb:[[728,90]],bmlb:[[728,90]],sb:e=>"dfp-tsb"===e?[[300,250],[300,600]]:[[300,250]],"tag-sponsorship":[[730,135]],"mobile-below-question":[[320,50],[300,250]],msb:[[300,250],[300,600]],"talent-conversion-tracking":[[1,1]],"site-sponsorship":[[230,60]]},ids:{"dfp-tlb":"lb","dfp-mlb":"mlb","dfp-smlb":"smlb","dfp-bmlb":"bmlb","dfp-tsb":"sb","dfp-isb":"sb","dfp-tag":"tag-sponsorship","dfp-msb":"msb","dfp-sspon":"site-sponsorship","dfp-m-aq":"mobile-below-question"},idsToExcludeFromAdReports:["dfp-sspon"]};function n(){return Object.keys(i.ids)}function r(e){return i.idsToExcludeFromAdReports.indexOf(e)<0}function l(e){var t=e.split("_")[0];const o=i.ids[t];let n=i.slots[o];return"function"==typeof n&&(n=n(t)),{path:`/248424177/${a}/${o}/${s}`,sizes:n,zone:o}}},865:(e,t,o)=>{function s(e){return"string"==typeof e?document.getElementById(e):e}function a(e){return!!(e=s(e))&&"none"===getComputedStyle(e).display}function i(e){return!a(e)}function n(e){return!!e}function r(e){return/^\s*$/.test(s(e).innerHTML)}function l(e){const{style:t}=e;t.height=t.maxHeight=t.minHeight="auto",t.display="none"}function d(e){const{style:t}=e;t.height=t.maxHeight=t.minHeight="auto",t.display="none",[].forEach.call(e.children,d)}function c(e){const{style:t}=e;t.height=t.maxHeight=t.minHeight="auto",t.removeProperty("display")}function p(e){const t=document.createElement("script");t.src=e,document.body.appendChild(t)}function g(e){return o=e,(t=[]).push=function(e){return o(),delete this.push,this.push(e)},t;var t,o}function h(e){let t="function"==typeof HTMLTemplateElement;var o=document.createElement(t?"template":"div");return e=e.trim(),o.innerHTML=e,t?o.content.firstChild:o.firstChild}o.d(t,{$Z:()=>c,Bv:()=>h,Gx:()=>p,Nj:()=>s,QZ:()=>g,cf:()=>l,pn:()=>i,wo:()=>d,xb:()=>r,xj:()=>a,yb:()=>n})},763:(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{t:()=>AdReports});var _common_helper__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(865),_console__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(276),_ad_units__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(23);class AdReports{constructor(e,t){if(this.googletag=e,this.cam=t,this.allowedFileTypes=["image/png","image/jpg","image/jpeg"],this.ignoreValidation=!1,_console__WEBPACK_IMPORTED_MODULE_1__.cM("Ad reporting init"),this.cam=t,this.callOnButtonClick=e=>this.onButtonClick(e),this.googletag.pubads().addEventListener("slotRenderEnded",e=>this.handleSlotRendered(e)),Array.isArray(t.slotsRenderedEvents)){_console__WEBPACK_IMPORTED_MODULE_1__.cM("Adding report button to "+t.slotsRenderedEvents.length+" events that have transpired");for(var o=0;o<t.slotsRenderedEvents.length;o++)this.handleSlotRendered(t.slotsRenderedEvents[o])}}handleSlotRendered(e){if(e&&e.slot&&!e.isEmpty&&(e.creativeId||e.lineItemId||!e.isEmpty)){var t=e.slot.getSlotElementId();if(t){var o=document.getElementById(t);if(o)if((0,_ad_units__WEBPACK_IMPORTED_MODULE_0__.eq)(t)){var s=o?.closest(".js-zone-container")?.querySelector(".js-report-ad-button-container");s.innerHTML="",s.append(this.createButton(e)),s.style.height="24px",_console__WEBPACK_IMPORTED_MODULE_1__.cM("Added report button to the bottom of "+t)}else _console__WEBPACK_IMPORTED_MODULE_1__.cM("Not adding report button to the bottom of "+t+": shouldHaveReportButton = false");else _console__WEBPACK_IMPORTED_MODULE_1__.cM("Not adding report button to the bottom of "+t+": resolved invalid adUnit element")}else _console__WEBPACK_IMPORTED_MODULE_1__.cM("Not adding report button to the bottom of element: invalid adUnitElementId")}else _console__WEBPACK_IMPORTED_MODULE_1__.cM("Not adding report button to the bottom of element: invalid SlotRenderEndedEvent")}async onButtonClick(e){e.preventDefault();let t=e.target;const o=t.dataset.modalUrl,s=t.dataset.googleEventData;return await this.loadModal(o,t,s),!1}createButton(e){let t=document.createElement("button");var o=JSON.stringify(e);return t.dataset.googleEventData=o,t.dataset.modalUrl=this.cam.opt.adReportUrl,t.dataset.adUnit=e.slot.getSlotElementId(),t.classList.add("js-report-ad","s-btn","s-btn__link","fs-fine","mt2","float-right"),t.append(document.createTextNode(this.cam.opt.adReportText)),t.removeEventListener("click",this.callOnButtonClick),t.addEventListener("click",this.callOnButtonClick),t}async loadModal(url,$link,googleEventData){try{await window.StackExchange.helpers.loadModal(url,{returnElements:window.$($link)}),this.initForm(googleEventData)}catch(e){var message="",response=e.responseText?eval(`(${e.responseText})`):null;message=response&&response.isLoggedOut?this.cam.opt.adReportLoginExpiredMessage:this.cam.opt.adReportLoginErrorMessage,window.StackExchange.helpers.showToast(message,{type:"danger"})}}removeModal(){window.StackExchange.helpers.closePopups(document.querySelectorAll("."+this.cam.opt.adReportModalClass),"dismiss")}initForm(e,t=!1){this.ignoreValidation=t,this.$form=document.querySelector(".js-ad-report-form"),this.$googleEventData=this.$form.querySelector(".js-json-data"),this.$adReportReasons=this.$form.querySelectorAll(".js-ad-report-reason"),this.$adReportReasonOther=this.$form.querySelector(".js-ad-report-reason-other"),this.$fileUploaderInput=this.$form.querySelector(".js-file-uploader-input"),this.$imageUploader=this.$form.querySelector(".js-image-uploader"),this.$clearImageUpload=this.$form.querySelector(".js-clear-image-upload"),this.$imageUploaderText=this.$form.querySelector(".js-image-uploader-text"),this.$imageUploaderPreview=this.$form.querySelector(".js-image-uploader-preview"),this.$fileErrorMessage=this.$form.querySelector(".js-file-error");const o=this.$form.querySelector(".js-drag-drop-enabled"),s=this.$form.querySelector(".js-drag-drop-disabled");this.$googleEventData.value=e,this.$adReportReasons.forEach((e,t)=>e.addEventListener("change",e=>{this.$adReportReasonOther.classList.toggle("d-none","3"!==e.target.value)})),this.$fileUploaderInput.addEventListener("change",()=>{this.validateFileInput()&&this.updateImagePreview(this.$fileUploaderInput.files)}),this.$clearImageUpload.addEventListener("click",e=>{e.preventDefault(),this.clearImageUpload()});try{this.$fileUploaderInput[0].value="",this.$imageUploader.addEventListener("dragenter dragover dragleave drop",this.preventDefaults),this.$imageUploader.addEventListener("dragenter dragover",this.handleDragStart),this.$imageUploader.addEventListener("dragleave drop",this.handleDragEnd),this.$imageUploader.addEventListener("drop",this.handleDrop)}catch(e){o.classList.add("d-none"),s.classList.remove("d-none")}this.$form.removeEventListener("",this.handleDragEnd),this.$form.addEventListener("submit",async e=>(e.preventDefault(),this.submitForm(),!1))}clearImageUpload(){this.$fileUploaderInput.value="",this.$imageUploaderPreview.setAttribute("src",""),this.$imageUploaderPreview.classList.add("d-none"),this.$clearImageUpload.classList.add("d-none"),this.$imageUploaderText.classList.remove("d-none"),this.$imageUploader.classList.add("p16","ba","bas-dashed","bc-black-100")}preventDefaults(e){e.preventDefault(),e.stopPropagation()}handleDragStart(e){this.$imageUploader.classList.remove("bas-dashed"),this.$imageUploader.classList.add("bas-solid","bc-black-100")}handleDragEnd(e){this.$imageUploader.classList.remove("bas-solid","bc-black-100"),this.$imageUploader.classList.add("bas-dashed")}handleDrop(e){var t=e.originalEvent.dataTransfer.files;FileReader&&t&&1===t.length&&(this.$fileUploaderInput.files=t,this.validateFileInput()&&this.updateImagePreview(t))}setError(e){this.$fileErrorMessage.parentElement.classList.toggle("has-error",e)}updateImagePreview(e){this.$imageUploader.classList.remove("p16","ba","bas-dashed","bc-black-100"),this.$clearImageUpload.classList.remove("d-none"),this.$imageUploaderText.classList.add("d-none");var t=new FileReader;t.onload=e=>{null!=e.target&&(this.$imageUploaderPreview.setAttribute("src",e.target.result),this.$imageUploaderPreview.classList.remove("d-none"))},t.readAsDataURL(e[0])}validateFileInput(){if(this.ignoreValidation)return!0;const e=this.cam.opt.adReportFileTypeErrorMessage,t=this.cam.opt.adReportFileSizeErrorMessage;if(null==this.$fileUploaderInput.files)return!1;var o=this.$fileUploaderInput.files[0];return null==o?(this.setError(!0),!1):this.allowedFileTypes.indexOf(o.type)<0?(this.$fileErrorMessage.textContent=e,this.$fileErrorMessage.classList.remove("d-none"),this.setError(!0),!1):o.size>2097152?(this.$fileErrorMessage.textContent=t,this.$fileErrorMessage.classList.remove("d-none"),this.setError(!0),!1):(this.$fileErrorMessage.classList.add("d-none"),this.setError(!1),!0)}async gatherDiagnosticInfo(){return{BrowserVersion:await this.getBrowserVersion()}}getElementSource(e){return e.outerHTML}getNestedIFrameElement(e){var t=e.querySelector("iframe");return t.contentDocument?t.contentDocument.documentElement:t.contentWindow.document.documentElement}async getBrowserVersion(){return await navigator.userAgentData.getHighEntropyValues(["fullVersionList"]).then(e=>JSON.stringify(e.fullVersionList))}async submitForm(){if(!this.validateFileInput())return!1;this.$form.querySelector("[type=submit]").setAttribute("disabled","true");var e=JSON.parse(this.$googleEventData.value||"{}");e.Reason=parseInt(this.$form.querySelector(".js-ad-report-reason:checked").value,10),e.Description=this.$adReportReasonOther.value,this.$googleEventData.value=JSON.stringify(e);var t=new FormData(this.$form);if("1"===t.get("shareDiagnosticInfo")){var o=await this.gatherDiagnosticInfo();Object.keys(o).forEach(e=>t.append(e,o[e]))}try{const e=await window.fetch(this.$form.getAttribute("action"),{method:this.$form.getAttribute("method"),body:t,cache:"no-cache"}),o=e.headers.get("content-type")||"",a=await e.text();if(!e.ok)throw new Error("response not valid");if(0===o.indexOf("text/html")){var s=(0,_common_helper__WEBPACK_IMPORTED_MODULE_2__.Bv)(a);const e=s?s.querySelector(".js-modal-content"):null;if(_console__WEBPACK_IMPORTED_MODULE_1__.cM("$popupContent"),_console__WEBPACK_IMPORTED_MODULE_1__.cM(e),!e)throw new Error(`Could not find .js-modal-content in response from ${this.$form.getAttribute("action")}`);document.querySelector(".js-modal-content").replaceWith(e)}else window.StackExchange.helpers.showToast(this.cam.opt.adReportThanksText,{type:"success"}),this.removeModal()}catch(e){window.StackExchange.helpers.showToast(this.cam.opt.adReportErrorText,{type:"danger"})}finally{let e=this.$form.querySelector("[type=submit]");e&&e.removeAttribute("disabled")}}}},276:(e,t,o)=>{function s(...e){}function a(...e){}o.d(t,{cM:()=>s,vU:()=>a})}},__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var o=__webpack_module_cache__[e]={exports:{}};return __webpack_modules__[e](o,o.exports,__webpack_require__),o.exports}__webpack_require__.d=(e,t)=>{for(var o in t)__webpack_require__.o(t,o)&&!__webpack_require__.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t);var __webpack_exports__={};(()=>{var e=__webpack_require__(276),t=(e=>(e[e.Above=0]="Above",e[e.Below=1]="Below",e))(t||{});const o=Object.assign({},{"lib":"https://cdn.sstatic.net/clc/js/bundles/gam_loader_script/gam_loader_script.bundle.741.17faee8eba9a98950467.min.js","style":null,"u":null,"wa":true,"kt":2000,"tto":true,"h":"clc.stackoverflow.com","allowed":"^(((talent\\.)?stackoverflow)|(blog\\.codinghorror)|(.*\\.googlesyndication)|(serverfault|askubuntu)|([^\\.]+\\.stackexchange))\\.com$","wv":true,"al":false,"abd":true,"cpa_liid":[5882654614],"cpa_cid":[138377597667],"dp":false});var s=__webpack_require__(23),a=__webpack_require__(865),i=__webpack_require__(763);class n{constructor(t,o){this.googletag=t,this.interval=o,e.cM("Ad refresh init. interval: "+o),this.googletag.pubads().addEventListener("impressionViewable",e=>this.onImpressionViewable(e)),e.cM("done enabling ad refresh")}onImpressionViewable(t){var o=t.slot;e.cM("ad refresh - slot "+o.getSlotElementId()+" is viewable, initializing refresh"),this.scheduleRefresh(o)}scheduleRefresh(e){setTimeout(()=>this.refreshAdSlot(e),1e3*this.interval)}refreshAdSlot(t){var o=t.getSlotElementId();this.isElementVisibleInBrowser(o)?(e.cM("refreshing ad slot "+o),googletag.pubads().refresh([t])):(e.cM("refresh skipped this time; ad slot not viewable:"+o),this.scheduleRefresh(t))}isElementVisibleInBrowser(e){var t=document.getElementById(e);if(null!==t){var o=t.getBoundingClientRect();if(o.top>=0&&o.left>=0&&o.bottom<=(window.innerHeight||document.documentElement.clientHeight)&&o.right<=(window.innerWidth||document.documentElement.clientWidth))return!0}return!1}}window.cam=new class{constructor(){this.gptImported=!1,this.collapsed={},e.cM("constructor"),this.clc_options=o,window.clcGamLoaderOptions?Object.assign(this,window.clcGamLoaderOptions):void 0===this.opt&&(this.opt=window.opt)}init(){if(e.cM("init"),void 0===this.opt)throw new Error("opt not set, required by GAM Loader");e.cM("setup message handler"),window.addEventListener("message",e=>{this.onmessage(e)}),this.opt.targeting&&this.opt.targeting.ProductVariant&&"SystemDefault"===this.opt.targeting.ProductVariant[0]&&(window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches?this.opt.targeting.ProductVariant="Dark":this.opt.targeting.ProductVariant="Light")}handleSlotRenderedNoAdReport(){if(googletag.pubads().addEventListener("slotRenderEnded",e=>this.applyExtraMarginBottom(e)),Array.isArray(this.slotsRenderedEvents))for(var e=0;e<this.slotsRenderedEvents.length;e++)this.applyExtraMarginBottom(this.slotsRenderedEvents[e])}onmessage(t){let o="omni";if(t.data&&("string"==typeof t.data||t.data instanceof String)){if(0===t.data.indexOf("get-omni-")){e.cM("Recevied get-omni message, sending back omni");var s=t.source,i=this.opt.omni,n="string"==typeof i?i:"";s.postMessage([o,n,this.opt.requestGuid].join("|"),"*")}else if(0===t.data.indexOf("collapse-")){e.cM("Recevied collapse message, collapse ad iframe"),e.cM(t);for(var r=t.source.window,l=document.getElementsByTagName("IFRAME"),d=0;d<l.length;d++){var c=l[d];if(c.contentWindow==r)return void(0,a.wo)(c.parentElement.parentElement.parentElement)}}else if(0===t.data.indexOf("resize|")){e.cM("Recevied resize message, resize ad iframe"),e.cM(t);let o=this._getFrameByEvent(t),s=t.data.indexOf("|")+1,a=t.data.slice(s),i=parseFloat(a)+.5;e.cM("New iframe height "+i),o.height=i.toString(),o.parentElement.style.height=i.toString()+"px"}else if(0===t.data.indexOf("getmarkup|")){let o=t.data.indexOf("|")+1,s=t.data.slice(o);e.cM("Recevied get markup message: "+s);let a=this._getFrameByEvent(t).closest(".everyonelovesstackoverflow");const i=document.createElement("script");i.dataset.adZoneId=a.id,i.src=s,document.body.appendChild(i)}else if(0===t.data.indexOf("window-location|")){let o=t.data.indexOf("|")+1,s=t.data.slice(o);e.cM("Recevied window location message: "+s),s.startsWith("/")||(s="/"+s),window.open(window.location.protocol+"//"+window.location.host+s,"_blank")}}else e.cM("Received unhandled message")}_getFrameByEvent(e){return Array.from(document.getElementsByTagName("iframe")).filter(t=>t.contentWindow===e.source)[0]}classifyZoneIds(e){const t=e.map(a.Nj).filter(a.yb);return{eligible:t.filter(a.xb).filter(a.pn),ineligible:t.filter(a.xj)}}applyExtraMarginBottom(t){if(t&&t.slot&&!t.isEmpty&&(t.creativeId||t.lineItemId||!t.isEmpty)){var o=t.slot.getSlotElementId();if(o){var a=document.getElementById(o);if(a)if((0,s.eq)(o)){var i=a?.closest(".js-zone-container");i.style.marginBottom="24px",e.cM("Applied extra margin to the bottom of "+o)}else e.cM("Not applying extra margin to the bottom of "+o+": shouldHaveReportButton = false");else e.cM("Not applying extra margin to the bottom of "+o+": resolved invalid adUnit element")}else e.cM("Not applying extra margin to the bottom of element: invalid adUnitElementId")}else e.cM("Not applying extra margin to the bottom of element: invalid SlotRenderEndedEvent")}load(o=(0,s.kG)()){const r=this.opt.tlb_position===t.Above?["dfp-mlb","dfp-smlb"]:["dfp-mlb","dfp-smlb","dfp-tlb"];if(!this.isGptReady())return e.cM("Initializing..."),this.initGpt(),void googletag.cmd.push(()=>this.load(o));this.opt.adReportEnabled?(e.cM("Ad reporting enabled"),this.adReports=new i.t(googletag,this)):(e.cM("Ad reporting not enabled"),this.handleSlotRenderedNoAdReport()),this.opt.refresh?(e.cM("Ad refresh enabled"),this.adRefresh=new n(googletag,this.opt.refreshInterval)):e.cM("Ad refresh not enabled"),e.cM("Attempting to load ads into ids: ",o);const{eligible:l,ineligible:d}=this.classifyZoneIds(o);if(this.initDebugPanel(googletag,l.concat(d)),l.forEach(e=>(0,a.cf)(e)),d.forEach(a.wo),0===l.length)return void e.cM("Found no ad ids on page");e.cM("Eligible ids:",l),this.opt.abd&&this.appendAdblockDetector();var c=googletag.pubads().getSlots().filter(e=>o.indexOf(e.getSlotElementId())>=0);googletag.destroySlots(c),this.opt.sf&&(googletag.pubads().setForceSafeFrame(!0),googletag.pubads().setSafeFrameConfig({allowOverlayExpansion:!0,allowPushExpansion:!0,sandbox:!0})),e.cM("Targeting consent: Checking...");let p=!1,g=!1;void 0!==this.opt.targeting_consent&&(g=!0,e.cM("Targeting consent: Parameter set"),e.cM("Targeting consent: Consent given? ",this.opt.targeting_consent),p=this.opt.targeting_consent),void 0!==this.opt.personalization_consent&&(e.cM("Personalization consent: Parameter set"),e.cM("Personalization consent: Consent given? ",this.opt.personalization_consent),p=p&&this.opt.personalization_consent),p=p&&g,googletag.pubads().setRequestNonPersonalizedAds(p?0:1),p||googletag.pubads().setPrivacySettings({limitedAds:!0}),this.opt.ll||googletag.pubads().enableSingleRequest(),cam.sreEvent||(googletag.pubads().addEventListener("slotRenderEnded",e=>this.onSlotRendered(e)),cam.sreEvent=!0),this.setTargeting(googletag);var h=l.filter(e=>!this.opt.ll||r.indexOf(e.id)<0),m=l.filter(e=>!!this.opt.ll&&r.indexOf(e.id)>=0);e.cM("Up front ids:",h),e.cM("Lazy loaded ids:",m),h.forEach(t=>{e.cM(`Defining ad for element ${t.id}`),this.defineSlot(t.id,googletag),t.setAttribute("data-dfp-zone","true")}),googletag.enableServices(),h.forEach(t=>{e.cM(`Displaying ad for element ${t.id}`),googletag.cmd.push(()=>googletag.display(t.id))}),this.opt.ll&&(e.cM("Enabling lazy loading for GAM"),googletag.pubads().enableLazyLoad({fetchMarginPercent:0,renderMarginPercent:0}),e.cM("Setting up lazy loaded ad units"),m.forEach(t=>{e.cM(`Lazy loading - Defining Slot ${t.id}`),this.defineSlot(t.id,googletag)}),m.forEach(t=>{e.cM(`Lazy loading - Displaying ad for element ${t.id}`),googletag.cmd.push(()=>googletag.display(t.id))}))}setTargeting(t){let o=this.opt.targeting;if(!o)throw new Error("Targeting not defined");Object.keys(o).forEach(s=>{e.cM(`-> targeting - ${s}: ${o[s]}`),t.pubads().setTargeting(s,o[s])})}appendAdblockDetector(){const e=document.createElement("div");e.className="adsbox",e.id="clc-abd",e.style.position="absolute",e.style.pointerEvents="none",e.innerHTML=" ",document.body.appendChild(e)}onSlotRendered(o){try{const n=o.slot.getSlotElementId();let r=[];n||r.push("id=0");const l=document.getElementById(n);if(n&&!l&&r.push("el=0"),0!==r.length)return void this.stalled(r.join("&"));const{path:d,sizes:c,zone:p}=(0,s.Z7)(n);if(this.collapsed[p]&&o.isEmpty)return e.cM(`No line item for the element #${l.id}... collapsing.`),void(0,a.wo)(l);if(this.slotsRenderedEvents.push(o),o.lineItemId||o.creativeId||!o.isEmpty){e.cM(`Rendered ad for element #${l.id} [line item #${o.lineItemId}]`),e.cM(o);var i=l.parentElement;if(i.classList.contains("js-zone-container")){switch((0,a.cf)(i),n){case"dfp-tlb":this.opt.tlb_position===t.Above?i.classList.add("mb8"):i.classList.add("mt16");break;case"dfp-tag":i.classList.add("mb8");break;case"dfp-msb":i.classList.add("mt16");break;case"dfp-mlb":case"dfp-smlb":case"dfp-bmlb":i.classList.add("my8");break;case"dfp-isb":i.classList.add("mt24");break;case"dfp-m-aq":i.classList.add("my12"),i.classList.add("mx-auto")}(0,a.$Z)(i),(0,a.$Z)(l)}else e.cM(`No ad for element #${l.id}, collapsing`),e.cM(o),(0,a.wo)(l)}}catch(e){this.stalled("e=1")}}stalled(e){(new Image).src=`https://${this.clc_options.h}/stalled.gif?${e}`}defineSlot(t,o){"dfp-isb"===t&&(e.cM("-> targeting - Sidebar: Inline"),o.pubads().setTargeting("Sidebar",["Inline"])),"dfp-tsb"===t&&(e.cM("-> targeting - Sidebar: Right"),o.pubads().setTargeting("Sidebar",["Right"]));const{path:a,sizes:i,zone:n}=(0,s.Z7)(t);e.cM(`Defining slot for ${t}: ${a}, sizes: ${JSON.stringify(i)}`),o.defineSlot(a,i,t).addService(o.pubads())}importGptLibrary(){this.gptImported||(this.gptImported=!0,void 0===this.opt.targeting_consent||this.opt.targeting_consent?(0,a.Gx)("https://securepubads.g.doubleclick.net/tag/js/gpt.js"):(0,a.Gx)("https://pagead2.googlesyndication.com/tag/js/gpt.js"))}isGptReady(){return"undefined"!=typeof googletag&&!!googletag.apiReady}initGpt(){"undefined"==typeof googletag&&(window.googletag={cmd:(0,a.QZ)(()=>this.importGptLibrary())})}initDebugPanel(t,o){e.cM("initDebugPanel"),e.cM("Not showing debug panel")}},window.clcGamLoaderOptions&&(cam.init(),cam.load())})()})();</script><script src="https://pagead2.googlesyndication.com/tag/js/gpt.js" data-webtasks-id="df571fec-02f4-4e73"></script>
<footer id="footer" class="site-footer js-footer" role="contentinfo" data-webtasks-id="3949a2d3-09a4-434d">
<div class="site-footer--container" data-webtasks-id="9a388a38-592d-4558">
<nav class="site-footer--nav" data-webtasks-id="7493cf9b-f0d7-4f5c">
<div class="site-footer--col" data-webtasks-id="eb477d8c-6fe8-4a2b">
<h5 class="-title" data-webtasks-id="63eade18-75aa-4b2d"><a href="/" data-webtasks-id="16b73fd6-4781-4a2c">Travel</a></h5>
<ul class="-list js-primary-footer-links" data-webtasks-id="c574dbe9-701f-4881">
<li data-webtasks-id="1f0badd2-f0ee-47ec"><a class="js-gps-track -link" data-gps-track="footer.click({ location: 3, link: 2 })" href="/tour" data-webtasks-id="0eaea363-5131-47c3">Tour</a></li>
<li data-webtasks-id="f6f7a4fc-f8c1-480d"><a href="/help" class="js-gps-track -link" data-gps-track="footer.click({ location: 3, link: 3 })" data-webtasks-id="b3fd6580-65f8-4b27">Help</a></li>
<li data-webtasks-id="1b98945a-ba18-4748"><a class="js-gps-track -link" data-gps-track="footer.click({ location: 3, link: 5 })" href="https://chat.stackexchange.com?tab=site&host=travel.stackexchange.com" data-webtasks-id="54b8efc9-2239-474e">Chat</a></li>
<li data-webtasks-id="6a33f549-e8c9-4440"><a class="js-gps-track -link" data-gps-track="footer.click({ location: 3, link: 13 })" href="/contact" data-webtasks-id="0c9e95c8-936b-4bba">Contact</a></li>
<li data-webtasks-id="69559e8a-75b0-418d"><a class="js-gps-track -link" data-gps-track="footer.click({ location: 3, link: 14 })" href="https://travel.meta.stackexchange.com" data-webtasks-id="bf8bd7a3-2d8a-4d7d">Feedback</a></li>
</ul>
</div>
<div class="site-footer--col" data-webtasks-id="07a38f93-789d-4eb0">
<h5 class="-title" data-webtasks-id="b59a3a06-54e6-4541"><a class="js-gps-track" data-gps-track="footer.click({ location: 3, link: 1 })" href="https://stackoverflow.co/" data-webtasks-id="729693c3-2b19-4d20">Company</a></h5>
<ul class="-list" data-webtasks-id="8b3c1829-82df-4298">
<li data-webtasks-id="b3badd9e-13ba-4569"><a href="https://stackoverflow.com" class="js-gps-track -link" data-gps-track="footer.click({ location: 3, link: 15})" data-webtasks-id="10198827-4e5b-440a">Stack Overflow</a></li>
<li data-webtasks-id="970b3473-e843-4ab8"><a href="https://stackoverflow.co/teams/" class="js-gps-track -link" data-gps-track="footer.click({ location: 3, link: 29 })" data-webtasks-id="8a48ecf3-f471-46a7">Teams</a></li>
<li data-webtasks-id="da56ed27-5309-416b"><a href="https://stackoverflow.co/advertising/" class="js-gps-track -link" data-gps-track="footer.click({ location: 3, link: 21 })" data-webtasks-id="0db0a0e8-b303-4e2a">Advertising</a></li>
<li data-webtasks-id="b460c06b-4569-4c54"><a href="https://stackoverflow.co/collectives/" class="js-gps-track -link" data-gps-track="footer.click({ location: 3, link: 40 })" data-webtasks-id="9ae9d08e-0b71-44f3">Collectives</a></li>
<li data-webtasks-id="e6178114-be5f-415e"><a href="https://stackoverflow.co/talent/" class="js-gps-track -link" data-gps-track="footer.click({ location: 3, link: 20 })" data-webtasks-id="ad35b7b3-826e-4ca7">Talent</a></li>
<li data-webtasks-id="bf235740-0a99-4f59"><a class="js-gps-track -link" data-gps-track="footer.click({ location: 3, link: 1 })" href="https://stackoverflow.co/" data-webtasks-id="da3c7746-0fd7-46f7">About</a></li>
<li data-webtasks-id="8bf197d5-d4f9-4d2c"><a class="js-gps-track -link" data-gps-track="footer.click({ location: 3, link: 27 })" href="https://stackoverflow.co/company/press/" data-webtasks-id="1a69078d-f4e7-40d2">Press</a></li>
<li data-webtasks-id="7e4612e6-036f-4b2f"><a class="js-gps-track -link" data-gps-track="footer.click({ location: 3, link: 7 })" href="https://stackoverflow.com/legal" data-webtasks-id="2d3d7808-7aba-4036">Legal</a></li>
<li data-webtasks-id="0e39048b-f15a-4d3e"><a class="js-gps-track -link" data-gps-track="footer.click({ location: 3, link: 8 })" href="https://stackoverflow.com/legal/privacy-policy" data-webtasks-id="5255d0f3-3c75-4669">Privacy Policy</a></li>
<li data-webtasks-id="dd3f3c0c-7d80-41e5"><a class="js-gps-track -link" data-gps-track="footer.click({ location: 3, link: 37 })" href="https://stackoverflow.com/legal/terms-of-service" data-webtasks-id="c9ad92f7-4241-4bca">Terms of Service</a></li>
<li class="" id="consent-footer-link" data-webtasks-id="31466e55-d696-4128"><a class="js-gps-track -link js-cookie-settings" data-gps-track="footer.click({ location: 3, link: 38 })" href="#" data-consent-popup-loader="footer" data-webtasks-id="e21baa68-84ad-4182">Cookie Settings</a></li>
<li data-webtasks-id="2636f444-1575-4ac9"><a class="js-gps-track -link" data-gps-track="footer.click({ location: 3, link: 39 })" href="https://stackoverflow.com/legal/cookie-policy" data-webtasks-id="1bbd5bc7-8741-463d">Cookie Policy</a></li>
</ul>
</div>
<div class="site-footer--col site-footer--categories-nav" data-webtasks-id="4e3cf046-02a9-44e8">
<div data-webtasks-id="5386524e-5e6e-461a">
<h5 class="-title" data-webtasks-id="e5596680-150b-45f1"><a href="https://stackexchange.com" data-gps-track="footer.click({ location: 3, link: 30 })" data-webtasks-id="13c197b0-9c96-405a">Stack Exchange Network</a></h5>
<ul class="-list" data-webtasks-id="d2a84b91-d3be-4d07">
<li data-webtasks-id="333ede59-1856-4d03">
<a href="https://stackexchange.com/sites#technology" class="-link js-gps-track" data-gps-track="footer.click({ location: 3, link: 24 })" data-webtasks-id="e19e7e64-4166-4c6a">
Technology
</a>
</li>
<li data-webtasks-id="e3ffaaea-606f-475d">
<a href="https://stackexchange.com/sites#culturerecreation" class="-link js-gps-track" data-gps-track="footer.click({ location: 3, link: 24 })" data-webtasks-id="2387b467-9728-4ce6">
Culture & recreation
</a>
</li>
<li data-webtasks-id="6136ef30-08a5-4801">
<a href="https://stackexchange.com/sites#lifearts" class="-link js-gps-track" data-gps-track="footer.click({ location: 3, link: 24 })" data-webtasks-id="d45dae65-cf91-4f6d">
Life & arts
</a>
</li>
<li data-webtasks-id="5b984f72-4ae1-4e8a">
<a href="https://stackexchange.com/sites#science" class="-link js-gps-track" data-gps-track="footer.click({ location: 3, link: 24 })" data-webtasks-id="bd870f30-af45-4329">
Science
</a>
</li>
<li data-webtasks-id="2b80f7ea-6526-4f7c">
<a href="https://stackexchange.com/sites#professional" class="-link js-gps-track" data-gps-track="footer.click({ location: 3, link: 24 })" data-webtasks-id="eb3d77e6-6f9d-4b34">
Professional
</a>
</li>
<li data-webtasks-id="579b2524-8fe8-4d51">
<a href="https://stackexchange.com/sites#business" class="-link js-gps-track" data-gps-track="footer.click({ location: 3, link: 24 })" data-webtasks-id="b2ba0634-e22d-496a">
Business
</a>
</li>
<li class="mt16 md:mt0" data-webtasks-id="fe976114-b589-4253">
<a href="https://api.stackexchange.com/" class="-link js-gps-track" data-gps-track="footer.click({ location: 3, link: 24 })" data-webtasks-id="ad420182-c8e5-4498">
API
</a>
</li>
<li data-webtasks-id="f6d3c549-2a82-4729">
<a href="https://data.stackexchange.com/" class="-link js-gps-track" data-gps-track="footer.click({ location: 3, link: 24 })" data-webtasks-id="ac9576fc-550d-4c31">
Data
</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="site-footer--copyright fs-fine md:mt24" data-webtasks-id="008cb506-99a5-4b1d">
<ul class="-list -social md:mb8" data-webtasks-id="0858aafe-b823-49c1">
<li data-webtasks-id="988e85c3-b152-43d0"><a class="js-gps-track -link" data-gps-track="footer.click({ location: 3, link:4 })" href="https://stackoverflow.blog?blb=1" data-webtasks-id="79f447de-b3cc-44a5">Blog</a></li>
<li data-webtasks-id="d30f8e48-39a1-4af4"><a href="https://www.facebook.com/officialstackoverflow/" class="-link js-gps-track" data-gps-track="footer.click({ location: 3, link: 31 })" data-webtasks-id="44b936ef-9747-4188">Facebook</a></li>
<li data-webtasks-id="4b319055-e1cc-4de3"><a href="https://twitter.com/stackoverflow" class="-link js-gps-track" data-gps-track="footer.click({ location: 3, link: 32 })" data-webtasks-id="078fa368-08ce-4cc6">Twitter</a></li>
<li data-webtasks-id="d7ffbb8a-9907-4be3"><a href="https://linkedin.com/company/stack-overflow" class="-link js-gps-track" data-gps-track="footer.click({ location: 3, link: 33 })" data-webtasks-id="0ebeb5de-6e49-4c18">LinkedIn</a></li>
<li data-webtasks-id="1f4e99bb-2034-4250"><a href="https://www.instagram.com/thestackoverflow" class="-link js-gps-track" data-gps-track="footer.click({ location: 3, link: 36 })" data-webtasks-id="0328f3c8-08cf-4880">Instagram</a></li>
</ul>
<p class="md:mb0" data-webtasks-id="3d7f3e07-ac3e-46d4">
Site design / logo © 2023 Stack Exchange Inc; user contributions licensed under <span class="td-underline" data-webtasks-id="8e7395f9-e3f9-49e1"><a href="https://stackoverflow.com/help/licensing" data-webtasks-id="3c83669f-5e4e-45d5">CC BY-SA</a></span>. <span id="svnrev" data-webtasks-id="b0a076f1-8713-4c59">rev 2023.7.7.43526</span>
</p>
</div>
</div>
</footer>
<!-- Google tag (gtag.js) -->
<script async="" src="https://www.googletagmanager.com/gtag/js?id=G-S812YQPLT2" data-webtasks-id="55f7608f-5217-444c"></script>
<script data-webtasks-id="8f65cdc6-521d-4dc0">
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
</script>
<script data-webtasks-id="1b90e0bd-befb-4ba9">
StackExchange.ready(function() {
var ga3Settings = {
autoLink: ["stackoverflow.blog","info.stackoverflowsolutions.com","stackoverflowsolutions.com"],
sendTitles: true,
tracker: window.ga,
trackingCodes: [
'UA-108242619-5'
],
checkDimension: 'dimension42'
};
var customGA4Dimensions = {};
var ga4Settings = {
tracker: gtag,
trackingCodes: [
'G-S812YQPLT2'
],
consentsToPerformanceCookies: "denied",
consentsToTargetingCookies: "denied",
eventParameters: customGA4Dimensions,
checkForAdBlock: true,
sendTitles: true,
trackClicks: false,
};
StackExchange.ga.init({ GA3: ga3Settings, GA4: ga4Settings });
StackExchange.ga.setDimension('dimension1', '28364646');
StackExchange.ga.setDimension('dimension3', 'Questions/List');
StackExchange.ga.setDimension('dimension7', "1688964759.1078133152");
StackExchange.ga.trackPageView();
});
</script><iframe src="https://8e2e0768a41e294b9544ed7bc28a7b0d.safeframe.googlesyndication.com/safeframe/1-0-40/html/container.html" style="visibility: hidden; display: none;" data-webtasks-id="cb5f0af8-6c39-43af"></iframe>
<div id="onetrust-consent-sdk" class="d-none" data-webtasks-id="5d1ccc1c-f763-4c66"></div>
<div id="onetrust-banner-sdk" data-controller="s-modal" data-webtasks-id="90e0d1e1-5dc9-451c"></div>
<div id="ot-pc-content" class="d-none" data-webtasks-id="72b32fbf-9143-4511"></div>
<div id="onetrust-style" class="d-none" data-webtasks-id="eb068591-fdf1-4bed"> </div>
<div class="d-none js-consent-banner-version" data-consent-banner-version="1" data-webtasks-id="7e84eec1-7b71-4f6d"></div>
</body><iframe name="goog_topics_frame" src="https://securepubads.g.doubleclick.net/static/topics/topics_frame.html" data-webtasks-id="cb120b2d-0bd2-4ff2" style="display: none;"></iframe> |