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.
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> |
import angular from 'angular'; | |
import fontawesome from '@fortawesome/fontawesome-svg-core'; | |
import {faPrint} from '@fortawesome/free-solid-svg-icons/faPrint'; | |
import {faSearch} from '@fortawesome/free-solid-svg-icons/faSearch'; | |
fontawesome.library.add(faPrint, faSearch); | |
function directive(): ng.IDirective { | |
return { | |
restrict: 'E', |
> neofetch
c.' simon@simon-mac
,xNMM. ---------------
.OMMMMo OS: macOS Monterey 12.3 21E230 x86_64
lMM" Host: MacBookAir10,1
.;loddo:. .olloddol;. Kernel: 21.4.0
cKMMMMMMMMMMNWMMMMMMMMMM0: Packages: 242 (brew), 48 (nix-user)
.KMMMMMMMMMMMMMMMMMMMMMMMWd. Shell: fish 3.4.1
XMMMMMMMMMMMMMMMMMMMMMMMX. Resolution: 2560x1600 , 3440x1440 @ -Hz
import com.auth0.jwt.JWT; | |
import com.auth0.jwt.algorithms.Algorithm; | |
import org.bouncycastle.util.io.pem.PemReader; | |
import org.junit.Test; | |
import java.io.BufferedReader; | |
import java.nio.file.Files; | |
import java.nio.file.Paths; | |
import java.security.KeyFactory; | |
import java.security.interfaces.RSAPrivateKey; |
Using the URI copy constructor on an URI where the userinfo part contains a percent-escaped colon (U+003A as %3A
) produces a different result.