- Go to your main profile: [http://www.meetup.com/profile/]
- Get the ID of the photo you want to use by:
- Click on "Photos"
- Navigate to the photo you want to use
- Right-click on the "Set as main profile photo" link and select "Copy" -- it should be something like [http://www.meetup.com/account/photo/?op=swap&id=photoID]
- The
**photoID**
(id=**photoID**
) in the URL is your photo ID. - Close the "Photos" dialog. You should be at [http://www.meetup.com/profile/].
- If you haven't already, click on the "See All My Meetup Groups" button.
- Open your browser's developer tools (usually F12), and run the following in the Console tab, replacing
**photoID**
with the photo ID you want to change to:
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
langcode: en | |
status: true | |
dependencies: | |
config: | |
- field.field.media.image.field_image | |
- image.style.thumbnail | |
- media_entity.bundle.image | |
module: | |
- image | |
id: media.image.default |
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
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
body { | |
width: 375px; | |
height: 165px; | |
} | |
</style> | |
<script src="https://d3js.org/d3.v4.min.js"></script> | |
<script> |
A d3 world map which shows the states of Canada and the USA on zoom. Also has rotation, but only when scale is set to 1 (zoomed out).
I combined a world topo.json file with a states topo.json file using something like this:
node_modules/.bin/topojson --allow-empty -p name -o combined2.json -- data/countries.topo.json data/states_usa.topo.json