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
{ | |
"ModSettings": { | |
"highlight_foused_items": false, | |
"highlight_foused_items_foreground": false, | |
"enable_profiles": false, | |
"enable_updates_check": false, | |
"highlight_clicking_slot": false, | |
"ignore_durability": false, | |
"first_run": false | |
}, |
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
{"version":2,"type":"full","values":{"exp-lock":1658571974582,"p:0:chat.filtering.highlight-mentions":true,"p:0:tooltip.badge-images":false,"p:0:player.vod.autoplay":false,"p:0:player.home.autoplay":false,"p:0:chat.badges.hidden":{"1":false,"2":true,"3":false},"profiles":[{"id":1,"name":"Moderation","i18n_key":"setting.profiles.moderation","description":"Settings that apply when you are a moderator of the current channel.","context":[{"type":"Moderator","data":true}],"uuid":"ffz_profile_moderation"},{"id":0,"name":"Default Profile","i18n_key":"setting.profiles.default","description":"Settings that apply everywhere on Twitch.","uuid":"ffz_profile_default"}],"p:0:chat.emote-menu.icon":false,"p:0:channel.auto-click-chat":true,"p:0:channel.auto-skip-trailer":true,"p:0:chat.delay":0,"p:0:chat.emote-menu.show-search":false,"p:0:addon.seventv_emotes.unlisted_emotes":true,"cfg-seen":["i18n.debug.capture","i18n.debug.transform","i18n.locale","i18n.format.date","i18n.format.time","i18n.format.datetime","data.use-stagin |
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
[{"name":"First Yes and Random","titles":["youtube ads evaluation","app ads on google search"],"pressing":9,"selected":true,"map":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"name":"Very Short (0:00 - 0:10)","titles":"youtube ads evaluation","pressing":2,"map":[0,null,1,0,2,2,4,4,3,4,1,2,3,5]},{"name":"Very Short 2 (0:00 - 0:10)","titles":"youtube ads evaluation","pressing":2,"map":[0,null,1,0,2,2,3,4,2,1,1,1,1,2]},{"name":"Pretty Short (0:10 - 0:25)","titles":"youtube ads evaluation","pressing":2,"map":[0,null,0,2,1,2,5,3,3,3,2,1,2,5]},{"name":"Pretty Short 2 (0:10 - 0:25)","titles":"youtube ads evaluation","pressing":2,"map":[0,null,0,2,1,2,5,3,2,2,1,2,1,4]},{"name":"Medium (0:25 - 0:50)","titles":"youtube ads evaluation","pressing":2,"map":[0,null,1,1,1,0,4,2,3,3,2,1,2,3]},{"name":"Medium 2 (0:25 - 0:50)","titles":"youtube ads evaluation","pressing":2,"map":[0,null,1,1,1,0,3,2,2,1,2,3,2,4]},{"name":"Pretty Long (0:50 - 02:00)","titles":"youtube ads evaluation","pressing":2,"map":[0,null,2,2,1,0,5,1,3,3 |
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
export default async function fetcher<T = unknown>( | |
input: RequestInfo, | |
init?: RequestInit | |
): Promise<T> { | |
const response = await fetch(input, init) | |
const data = await response.json() as T | |
if (response.ok) { | |
return data | |
} |
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
function cakes(recipe, available) { | |
return Object | |
.keys(recipe) | |
.reduce((acc, ingredient) => { | |
const cakes = Math.floor( | |
available[ingredient] / | |
recipe[ingredient] || 0 | |
) | |
return Math.min(cakes, acc) |
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
/** | |
* Use like this: | |
* | |
* pluralize(2)`package${['s']}` | |
* // packages | |
* | |
* pluralize(1)`package${['s']}` | |
* // package | |
* | |
* pluralize(2)`agenc${['ies', 'y']}` |
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
const date = new Intl.DateTimeFormat('en', { | |
year: 'numeric', | |
hour: 'numeric', | |
minute: 'numeric', | |
second: 'numeric', | |
day: '2-digit', | |
month: '2-digit', | |
hour12: false | |
}) |
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
Windows Registry Editor Version 5.00 | |
;=== Disable === | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings] | |
"AutoConfigURL"=- | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap] | |
"ProxyBypass"=dword:00000001 | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\1] |