Last active
March 14, 2026 01:07
-
-
Save Domiii/52cf49d780ec8c9f01771973c36197af to your computer and use it in GitHub Desktop.
This script types for you automatically on www.typingclub.com: 1. Open the website 2. Blaze past the tutorials 3. Go into a level 4. Open Console 5. Paste the script and press ENTER
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
| /** | |
| * This script types for you automatically on www.typingclub.com: | |
| * 1. Open the website | |
| * 2. Blaze past the tutorials | |
| * 3. Go into a level | |
| * 4. Open Console | |
| * 5. Paste the script and press ENTER | |
| */ | |
| // NOTE: When delay (in ms between two strokes) is too low, the site might bug out and the result page will not be shown | |
| const minDelay = 60; | |
| const maxDelay = 60; | |
| const keyOverrides = { | |
| [String.fromCharCode(160)]: ' ' // convert hardspace to normal space | |
| }; | |
| function getTargetCharacters() { | |
| const els = Array.from(document.querySelectorAll('.token span.token_unit')); | |
| const chrs = els | |
| .map(el => { | |
| // get letter to type from each letter DOM element | |
| if (el.firstChild?.classList?.contains('_enter')) { | |
| // special case: ENTER | |
| return '\n'; | |
| } | |
| let text = el.textContent[0]; | |
| return text; | |
| }) | |
| .map(c => keyOverrides.hasOwnProperty(c) ? keyOverrides[c] : c); // convert special characters | |
| return chrs; | |
| } | |
| function recordKey(chr) { | |
| // send it straight to the internal API | |
| window.core.record_keydown_time(chr); | |
| } | |
| function sleep(ms) { | |
| return new Promise(r => setTimeout(r, ms)); | |
| } | |
| async function autoPlay(finish) { | |
| const chrs = getTargetCharacters(); | |
| for (let i = 0; i < chrs.length - (!finish); ++i) { | |
| const c = chrs[i]; | |
| recordKey(c); | |
| //console.log(c, c.charCodeAt()); | |
| await sleep(Math.random() * (maxDelay - minDelay) + minDelay); | |
| } | |
| } | |
| // ############################################################################################################ | |
| // old utilities | |
| // ############################################################################################################ | |
| // /** | |
| // * @see https://stackoverflow.com/questions/8942678/keyboardevent-in-chrome-keycode-is-0/12522752#12522752 | |
| // */ | |
| // function simulateKey(chr, el) { | |
| // _simulateKey(chr, 'keydown', el); | |
| // _simulateKey(chr, 'keypress', el); | |
| // } | |
| // function _simulateKey(chr, type, el) { | |
| // var eventObj = document.createEventObject ? | |
| // document.createEventObject() : document.createEvent("Events"); | |
| // if (eventObj.initEvent) { | |
| // eventObj.initEvent(type || "keydown", true, true); | |
| // } | |
| // let keyCode = chr.charCodeAt(0); | |
| // eventObj.key = chr[0]; | |
| // eventObj.keyCode = keyCode; | |
| // eventObj.which = keyCode; | |
| // eventObj.isTrusted = true; | |
| // el = el || document.body; | |
| // // console.log(keyCode, eventObj); | |
| // el.dispatchEvent ? el.dispatchEvent(eventObj) : el.fireEvent("onkeydown", eventObj); | |
| // } | |
| // document.addEventListener("keydown", function (e) { | |
| // console.log('down', e); | |
| // }); | |
| // document.addEventListener("keypress", function (e) { | |
| // console.log('press', e); | |
| // }); | |
| //$($('.menu-btn')[0].parentNode).prepend('<button onclick=\'simulateKeyPress("c")\'>sim</button>'); | |
| // simulateKey('a', $('input')[0]); | |
| // ############################################################################################################ | |
| // go! | |
| // ############################################################################################################ | |
| autoPlay(true); |
So my issue is that i can't inspect anymore! is there anyway to fixt it?
…On Fri, Mar 6, 2026 at 5:40 PM Benjii1019 ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
hey if anyone could help that would be great how do i use the newer code
cause when i try to put it into inspect element it wont work please help! :)
—
Reply to this email directly, view it on GitHub
<https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6016973>
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BZQKLH2H6WYG4UN5UC2E5GL4PN4YPBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMJWHE3DEMZUGMYKI3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF>
.
You are receiving this email because you commented on the thread.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>
.
Is your account managed by school or something?
…On Sat, Mar 7, 2026 at 11:06 AM zane2342 ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
So my issue is that i can't inspect anymore! is there anyway to fixt it?
On Fri, Mar 6, 2026 at 5:40 PM Benjii1019 ***@***.***> wrote:
> ***@***.**** commented on this gist.
> ------------------------------
>
> hey if anyone could help that would be great how do i use the newer code
> cause when i try to put it into inspect element it wont work please
help! :)
>
> —
> Reply to this email directly, view it on GitHub
> <
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6016973
>
> or unsubscribe
> <
https://github.com/notifications/unsubscribe-auth/BZQKLH2H6WYG4UN5UC2E5GL4PN4YPBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMJWHE3DEMZUGMYKI3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF
>
> .
> You are receiving this email because you commented on the thread.
>
> Triage notifications on the go with GitHub Mobile for iOS
> <
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
>
> or Android
> <
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
>
> .
>
>
—
Reply to this email directly, view it on GitHub
<https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017451>
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BOI23QVBF7QM6RDVN6YX3V34PRCHZBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMRUGEZDCNBYG442I3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF>
.
You are receiving this email because you commented on the thread.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>
.
It’s pc only btw
…On Sat, Mar 7, 2026 at 11:07 AM Billy Bob ***@***.***> wrote:
Is your account managed by school or something?
On Sat, Mar 7, 2026 at 11:06 AM zane2342 ***@***.***> wrote:
> ***@***.**** commented on this gist.
> ------------------------------
> So my issue is that i can't inspect anymore! is there anyway to fixt it?
>
> On Fri, Mar 6, 2026 at 5:40 PM Benjii1019 ***@***.***> wrote:
>
> > ***@***.**** commented on this gist.
> > ------------------------------
> >
> > hey if anyone could help that would be great how do i use the newer code
> > cause when i try to put it into inspect element it wont work please
> help! :)
> >
> > —
> > Reply to this email directly, view it on GitHub
> > <
> https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6016973
> >
> > or unsubscribe
> > <
> https://github.com/notifications/unsubscribe-auth/BZQKLH2H6WYG4UN5UC2E5GL4PN4YPBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMJWHE3DEMZUGMYKI3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF
> >
> > .
> > You are receiving this email because you commented on the thread.
> >
> > Triage notifications on the go with GitHub Mobile for iOS
> > <
> https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
> >
> > or Android
> > <
> https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
> >
> > .
> >
> >
>
> —
>
>
> Reply to this email directly, view it on GitHub
> <https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017451>
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/BOI23QVBF7QM6RDVN6YX3V34PRCHZBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMRUGEZDCNBYG442I3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF>
> .
> You are receiving this email because you commented on the thread.
>
> Triage notifications on the go with GitHub Mobile for iOS
> <https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
> or Android
> <https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>
> .
>
>
wdym its on a chromebook too.
…On Sat, Mar 7, 2026 at 8:08 AM comoxyOG ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
It’s pc only btw
On Sat, Mar 7, 2026 at 11:07 AM Billy Bob ***@***.***> wrote:
> Is your account managed by school or something?
>
> On Sat, Mar 7, 2026 at 11:06 AM zane2342 ***@***.***> wrote:
>
>> ***@***.**** commented on this gist.
>> ------------------------------
>> So my issue is that i can't inspect anymore! is there anyway to fixt it?
>>
>> On Fri, Mar 6, 2026 at 5:40 PM Benjii1019 ***@***.***> wrote:
>>
>> > ***@***.**** commented on this gist.
>> > ------------------------------
>> >
>> > hey if anyone could help that would be great how do i use the newer
code
>> > cause when i try to put it into inspect element it wont work please
>> help! :)
>> >
>> > —
>> > Reply to this email directly, view it on GitHub
>> > <
>>
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6016973
>> >
>> > or unsubscribe
>> > <
>>
https://github.com/notifications/unsubscribe-auth/BZQKLH2H6WYG4UN5UC2E5GL4PN4YPBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMJWHE3DEMZUGMYKI3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF
>> >
>> > .
>> > You are receiving this email because you commented on the thread.
>> >
>> > Triage notifications on the go with GitHub Mobile for iOS
>> > <
>>
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
>> >
>> > or Android
>> > <
>>
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
>> >
>> > .
>> >
>> >
>>
>> —
>>
>>
>> Reply to this email directly, view it on GitHub
>> <
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017451
>
>> or unsubscribe
>> <
https://github.com/notifications/unsubscribe-auth/BOI23QVBF7QM6RDVN6YX3V34PRCHZBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMRUGEZDCNBYG442I3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF
>
>> .
>> You are receiving this email because you commented on the thread.
>>
>> Triage notifications on the go with GitHub Mobile for iOS
>> <
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
>
>> or Android
>> <
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
>
>> .
>>
>>
>
—
Reply to this email directly, view it on GitHub
<https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017456>
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BZQKLH3QBYSXJ7VVQQJZWHT4PRCQBBFKMF2HI4TJMJ2XIZLTSOBKK5TBNR2WLKJRHE2DAOJWGU3TRJDOMFWWLKDBMN2G64S7NFSIFJLWMFWHKZNEORZHKZNENZQW2ZN3ORUHEZLBMRPXAYLSORUWG2LQMFXHIX3BMN2GS5TJOR4YFJLWMFWHKZNEM5UXG5FENZQW2ZNLORUHEZLBMRPXI6LQMWWHG5LCNJSWG5C7OR4XAZNLI5UXG5CDN5WW2ZLOOSTHI33QNFRXHEMCUR2HS4DFURTWS43UUV3GC3DVMWUDSNRSHAZTQNRQU52HE2LHM5SXFJTDOJSWC5DF>
.
You are receiving this email because you commented on the thread.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>
.
***@***.*** is my non-school account but why would anyone do
typing club outside of school anyway??
…On Sat, Mar 7, 2026 at 8:09 AM Jude Umpleby ***@***.***> wrote:
wdym its on a chromebook too.
On Sat, Mar 7, 2026 at 8:08 AM comoxyOG ***@***.***> wrote:
> ***@***.**** commented on this gist.
> ------------------------------
> It’s pc only btw
>
> On Sat, Mar 7, 2026 at 11:07 AM Billy Bob ***@***.***> wrote:
>
> > Is your account managed by school or something?
> >
> > On Sat, Mar 7, 2026 at 11:06 AM zane2342 ***@***.***> wrote:
> >
> >> ***@***.**** commented on this gist.
> >> ------------------------------
> >> So my issue is that i can't inspect anymore! is there anyway to fixt
> it?
> >>
> >> On Fri, Mar 6, 2026 at 5:40 PM Benjii1019 ***@***.***> wrote:
> >>
> >> > ***@***.**** commented on this gist.
> >> > ------------------------------
> >> >
> >> > hey if anyone could help that would be great how do i use the newer
> code
> >> > cause when i try to put it into inspect element it wont work please
> >> help! :)
> >> >
> >> > —
> >> > Reply to this email directly, view it on GitHub
> >> > <
> >>
> https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6016973
> >> >
> >> > or unsubscribe
> >> > <
> >>
> https://github.com/notifications/unsubscribe-auth/BZQKLH2H6WYG4UN5UC2E5GL4PN4YPBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMJWHE3DEMZUGMYKI3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF
> >> >
> >> > .
> >> > You are receiving this email because you commented on the thread.
> >> >
> >> > Triage notifications on the go with GitHub Mobile for iOS
> >> > <
> >>
> https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
> >> >
> >> > or Android
> >> > <
> >>
> https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
> >> >
> >> > .
> >> >
> >> >
> >>
> >> —
> >>
> >>
> >> Reply to this email directly, view it on GitHub
> >> <
> https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017451
> >
> >> or unsubscribe
> >> <
> https://github.com/notifications/unsubscribe-auth/BOI23QVBF7QM6RDVN6YX3V34PRCHZBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMRUGEZDCNBYG442I3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF
> >
> >> .
> >> You are receiving this email because you commented on the thread.
> >>
> >> Triage notifications on the go with GitHub Mobile for iOS
> >> <
> https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
> >
> >> or Android
> >> <
> https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
> >
> >> .
> >>
> >>
> >
>
> —
> Reply to this email directly, view it on GitHub
> <https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017456>
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/BZQKLH3QBYSXJ7VVQQJZWHT4PRCQBBFKMF2HI4TJMJ2XIZLTSOBKK5TBNR2WLKJRHE2DAOJWGU3TRJDOMFWWLKDBMN2G64S7NFSIFJLWMFWHKZNEORZHKZNENZQW2ZN3ORUHEZLBMRPXAYLSORUWG2LQMFXHIX3BMN2GS5TJOR4YFJLWMFWHKZNEM5UXG5FENZQW2ZNLORUHEZLBMRPXI6LQMWWHG5LCNJSWG5C7OR4XAZNLI5UXG5CDN5WW2ZLOOSTHI33QNFRXHEMCUR2HS4DFURTWS43UUV3GC3DVMWUDSNRSHAZTQNRQU52HE2LHM5SXFJTDOJSWC5DF>
> .
> You are receiving this email because you commented on the thread.
>
> Triage notifications on the go with GitHub Mobile for iOS
> <https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
> or Android
> <https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>
> .
>
>
to cheat but ask ai for help I forgot how to use this code tbh
…On Sat, Mar 7, 2026 at 11:11 AM zane2342 ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
***@***.*** is my non-school account but why would anyone do
typing club outside of school anyway??
On Sat, Mar 7, 2026 at 8:09 AM Jude Umpleby ***@***.***> wrote:
> wdym its on a chromebook too.
>
> On Sat, Mar 7, 2026 at 8:08 AM comoxyOG ***@***.***> wrote:
>
>> ***@***.**** commented on this gist.
>> ------------------------------
>> It’s pc only btw
>>
>> On Sat, Mar 7, 2026 at 11:07 AM Billy Bob ***@***.***> wrote:
>>
>> > Is your account managed by school or something?
>> >
>> > On Sat, Mar 7, 2026 at 11:06 AM zane2342 ***@***.***> wrote:
>> >
>> >> ***@***.**** commented on this gist.
>> >> ------------------------------
>> >> So my issue is that i can't inspect anymore! is there anyway to fixt
>> it?
>> >>
>> >> On Fri, Mar 6, 2026 at 5:40 PM Benjii1019 ***@***.***> wrote:
>> >>
>> >> > ***@***.**** commented on this gist.
>> >> > ------------------------------
>> >> >
>> >> > hey if anyone could help that would be great how do i use the newer
>> code
>> >> > cause when i try to put it into inspect element it wont work please
>> >> help! :)
>> >> >
>> >> > —
>> >> > Reply to this email directly, view it on GitHub
>> >> > <
>> >>
>>
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6016973
>> >> >
>> >> > or unsubscribe
>> >> > <
>> >>
>>
https://github.com/notifications/unsubscribe-auth/BZQKLH2H6WYG4UN5UC2E5GL4PN4YPBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMJWHE3DEMZUGMYKI3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF
>> >> >
>> >> > .
>> >> > You are receiving this email because you commented on the thread.
>> >> >
>> >> > Triage notifications on the go with GitHub Mobile for iOS
>> >> > <
>> >>
>>
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
>> >> >
>> >> > or Android
>> >> > <
>> >>
>>
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
>> >> >
>> >> > .
>> >> >
>> >> >
>> >>
>> >> —
>> >>
>> >>
>> >> Reply to this email directly, view it on GitHub
>> >> <
>>
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017451
>> >
>> >> or unsubscribe
>> >> <
>>
https://github.com/notifications/unsubscribe-auth/BOI23QVBF7QM6RDVN6YX3V34PRCHZBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMRUGEZDCNBYG442I3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF
>> >
>> >> .
>> >> You are receiving this email because you commented on the thread.
>> >>
>> >> Triage notifications on the go with GitHub Mobile for iOS
>> >> <
>>
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
>> >
>> >> or Android
>> >> <
>>
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
>> >
>> >> .
>> >>
>> >>
>> >
>>
>> —
>> Reply to this email directly, view it on GitHub
>> <
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017456
>
>> or unsubscribe
>> <
https://github.com/notifications/unsubscribe-auth/BZQKLH3QBYSXJ7VVQQJZWHT4PRCQBBFKMF2HI4TJMJ2XIZLTSOBKK5TBNR2WLKJRHE2DAOJWGU3TRJDOMFWWLKDBMN2G64S7NFSIFJLWMFWHKZNEORZHKZNENZQW2ZN3ORUHEZLBMRPXAYLSORUWG2LQMFXHIX3BMN2GS5TJOR4YFJLWMFWHKZNEM5UXG5FENZQW2ZNLORUHEZLBMRPXI6LQMWWHG5LCNJSWG5C7OR4XAZNLI5UXG5CDN5WW2ZLOOSTHI33QNFRXHEMCUR2HS4DFURTWS43UUV3GC3DVMWUDSNRSHAZTQNRQU52HE2LHM5SXFJTDOJSWC5DF
>
>> .
>> You are receiving this email because you commented on the thread.
>>
>> Triage notifications on the go with GitHub Mobile for iOS
>> <
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
>
>> or Android
>> <
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
>
>> .
>>
>>
>
—
Reply to this email directly, view it on GitHub
<https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017466>
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BOI23QRHJMQQOH7LUX27KN34PRC2PBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMRUGEZDCNBYG442I3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF>
.
You are receiving this email because you commented on the thread.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>
.
well i know what it's for but like why would you waste your time,
something that you don't have to do like i understand if its for like
school or something but not in your own time i'l ask chagbt.
…On Sat, Mar 7, 2026 at 8:12 AM comoxyOG ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
to cheat but ask ai for help I forgot how to use this code tbh
On Sat, Mar 7, 2026 at 11:11 AM zane2342 ***@***.***> wrote:
> ***@***.**** commented on this gist.
> ------------------------------
> ***@***.*** is my non-school account but why would anyone do
> typing club outside of school anyway??
>
>
> On Sat, Mar 7, 2026 at 8:09 AM Jude Umpleby ***@***.***> wrote:
>
> > wdym its on a chromebook too.
> >
> > On Sat, Mar 7, 2026 at 8:08 AM comoxyOG ***@***.***> wrote:
> >
> >> ***@***.**** commented on this gist.
> >> ------------------------------
> >> It’s pc only btw
> >>
> >> On Sat, Mar 7, 2026 at 11:07 AM Billy Bob ***@***.***> wrote:
> >>
> >> > Is your account managed by school or something?
> >> >
> >> > On Sat, Mar 7, 2026 at 11:06 AM zane2342 ***@***.***> wrote:
> >> >
> >> >> ***@***.**** commented on this gist.
> >> >> ------------------------------
> >> >> So my issue is that i can't inspect anymore! is there anyway to
fixt
> >> it?
> >> >>
> >> >> On Fri, Mar 6, 2026 at 5:40 PM Benjii1019 ***@***.***> wrote:
> >> >>
> >> >> > ***@***.**** commented on this gist.
> >> >> > ------------------------------
> >> >> >
> >> >> > hey if anyone could help that would be great how do i use the
newer
> >> code
> >> >> > cause when i try to put it into inspect element it wont work
please
> >> >> help! :)
> >> >> >
> >> >> > —
> >> >> > Reply to this email directly, view it on GitHub
> >> >> > <
> >> >>
> >>
>
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6016973
> >> >> >
> >> >> > or unsubscribe
> >> >> > <
> >> >>
> >>
>
https://github.com/notifications/unsubscribe-auth/BZQKLH2H6WYG4UN5UC2E5GL4PN4YPBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMJWHE3DEMZUGMYKI3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF
> >> >> >
> >> >> > .
> >> >> > You are receiving this email because you commented on the thread.
> >> >> >
> >> >> > Triage notifications on the go with GitHub Mobile for iOS
> >> >> > <
> >> >>
> >>
>
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
> >> >> >
> >> >> > or Android
> >> >> > <
> >> >>
> >>
>
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
> >> >> >
> >> >> > .
> >> >> >
> >> >> >
> >> >>
> >> >> —
> >> >>
> >> >>
> >> >> Reply to this email directly, view it on GitHub
> >> >> <
> >>
>
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017451
> >> >
> >> >> or unsubscribe
> >> >> <
> >>
>
https://github.com/notifications/unsubscribe-auth/BOI23QVBF7QM6RDVN6YX3V34PRCHZBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMRUGEZDCNBYG442I3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF
> >> >
> >> >> .
> >> >> You are receiving this email because you commented on the thread.
> >> >>
> >> >> Triage notifications on the go with GitHub Mobile for iOS
> >> >> <
> >>
>
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
> >> >
> >> >> or Android
> >> >> <
> >>
>
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
> >> >
> >> >> .
> >> >>
> >> >>
> >> >
> >>
> >> —
> >> Reply to this email directly, view it on GitHub
> >> <
>
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017456
> >
> >> or unsubscribe
> >> <
>
https://github.com/notifications/unsubscribe-auth/BZQKLH3QBYSXJ7VVQQJZWHT4PRCQBBFKMF2HI4TJMJ2XIZLTSOBKK5TBNR2WLKJRHE2DAOJWGU3TRJDOMFWWLKDBMN2G64S7NFSIFJLWMFWHKZNEORZHKZNENZQW2ZN3ORUHEZLBMRPXAYLSORUWG2LQMFXHIX3BMN2GS5TJOR4YFJLWMFWHKZNEM5UXG5FENZQW2ZNLORUHEZLBMRPXI6LQMWWHG5LCNJSWG5C7OR4XAZNLI5UXG5CDN5WW2ZLOOSTHI33QNFRXHEMCUR2HS4DFURTWS43UUV3GC3DVMWUDSNRSHAZTQNRQU52HE2LHM5SXFJTDOJSWC5DF
> >
> >> .
> >> You are receiving this email because you commented on the thread.
> >>
> >> Triage notifications on the go with GitHub Mobile for iOS
> >> <
>
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
> >
> >> or Android
> >> <
>
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
> >
> >> .
> >>
> >>
> >
>
> —
> Reply to this email directly, view it on GitHub
> <
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017466
>
> or unsubscribe
> <
https://github.com/notifications/unsubscribe-auth/BOI23QRHJMQQOH7LUX27KN34PRC2PBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMRUGEZDCNBYG442I3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF
>
> .
> You are receiving this email because you commented on the thread.
>
> Triage notifications on the go with GitHub Mobile for iOS
> <
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
>
> or Android
> <
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
>
> .
>
>
—
Reply to this email directly, view it on GitHub
<https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017467>
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BZQKLH7AI5HNOCFOTCIRCA34PRC7VBFKMF2HI4TJMJ2XIZLTSOBKK5TBNR2WLKJRHE2DAOJWGU3TRJDOMFWWLKDBMN2G64S7NFSIFJLWMFWHKZNEORZHKZNENZQW2ZN3ORUHEZLBMRPXAYLSORUWG2LQMFXHIX3BMN2GS5TJOR4YFJLWMFWHKZNEM5UXG5FENZQW2ZNLORUHEZLBMRPXI6LQMWWHG5LCNJSWG5C7OR4XAZNLI5UXG5CDN5WW2ZLOOSTHI33QNFRXHEMCUR2HS4DFURTWS43UUV3GC3DVMWUDSNRSHAZTQNRQU52HE2LHM5SXFJTDOJSWC5DF>
.
You are receiving this email because you commented on the thread.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>
.
Ok because I’m not home right now to even try to fix is sorry
…On Sat, Mar 7, 2026 at 11:16 AM zane2342 ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
well i know what it's for but like why would you waste your time,
something that you don't have to do like i understand if its for like
school or something but not in your own time i'l ask chagbt.
On Sat, Mar 7, 2026 at 8:12 AM comoxyOG ***@***.***> wrote:
> ***@***.**** commented on this gist.
> ------------------------------
> to cheat but ask ai for help I forgot how to use this code tbh
>
> On Sat, Mar 7, 2026 at 11:11 AM zane2342 ***@***.***> wrote:
>
> > ***@***.**** commented on this gist.
> > ------------------------------
> > ***@***.*** is my non-school account but why would anyone do
> > typing club outside of school anyway??
> >
> >
> > On Sat, Mar 7, 2026 at 8:09 AM Jude Umpleby ***@***.***> wrote:
> >
> > > wdym its on a chromebook too.
> > >
> > > On Sat, Mar 7, 2026 at 8:08 AM comoxyOG ***@***.***> wrote:
> > >
> > >> ***@***.**** commented on this gist.
> > >> ------------------------------
> > >> It’s pc only btw
> > >>
> > >> On Sat, Mar 7, 2026 at 11:07 AM Billy Bob ***@***.***> wrote:
> > >>
> > >> > Is your account managed by school or something?
> > >> >
> > >> > On Sat, Mar 7, 2026 at 11:06 AM zane2342 ***@***.***> wrote:
> > >> >
> > >> >> ***@***.**** commented on this gist.
> > >> >> ------------------------------
> > >> >> So my issue is that i can't inspect anymore! is there anyway to
> fixt
> > >> it?
> > >> >>
> > >> >> On Fri, Mar 6, 2026 at 5:40 PM Benjii1019 ***@***.***> wrote:
> > >> >>
> > >> >> > ***@***.**** commented on this gist.
> > >> >> > ------------------------------
> > >> >> >
> > >> >> > hey if anyone could help that would be great how do i use the
> newer
> > >> code
> > >> >> > cause when i try to put it into inspect element it wont work
> please
> > >> >> help! :)
> > >> >> >
> > >> >> > —
> > >> >> > Reply to this email directly, view it on GitHub
> > >> >> > <
> > >> >>
> > >>
> >
>
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6016973
> > >> >> >
> > >> >> > or unsubscribe
> > >> >> > <
> > >> >>
> > >>
> >
>
https://github.com/notifications/unsubscribe-auth/BZQKLH2H6WYG4UN5UC2E5GL4PN4YPBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMJWHE3DEMZUGMYKI3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF
> > >> >> >
> > >> >> > .
> > >> >> > You are receiving this email because you commented on the
thread.
> > >> >> >
> > >> >> > Triage notifications on the go with GitHub Mobile for iOS
> > >> >> > <
> > >> >>
> > >>
> >
>
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
> > >> >> >
> > >> >> > or Android
> > >> >> > <
> > >> >>
> > >>
> >
>
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
> > >> >> >
> > >> >> > .
> > >> >> >
> > >> >> >
> > >> >>
> > >> >> —
> > >> >>
> > >> >>
> > >> >> Reply to this email directly, view it on GitHub
> > >> >> <
> > >>
> >
>
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017451
> > >> >
> > >> >> or unsubscribe
> > >> >> <
> > >>
> >
>
https://github.com/notifications/unsubscribe-auth/BOI23QVBF7QM6RDVN6YX3V34PRCHZBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMRUGEZDCNBYG442I3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF
> > >> >
> > >> >> .
> > >> >> You are receiving this email because you commented on the thread.
> > >> >>
> > >> >> Triage notifications on the go with GitHub Mobile for iOS
> > >> >> <
> > >>
> >
>
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
> > >> >
> > >> >> or Android
> > >> >> <
> > >>
> >
>
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
> > >> >
> > >> >> .
> > >> >>
> > >> >>
> > >> >
> > >>
> > >> —
> > >> Reply to this email directly, view it on GitHub
> > >> <
> >
>
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017456
> > >
> > >> or unsubscribe
> > >> <
> >
>
https://github.com/notifications/unsubscribe-auth/BZQKLH3QBYSXJ7VVQQJZWHT4PRCQBBFKMF2HI4TJMJ2XIZLTSOBKK5TBNR2WLKJRHE2DAOJWGU3TRJDOMFWWLKDBMN2G64S7NFSIFJLWMFWHKZNEORZHKZNENZQW2ZN3ORUHEZLBMRPXAYLSORUWG2LQMFXHIX3BMN2GS5TJOR4YFJLWMFWHKZNEM5UXG5FENZQW2ZNLORUHEZLBMRPXI6LQMWWHG5LCNJSWG5C7OR4XAZNLI5UXG5CDN5WW2ZLOOSTHI33QNFRXHEMCUR2HS4DFURTWS43UUV3GC3DVMWUDSNRSHAZTQNRQU52HE2LHM5SXFJTDOJSWC5DF
> > >
> > >> .
> > >> You are receiving this email because you commented on the thread.
> > >>
> > >> Triage notifications on the go with GitHub Mobile for iOS
> > >> <
> >
>
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
> > >
> > >> or Android
> > >> <
> >
>
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
> > >
> > >> .
> > >>
> > >>
> > >
> >
> > —
> > Reply to this email directly, view it on GitHub
> > <
>
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017466
> >
> > or unsubscribe
> > <
>
https://github.com/notifications/unsubscribe-auth/BOI23QRHJMQQOH7LUX27KN34PRC2PBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMRUGEZDCNBYG442I3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF
> >
> > .
> > You are receiving this email because you commented on the thread.
> >
> > Triage notifications on the go with GitHub Mobile for iOS
> > <
>
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
> >
> > or Android
> > <
>
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
> >
> > .
> >
> >
>
> —
> Reply to this email directly, view it on GitHub
> <
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017467
>
> or unsubscribe
> <
https://github.com/notifications/unsubscribe-auth/BZQKLH7AI5HNOCFOTCIRCA34PRC7VBFKMF2HI4TJMJ2XIZLTSOBKK5TBNR2WLKJRHE2DAOJWGU3TRJDOMFWWLKDBMN2G64S7NFSIFJLWMFWHKZNEORZHKZNENZQW2ZN3ORUHEZLBMRPXAYLSORUWG2LQMFXHIX3BMN2GS5TJOR4YFJLWMFWHKZNEM5UXG5FENZQW2ZNLORUHEZLBMRPXI6LQMWWHG5LCNJSWG5C7OR4XAZNLI5UXG5CDN5WW2ZLOOSTHI33QNFRXHEMCUR2HS4DFURTWS43UUV3GC3DVMWUDSNRSHAZTQNRQU52HE2LHM5SXFJTDOJSWC5DF
>
> .
> You are receiving this email because you commented on the thread.
>
> Triage notifications on the go with GitHub Mobile for iOS
> <
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
>
> or Android
> <
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
>
> .
>
>
—
Reply to this email directly, view it on GitHub
<https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017471>
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BOI23QWBFTEUQCAKMXDAAN34PRDNNBFKMF2HI4TJMJ2XIZLTSOBKK5TBNR2WLKJSGQYTEMJUHA3TTJDOMFWWLKDBMN2G64S7NFSIFJLWMFWHKZNEORZHKZNENZQW2ZN3ORUHEZLBMRPXAYLSORUWG2LQMFXHIX3BMN2GS5TJOR4YFJLWMFWHKZNEM5UXG5FENZQW2ZNLORUHEZLBMRPXI6LQMWWHG5LCNJSWG5C7OR4XAZNLI5UXG5CDN5WW2ZLOOSTHI33QNFRXHEMCUR2HS4DFURTWS43UUV3GC3DVMWUDSNRSHAZTQNRQU52HE2LHM5SXFJTDOJSWC5DF>
.
You are receiving this email because you commented on the thread.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>
.
Ok i'll try to fix i guess
…On Sat, Mar 7, 2026 at 8:17 AM comoxyOG ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
Ok because I’m not home right now to even try to fix is sorry
On Sat, Mar 7, 2026 at 11:16 AM zane2342 ***@***.***> wrote:
> ***@***.**** commented on this gist.
> ------------------------------
> well i know what it's for but like why would you waste your time,
> something that you don't have to do like i understand if its for like
> school or something but not in your own time i'l ask chagbt.
>
> On Sat, Mar 7, 2026 at 8:12 AM comoxyOG ***@***.***> wrote:
>
> > ***@***.**** commented on this gist.
> > ------------------------------
> > to cheat but ask ai for help I forgot how to use this code tbh
> >
> > On Sat, Mar 7, 2026 at 11:11 AM zane2342 ***@***.***> wrote:
> >
> > > ***@***.**** commented on this gist.
> > > ------------------------------
> > > ***@***.*** is my non-school account but why would anyone do
> > > typing club outside of school anyway??
> > >
> > >
> > > On Sat, Mar 7, 2026 at 8:09 AM Jude Umpleby ***@***.***> wrote:
> > >
> > > > wdym its on a chromebook too.
> > > >
> > > > On Sat, Mar 7, 2026 at 8:08 AM comoxyOG ***@***.***> wrote:
> > > >
> > > >> ***@***.**** commented on this gist.
> > > >> ------------------------------
> > > >> It’s pc only btw
> > > >>
> > > >> On Sat, Mar 7, 2026 at 11:07 AM Billy Bob ***@***.***> wrote:
> > > >>
> > > >> > Is your account managed by school or something?
> > > >> >
> > > >> > On Sat, Mar 7, 2026 at 11:06 AM zane2342 ***@***.***> wrote:
> > > >> >
> > > >> >> ***@***.**** commented on this gist.
> > > >> >> ------------------------------
> > > >> >> So my issue is that i can't inspect anymore! is there anyway to
> > fixt
> > > >> it?
> > > >> >>
> > > >> >> On Fri, Mar 6, 2026 at 5:40 PM Benjii1019 ***@***.***> wrote:
> > > >> >>
> > > >> >> > ***@***.**** commented on this gist.
> > > >> >> > ------------------------------
> > > >> >> >
> > > >> >> > hey if anyone could help that would be great how do i use the
> > newer
> > > >> code
> > > >> >> > cause when i try to put it into inspect element it wont work
> > please
> > > >> >> help! :)
> > > >> >> >
> > > >> >> > —
> > > >> >> > Reply to this email directly, view it on GitHub
> > > >> >> > <
> > > >> >>
> > > >>
> > >
> >
>
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6016973
> > > >> >> >
> > > >> >> > or unsubscribe
> > > >> >> > <
> > > >> >>
> > > >>
> > >
> >
>
https://github.com/notifications/unsubscribe-auth/BZQKLH2H6WYG4UN5UC2E5GL4PN4YPBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMJWHE3DEMZUGMYKI3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF
> > > >> >> >
> > > >> >> > .
> > > >> >> > You are receiving this email because you commented on the
> thread.
> > > >> >> >
> > > >> >> > Triage notifications on the go with GitHub Mobile for iOS
> > > >> >> > <
> > > >> >>
> > > >>
> > >
> >
>
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
> > > >> >> >
> > > >> >> > or Android
> > > >> >> > <
> > > >> >>
> > > >>
> > >
> >
>
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
> > > >> >> >
> > > >> >> > .
> > > >> >> >
> > > >> >> >
> > > >> >>
> > > >> >> —
> > > >> >>
> > > >> >>
> > > >> >> Reply to this email directly, view it on GitHub
> > > >> >> <
> > > >>
> > >
> >
>
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017451
> > > >> >
> > > >> >> or unsubscribe
> > > >> >> <
> > > >>
> > >
> >
>
https://github.com/notifications/unsubscribe-auth/BOI23QVBF7QM6RDVN6YX3V34PRCHZBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMRUGEZDCNBYG442I3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF
> > > >> >
> > > >> >> .
> > > >> >> You are receiving this email because you commented on the
thread.
> > > >> >>
> > > >> >> Triage notifications on the go with GitHub Mobile for iOS
> > > >> >> <
> > > >>
> > >
> >
>
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
> > > >> >
> > > >> >> or Android
> > > >> >> <
> > > >>
> > >
> >
>
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
> > > >> >
> > > >> >> .
> > > >> >>
> > > >> >>
> > > >> >
> > > >>
> > > >> —
> > > >> Reply to this email directly, view it on GitHub
> > > >> <
> > >
> >
>
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017456
> > > >
> > > >> or unsubscribe
> > > >> <
> > >
> >
>
https://github.com/notifications/unsubscribe-auth/BZQKLH3QBYSXJ7VVQQJZWHT4PRCQBBFKMF2HI4TJMJ2XIZLTSOBKK5TBNR2WLKJRHE2DAOJWGU3TRJDOMFWWLKDBMN2G64S7NFSIFJLWMFWHKZNEORZHKZNENZQW2ZN3ORUHEZLBMRPXAYLSORUWG2LQMFXHIX3BMN2GS5TJOR4YFJLWMFWHKZNEM5UXG5FENZQW2ZNLORUHEZLBMRPXI6LQMWWHG5LCNJSWG5C7OR4XAZNLI5UXG5CDN5WW2ZLOOSTHI33QNFRXHEMCUR2HS4DFURTWS43UUV3GC3DVMWUDSNRSHAZTQNRQU52HE2LHM5SXFJTDOJSWC5DF
> > > >
> > > >> .
> > > >> You are receiving this email because you commented on the thread.
> > > >>
> > > >> Triage notifications on the go with GitHub Mobile for iOS
> > > >> <
> > >
> >
>
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
> > > >
> > > >> or Android
> > > >> <
> > >
> >
>
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
> > > >
> > > >> .
> > > >>
> > > >>
> > > >
> > >
> > > —
> > > Reply to this email directly, view it on GitHub
> > > <
> >
>
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017466
> > >
> > > or unsubscribe
> > > <
> >
>
https://github.com/notifications/unsubscribe-auth/BOI23QRHJMQQOH7LUX27KN34PRC2PBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMRUGEZDCNBYG442I3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF
> > >
> > > .
> > > You are receiving this email because you commented on the thread.
> > >
> > > Triage notifications on the go with GitHub Mobile for iOS
> > > <
> >
>
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
> > >
> > > or Android
> > > <
> >
>
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
> > >
> > > .
> > >
> > >
> >
> > —
> > Reply to this email directly, view it on GitHub
> > <
>
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017467
> >
> > or unsubscribe
> > <
>
https://github.com/notifications/unsubscribe-auth/BZQKLH7AI5HNOCFOTCIRCA34PRC7VBFKMF2HI4TJMJ2XIZLTSOBKK5TBNR2WLKJRHE2DAOJWGU3TRJDOMFWWLKDBMN2G64S7NFSIFJLWMFWHKZNEORZHKZNENZQW2ZN3ORUHEZLBMRPXAYLSORUWG2LQMFXHIX3BMN2GS5TJOR4YFJLWMFWHKZNEM5UXG5FENZQW2ZNLORUHEZLBMRPXI6LQMWWHG5LCNJSWG5C7OR4XAZNLI5UXG5CDN5WW2ZLOOSTHI33QNFRXHEMCUR2HS4DFURTWS43UUV3GC3DVMWUDSNRSHAZTQNRQU52HE2LHM5SXFJTDOJSWC5DF
> >
>
> > .
> > You are receiving this email because you commented on the thread.
> >
> > Triage notifications on the go with GitHub Mobile for iOS
> > <
>
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
> >
> > or Android
> > <
>
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
> >
> > .
> >
> >
>
> —
> Reply to this email directly, view it on GitHub
> <
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017471
>
> or unsubscribe
> <
https://github.com/notifications/unsubscribe-auth/BOI23QWBFTEUQCAKMXDAAN34PRDNNBFKMF2HI4TJMJ2XIZLTSOBKK5TBNR2WLKJSGQYTEMJUHA3TTJDOMFWWLKDBMN2G64S7NFSIFJLWMFWHKZNEORZHKZNENZQW2ZN3ORUHEZLBMRPXAYLSORUWG2LQMFXHIX3BMN2GS5TJOR4YFJLWMFWHKZNEM5UXG5FENZQW2ZNLORUHEZLBMRPXI6LQMWWHG5LCNJSWG5C7OR4XAZNLI5UXG5CDN5WW2ZLOOSTHI33QNFRXHEMCUR2HS4DFURTWS43UUV3GC3DVMWUDSNRSHAZTQNRQU52HE2LHM5SXFJTDOJSWC5DF
>
> .
> You are receiving this email because you commented on the thread.
>
> Triage notifications on the go with GitHub Mobile for iOS
> <
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
>
> or Android
> <
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
>
> .
>
>
—
Reply to this email directly, view it on GitHub
<https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6017472>
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BZQKLH3KZQ3CI6DI67LNXVD4PRDSRBFKMF2HI4TJMJ2XIZLTSOBKK5TBNR2WLKJRHE2DAOJWGU3TRJDOMFWWLKDBMN2G64S7NFSIFJLWMFWHKZNEORZHKZNENZQW2ZN3ORUHEZLBMRPXAYLSORUWG2LQMFXHIX3BMN2GS5TJOR4YFJLWMFWHKZNEM5UXG5FENZQW2ZNLORUHEZLBMRPXI6LQMWWHG5LCNJSWG5C7OR4XAZNLI5UXG5CDN5WW2ZLOOSTHI33QNFRXHEMCUR2HS4DFURTWS43UUV3GC3DVMWUDSNRSHAZTQNRQU52HE2LHM5SXFJTDOJSWC5DF>
.
You are receiving this email because you commented on the thread.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>
.
it keeps saying unexpected number / invalid token
There shouldn’t get a token
…On Mon, Mar 9, 2026 at 10:15 PM rowdyroldans-pixel ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
it keeps saying unexpected number / invalid token
—
Reply to this email directly, view it on GitHub
<https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6021166>
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BOI23QSN4NI7WFMFB67CDC34P53FZBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMRWGY4DSNJVGY22I3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF>
.
You are receiving this email because you commented on the thread.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>
.
locked aria-hidden on an element because its descendant retained focus. The focus must not be hidden from assistive technology users. Avoid using aria-hidden on a focused element or its ancestor. Consider using the inert attribute instead, which will also prevent focus. For more details, see the aria-hidden section of the WAI-ARIA specification at https://w3c.github.io/aria/#aria-hidden.
Element with focus:
Ancestor with aria-hidden:
it wont even let me say allow pasting and this is a personal laptop
?
what???
…On Tue, Mar 10, 2026 at 2:56 PM rowdyroldans-pixel ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
?
—
Reply to this email directly, view it on GitHub
<https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6022591>
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BZQKLHYQTKOBWTSQX2NELP34QCFRJBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMRWGY4DSNJVGY22I3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF>
.
You are receiving this email because you commented on the thread.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>
.
it keeps saying unexpected number / invalid token
same I also keep on getting this notice
Anyone got an updated one?
no
…On Fri, Mar 13, 2026 at 2:42 AM dylncheah ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
it keeps saying unexpected number / invalid token
same I also keep on getting this notice
Anyone got an updated one?
—
Reply to this email directly, view it on GitHub
<https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-6026942>
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BZQKLH62ZJQPGOV2QESES4L4QPJXFBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMRWG44DSOJQGY32I3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF>
.
You are receiving this email because you commented on the thread.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>
.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hey if anyone could help that would be great how do i use the newer code cause when i try to put it into inspect element it wont work please help! :)