'‘’ > "“”
- Chango
- Coustard
- Erica One
- Lily Script One
| { | |
| "mx": { | |
| "statistics": { | |
| "totalCases": 192208, | |
| "deaths": 23273, | |
| "fatalityRate": 12.11, | |
| "recoveries": 135279 | |
| } | |
| }, | |
| "us": { |
| def anagrams?(a, b) | |
| frequencies_a = get_frequencies(a) | |
| frequencies_b = get_frequencies(b) | |
| if frequencies_a.length != frequencies_b.length | |
| return false | |
| end | |
| frequencies_a.each do |key, value| | |
| if value != frequencies_b[key] |
| const url = 'https://www.ecobici.cdmx.gob.mx/availability_map/getJsonObject'; | |
| async function getData() { | |
| const response = await fetch(url, { method: 'POST' }); | |
| const stations = await response.json(); | |
| return { | |
| type: 'FeatureCollection', | |
| features: stations.map(mapStation), | |
| }; |
| function compareNumber(a, b) { | |
| return a - b; | |
| } | |
| function compareString(a, b) { | |
| return a.localeCompare(b); | |
| } | |
| const comparatorMap = { | |
| age: compareNumber, |
| function maskEmailAddress (emailAddress = '') { | |
| const [ | |
| username = '', | |
| domainName = '' | |
| ] = emailAddress.split('@') | |
| return username.substring(0, 2) + | |
| '***@' + | |
| domainName | |
| .split('.') |
| if [ -f `brew --prefix`/etc/bash_completion.d/git-completion.bash ]; then | |
| . `brew --prefix`/etc/bash_completion.d/git-completion.bash | |
| fi |
| /* Pastel shades of: red, orange, yellow, green, blue and purple */ | |
| .rainbow-flag { | |
| background: linear-gradient(180deg, #f28560, #f28560 16.67%, | |
| #f2b560 16.67%, #f2b560 33.33%, | |
| #f2cd60 33.33%, #f2cd60 50%, | |
| #56d88c 50%, #56d88c 66.67%, | |
| #60c1f2 66.67%, #60c1f2 83.33%, | |
| #bd93d8 83.33%, #bd93d8); | |
| } |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> | |
| </head> | |
| <body> | |
| <h1>Document upload!!</h1> |