{
"text": "invalid key"
}{| import java.io.IOException; | |
| import java.net.URISyntaxException; | |
| import java.nio.file.Files; | |
| import java.nio.file.Paths; | |
| import java.security.KeyFactory; | |
| import java.security.NoSuchAlgorithmException; | |
| import java.security.PrivateKey; | |
| import java.security.interfaces.RSAPublicKey; | |
| import java.security.spec.InvalidKeySpecException; | |
| import java.security.spec.PKCS8EncodedKeySpec; |
| Kotlin 19 hrs 57 mins ████████████▊░░░░░░░░ 60.7% | |
| Other 6 hrs 2 mins ███▊░░░░░░░░░░░░░░░░░ 18.4% | |
| Markdown 1 hr 45 mins █░░░░░░░░░░░░░░░░░░░░ 5.3% | |
| XML 1 hr 41 mins █░░░░░░░░░░░░░░░░░░░░ 5.2% | |
| SQL 1 hr 20 mins ▊░░░░░░░░░░░░░░░░░░░░ 4.1% |
| 🌞 Morning 28 commits █████▎░░░░░░░░░░░░░░░ 25.0% | |
| 🌆 Daytime 50 commits █████████▍░░░░░░░░░░░ 44.6% | |
| 🌃 Evening 31 commits █████▊░░░░░░░░░░░░░░░ 27.7% | |
| 🌙 Night 3 commits ▌░░░░░░░░░░░░░░░░░░░░ 2.7% |
| private static byte[] intToLittleEndian(long numero) { | |
| ByteBuffer bb = ByteBuffer.allocate(4); | |
| bb.order(ByteOrder.LITTLE_ENDIAN); | |
| bb.putInt((int) numero); | |
| return bb.array(); | |
| } | |
| // OR ... | |
| private static byte[] intToLittleEndian(long numero) { |
| # Generated by Powerlevel10k configuration wizard on 2021-04-09 at 14:42 CEST. | |
| # Based on romkatv/powerlevel10k/config/p10k-classic.zsh, checksum 5135. | |
| # Wizard options: nerdfont-complete + powerline, small icons, classic, unicode, dark, | |
| # 24h time, angled separators, slanted heads, slanted tails, 2 lines, solid, no frame, | |
| # sparse, many icons, fluent, instant_prompt=verbose. | |
| # Type `p10k configure` to generate another config. | |
| # | |
| # Config for Powerlevel10k with classic powerline prompt style. Type `p10k configure` to generate | |
| # your own config based on it. | |
| # |
| setopt rcquotes | |
| # ------------------------------- | |
| # 1. ENVIRONMENT CONFIGURATION | |
| # ------------------------------- | |
| export DEV_HOME=/ | |
| alias wks='cd $DEV_HOME' | |
| # ----------------------------- |
| // apply this script into the build.gradle of modules which you have applied protobuf plugin | |
| // also, this can be used to workaround others plugins not supporting macOS M1 soc, e.g. AndResGuard | |
| // to support AndResGuard, append `|| it.name == "AndResGuardLocatorSevenZip"` | |
| // to the configuration matching condition sentence | |
| configurations.matching { | |
| it.name.startsWith("protobufToolsLocator_") | |
| }.configureEach { | |
| withDependencies { deps -> | |
| deps.matching { it instanceof ExternalDependency }.configureEach { | |
| it.artifacts.each { |
| #!/usr/bin/env tclsh | |
| # * Variables | |
| set var(user) $env(USER) | |
| set var(path) $env(PWD) | |
| set var(home) $env(HOME) | |
| # * Calculate last login | |
| set lastlog [exec -- lastlog -u $var(user)] |
| # Generated by Powerlevel10k configuration wizard on 2022-04-20 at 09:14 UTC. | |
| # Based on romkatv/powerlevel10k/config/p10k-lean.zsh, checksum 08860. | |
| # Wizard options: nerdfont-complete + powerline, small icons, unicode, lean, 24h time, | |
| # 2 lines, solid, no frame, lightest-ornaments, sparse, many icons, fluent, | |
| # transient_prompt, instant_prompt=quiet. | |
| # Type `p10k configure` to generate another config. | |
| # | |
| # Config for Powerlevel10k with lean prompt style. Type `p10k configure` to generate | |
| # your own config based on it. | |
| # |