This file contains 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
/* | |
Original code: https://community.adobe.com/t5/indesign-discussions/script-to-extract-hyperlinks-from-indesign-file-with-page-number/m-p/10754550 | |
Modified to add name and in correct order. | |
Reference: https://www.indesignjs.de/extendscriptAPI/indesign-latest/#Hyperlink.html | |
*/ | |
var list = []; | |
//for (a=0; a<app.activeDocument.hyperlinks.length; a++) | |
for (i = app.activeDocument.hyperlinks.length - 1; i >= 0; i--) | |
{ | |
try |
These search strings will find counters for the pokemon you are attacking. This assumes that the pokemon is attacking with moves in the same family(ex. fighting type using fast and charged fighting moves.)
Add @weather
for extra flair.
They are weak against and vulnerable to:
This file contains 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
// === Arrays | |
var [a, b] = [1, 2]; | |
console.log(a, b); | |
//=> 1 2 | |
// Use from functions, only select from pattern | |
var foo = () => [1, 2, 3]; |
This file contains 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
[ | |
{ | |
"backcolor": "#3b3b3b", | |
"name": "MyBoard", | |
"radii": "10px" | |
}, | |
[ | |
{ | |
"c": "#00000", | |
"t": "#FF0000", |
This file contains 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
const isMobileDevice = () => (typeof window.orientation !== "undefined") || (navigator.userAgent.indexOf('IEMobile') !== -1); |
Updated for new LinkedIn
This file contains 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
*~ | |
*.bak | |
*.lnk | |
*.log | |
._* | |
.env | |
.env.local | |
.DS_Store | |
[Dd]esktop.ini | |
[Tt]humbs.db |
NewerOlder