The jdk-manager.sh script automates managing JDK versions on macOS using Homebrew and jenv. It can install or remove JDK 17, 21, and 25 (or a subset you specify), link them so /usr/libexec/java_home can detect them, and register them with jenv for version switching. It also cleans up stale jenv entries and old Homebrew versions, ensuring only the latest patch of each JDK is kept.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | |
| <title>Calculator</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <link | |
| rel="stylesheet" | |
| type="text/css" | |
| href="https://cdn.jsdelivr.net/npm/[email protected]/reset.min.css" | |
| /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Gundam Build Divers - Episode Staff Translator | |
| // @namespace net.gundam-bd.story | |
| // @version 1.0.1 | |
| // @description Translates episode personel information | |
| // @author rmkane | |
| // @match http://www.gundam-bd.net/story/* | |
| // @resource JQUERY_MODAL https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.2/jquery.modal.min.css | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.0/jquery.min.js | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.2/jquery.modal.min.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| id | pokemon | primaryColor | secondaryColor | verified | |
|---|---|---|---|---|---|
| 1 | Bulbasaur | #36C8A4 | #A3FB83 | TRUE | |
| 2 | Charmander | #F09230 | #FFE699 | TRUE | |
| 3 | Squirtle | #85C4D6 | #F2E8BE | TRUE | |
| 4 | Caterpie | #A5CD87 | #FAE3B1 | TRUE | |
| 5 | Weedle | #E7BC83 | #DB76AD | TRUE | |
| 6 | Pidgey | #E9E0B7 | #D29E65 | TRUE | |
| 7 | Rattata | #A989BA | #D9D7BE | TRUE | |
| 8 | Spearow | #EBB9A0 | #FE5D6C | TRUE | |
| 9 | Ekans | #CBA8C9 | #F1E090 | TRUE |
- Create working JDK directory (
C:\JDKin this case) - [Download][1] latest version of JDK from Oracle (for example
jdk-8u201-windows-x64.exe) - [Download][2] and install 7-Zip (or download [7-Zip portable][3] version if you are not administrator)
- With 7-Zip extract all the files from
jdk-XuXX-windows-x64.exeinto the directoryC:\JDK - Execute the following commands in
cmd.exe:cd C:\JDK\.rsrc\1033\JAVA_CAB10extrac32 111
- Unpack
C:\JDK\.rsrc\1033\JAVA_CAB10\tools.zipwith 7-zip
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [{ | |
| "id": 1, | |
| "name": "Bulbasaur", | |
| "types": ["Grass", "Poison"], | |
| "stats": { | |
| "stamina": 90, | |
| "attack": 118, | |
| "defense": 118 | |
| }, | |
| "fastMoves": [{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| ''' | |
| Pokemon GO CP Calculator | |
| Formula: https://reddit.com/r/TheSilphRoad/comments/4t7r4d/exact_pokemon_cp_formula/ | |
| Calculator: https://pokemongohub.net/pokemon-go-evolution-calculator/ | |
| ''' | |
| import numpy as np | |
| from itertools import product |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "url" : "", | |
| "name" : "Lúcio", | |
| "title" : "", | |
| "role" : "Support", | |
| "info" : "", | |
| "lore" : "", | |
| "date" : "", | |
| "difficulty" : "", | |
| "melee" : false, |
NewerOlder