This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "currency": "Albania Lek", | |
| "abbreviation": "ALL", | |
| "symbol": "Lek" | |
| }, | |
| { | |
| "currency": "Afghanistan Afghani", | |
| "abbreviation": "AFN", | |
| "symbol": "؋" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Node { | |
| constructor(val){ | |
| this.val = val; | |
| this.next = null; | |
| } | |
| } | |
| class Stack { | |
| constructor(){ | |
| this.first = null; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| I was installing some python libraries that I needed, and this message came up: | |
| Traceback (most recent call last): | |
| File "/usr/bin/pip3", line 11, in <module> | |
| sys.exit(main()) | |
| File "/usr/lib/python3/dist-packages/pip/__init__.py", line 215, in main | |
| locale.setlocale(locale.LC_ALL, '') | |
| File "/usr/lib/python3.5/locale.py", line 594, in setlocale | |
| return _setlocale(category, locale) | |
| locale.Error: unsupported locale setting |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| {"name": "Afghanistan", "code": "AF"}, | |
| {"name": "Åland Islands", "code": "AX"}, | |
| {"name": "Albania", "code": "AL"}, | |
| {"name": "Algeria", "code": "DZ"}, | |
| {"name": "American Samoa", "code": "AS"}, | |
| {"name": "AndorrA", "code": "AD"}, | |
| {"name": "Angola", "code": "AO"}, | |
| {"name": "Anguilla", "code": "AI"}, | |
| {"name": "Antarctica", "code": "AQ"}, |