Next-generation IDE by JetBrains
https://www.jetbrains.com/fleet/
Next-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.
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.
oxipng – Multithreaded PNG optimizer written in Rust – https://github.com/shssoichiro/oxipng
Tool Settings |
---|
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<link | |
rel="stylesheet" | |
href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" | |
/> | |
</head> |