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
{ | |
"info": "POE Scarabs 3.26", | |
"scarabs": [ | |
{ | |
"name": "Abyss Scarab", | |
"limit": 2, | |
"description": "Area contains an additional Abyss" | |
}, | |
{ | |
"name": "Abyss Scarab of Edifice", |
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
{ | |
"tree": "POE Atlas 3.26", | |
"note": "This dataset only include keystones and notables.", | |
"nodes": [ | |
{ | |
"name": "Refiner's Bargain", | |
"stats": [ | |
"Equipment Items with Rarity dropped by Possessed Monsters in your Maps have 5% chance to be converted to Thaumaturgic Dust", | |
"Sulphite found in your Maps is granted as a random Ore instead at 15% of the value", | |
"Lifeforce found in your Maps is granted as a random Crop instead at 300% of the value" |
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
{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"title": "FactCheckClaim", | |
"description": "Schema for a fact-checked claim", | |
"type": "object", | |
"properties": { | |
"claim_text": { | |
"description": "The exact wording of the claim being checked.", | |
"type": "string" | |
}, |
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
{ | |
"data": [ | |
{ | |
"node": { | |
"id": 44881, | |
"title": "100-man no Inochi no Ue ni Ore wa Tatteiru 2nd Season", | |
"main_picture": { | |
"medium": "https://api-cdn.myanimelist.net/images/anime/1683/115662.jpg", | |
"large": "https://api-cdn.myanimelist.net/images/anime/1683/115662l.jpg" | |
} |
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
{ | |
"page": 1, | |
"count": 73, | |
"feed": [ | |
{ | |
"title": "Mei-chan no Shitsuji DX Manga Goes on Hiatus Due to Author's Injury", | |
"permalink": "https://www.animenewsnetwork.com/news/2021-08-21/mei-chan-no-shitsuji-dx-manga-goes-on-hiatus-due-to-author-injury/.176426", | |
"utcTimestampSeconds": 1629537410, | |
"provider": "ANIME_NEWS_NETWORK", | |
"sourceDomain": "www.animenewsnetwork.com" |
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
{ | |
"count": 252, | |
"list": [ | |
{ | |
"slug": "beyblade_burst_sparking_dub", | |
"title": "Beyblade Burst Sparking", | |
"thumbnail_url": "https://api-cdn.myanimelist.net/images/anime/1332/106530.jpg", | |
"type": "dub", | |
"alternative_titles": "ベイブレードバースト スパーキング", | |
"status": "Ongoing", |
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 [MyAnimeList] Average-Duration&Average-Episode | |
// @namespace http://tampermonkey.net/ | |
// @version 1.2 | |
// @description A script for extending MyAnimeList.net for displaying average duration per episode and average number of episodes per entry. | |
// @author xamantra | |
// @updateURL https://gist.githubusercontent.com/xamantra/e3dd9b11909a0375103af150d9bbe0e5/raw/dd0a389d1f0d2b84576688045dfdbe71a2a7684c/%255BMyAnimeList%255D%2520Average-Duration&Average-Episode.js | |
// @downloadURL https://gist.githubusercontent.com/xamantra/e3dd9b11909a0375103af150d9bbe0e5/raw/dd0a389d1f0d2b84576688045dfdbe71a2a7684c/%255BMyAnimeList%255D%2520Average-Duration&Average-Episode.js | |
// @supportURL https://gist.github.com/xamantra/e3dd9b11909a0375103af150d9bbe0e5 | |
// @match https://myanimelist.net/profile/* |
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
Type type<T>() => T; | |
class Settings { | |
// logic here ... | |
} | |
class ASettings extends Settings { | |
// logic here ... | |
} |
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
mixin RelativeScaler { | |
double _screenHeight; | |
double _screenWidth; | |
/// `RelativeScaler.screenHeight` -> the height of the screen. | |
double get screenHeight => _screenHeight; | |
/// `RelativeScaler.screenWidth` -> the width of the screen. | |
double get screenWidth => _screenWidth; |
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
var index = 0; | |
if (confirm(`Are you sure you want to DELETE ALL your entries in this section?`)) { | |
$("a.animetitle").each(function () { | |
var animeLink = $(this).attr("href"); | |
var animeId = animeLink.substring( | |
animeLink.lastIndexOf("anime/") + 6, | |
animeLink.lastIndexOf("/") | |
); | |
var deleteUrl = `/ownlist/anime/${animeId}/delete`; | |
setTimeout(function () { |