This is a list of VSCode extensions that I like to use.
Install Homebrew, and let it manage everything.
brew cask install iterm2
brew cask install google-chrome
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
| // Set width, height, and viewBox dimensions. | |
| const width = 1600; | |
| const height = 900; | |
| const viewBox = [0, 0, width, height]; | |
| // Create a D3 reference to the SVG element. | |
| const svg = d3.select("#world-map") | |
| .attr("viewBox", `${viewBox}`); | |
| // Download the topology file. |
OlderNewer