macOS port of the xkb us(altgr-intl) variant
Installation: cp us-altgr-intl.keylayout ~/Library/Keyboard\ Layouts/
Differences to the Leaflet API between version 1.9.4 and 2.0.0-alpha.1-87-gf33fbefb as outlined in the Leaflet 2.0 Alpha released blog post and subsequent commits.
Generated from diffing the entries https://devdocs.io/docs/leaflet~1.9/index.json and https://devdocs.io/docs/leaflet~2.0/index.json which are based https://leafletjs.com/reference.html and https://leafletjs.com/reference-2.0.0.html, respectively.
diff --git a/leaflet-1.9.txt b/leaflet-2.0.txt
index fdb6047..80e1b86 100644
--- a/leaflet-1.9.txtNext-generation IDE by JetBrains
https://www.jetbrains.com/fleet/
| /* | |
| * Parser definition for the main MapCSS parser: | |
| * | |
| * <pre> | |
| * | |
| * rule | |
| * _______________________|______________________________ | |
| * | | | |
| * selector declaration | |
| * _________|___________________ _________|____________ |
| /** | |
| * A Leaflet Control, to request fullscreen for map (no CSS, no image) | |
| * | |
| * @example new FullscreenControl({ position: "topleft" }).addTo(map); | |
| */ | |
| export class FullscreenControl extends L.Control { | |
| onAdd() { | |
| const container = L.DomUtil.create("div", " leaflet-bar"); | |
| const link = L.DomUtil.create("a", undefined, container); | |
| link.innerHTML = "⛶"; |
| /** | |
| * A Leaflet Layer Control, which may be expanded by default, but may be collapsed using a button. | |
| * | |
| * @example new CollapsableLayerControl(layers, {}, { collapsed: false }) | |
| */ | |
| export class CollapsableLayerControl extends L.Control.Layers { | |
| onAdd(map) { | |
| L.Control.Layers.prototype.onAdd.call(this, map); | |
| const div = document.createElement("div"); | |
| div.style.textAlign = "right"; |
| from datetime import timedelta | |
| import re | |
| import unittest | |
| def parse_timedelta(delta: str) -> timedelta: | |
| """Parses the given string as ISO 8601 timedelta""" | |
| # https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/time/Duration.html#parse(java.lang.CharSequence) | |
| match = re.compile( | |
| r"(?P<sign>[-+]?)P" |
| import javax.net.ssl.SSLContext; | |
| import javax.net.ssl.TrustManager; | |
| import javax.net.ssl.X509TrustManager; | |
| import java.security.KeyManagementException; | |
| import java.security.MessageDigest; | |
| import java.security.NoSuchAlgorithmException; | |
| import java.security.SecureRandom; | |
| import java.security.cert.CertificateException; | |
| import java.security.cert.X509Certificate; | |
| import java.util.HexFormat; |
| package at.tbbm.manual_input.util; | |
| import com.auth0.jwk.Jwk; | |
| import com.auth0.jwk.JwkException; | |
| import com.auth0.jwk.JwkProvider; | |
| import com.auth0.jwk.UrlJwkProvider; | |
| import com.auth0.jwt.JWT; | |
| import com.auth0.jwt.algorithms.Algorithm; | |
| import com.auth0.jwt.exceptions.JWTVerificationException; | |
| import com.auth0.jwt.interfaces.DecodedJWT; |
https://www.jetbrains.com/help/idea/configuring-third-party-tools.html
You can define third-party applications as external tools and run them from IntelliJ IDEA.
javap – Disassembles one or more class files.