Last active
November 25, 2025 03:42
-
-
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); |
zane2342
commented
Nov 11, 2025
via email
How old are you?
…On Tue, Nov 11, 2025 at 7:38 AM Jude Umpleby ***@***.***> wrote:
Yea, the have not banned mine yet tho
On Tue, Nov 11, 2025 at 12:24 AM sapkotakushal100-web <
***@***.***> wrote:
> ***@***.**** commented on this gist.
> ------------------------------
>
> It works great a little to great they got suspicious, and banned my
> account! its not your fault!
>
> yo I used it in class (grade 5) and the teacher caught me using it, she
> said my accounts going to be deleted but she forgot about it
>
> —
> Reply to this email directly, view it on GitHub
> <https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-5857910>
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/BZQKLH3EW74ZJBQITP7WTHD34GMMBBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMRUGEYDQNJQGU4KI3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF>
> .
> 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>
> .
>
>
you better not be a thirty year old man in his grandma's basement.
…On Tue, Nov 11, 2025 at 7:38 AM Jude Umpleby ***@***.***> wrote:
How old are you?
On Tue, Nov 11, 2025 at 7:38 AM Jude Umpleby ***@***.***>
wrote:
> Yea, the have not banned mine yet tho
>
> On Tue, Nov 11, 2025 at 12:24 AM sapkotakushal100-web <
> ***@***.***> wrote:
>
>> ***@***.**** commented on this gist.
>> ------------------------------
>>
>> It works great a little to great they got suspicious, and banned my
>> account! its not your fault!
>>
>> yo I used it in class (grade 5) and the teacher caught me using it, she
>> said my accounts going to be deleted but she forgot about it
>>
>> —
>> Reply to this email directly, view it on GitHub
>> <https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-5857910>
>> or unsubscribe
>> <https://github.com/notifications/unsubscribe-auth/BZQKLH3EW74ZJBQITP7WTHD34GMMBBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMRUGEYDQNJQGU4KI3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF>
>> .
>> 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>
>> .
>>
>>
>
5th grade
…On Tue, Nov 11, 2025 at 7:39 AM Jude Umpleby ***@***.***> wrote:
you better not be a thirty year old man in his grandma's basement.
On Tue, Nov 11, 2025 at 7:38 AM Jude Umpleby ***@***.***>
wrote:
> How old are you?
>
> On Tue, Nov 11, 2025 at 7:38 AM Jude Umpleby ***@***.***>
> wrote:
>
>> Yea, the have not banned mine yet tho
>>
>> On Tue, Nov 11, 2025 at 12:24 AM sapkotakushal100-web <
>> ***@***.***> wrote:
>>
>>> ***@***.**** commented on this gist.
>>> ------------------------------
>>>
>>> It works great a little to great they got suspicious, and banned my
>>> account! its not your fault!
>>>
>>> yo I used it in class (grade 5) and the teacher caught me using it, she
>>> said my accounts going to be deleted but she forgot about it
>>>
>>> —
>>> Reply to this email directly, view it on GitHub
>>> <https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-5857910>
>>> or unsubscribe
>>> <https://github.com/notifications/unsubscribe-auth/BZQKLH3EW74ZJBQITP7WTHD34GMMBBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMRUGEYDQNJQGU4KI3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF>
>>> .
>>> 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>
>>> .
>>>
>>>
>>
???
…On Tue, Nov 11, 2025 at 7:57 AM Jude Umpleby ***@***.***> wrote:
5th grade
On Tue, Nov 11, 2025 at 7:39 AM Jude Umpleby ***@***.***>
wrote:
> you better not be a thirty year old man in his grandma's basement.
>
> On Tue, Nov 11, 2025 at 7:38 AM Jude Umpleby ***@***.***>
> wrote:
>
>> How old are you?
>>
>> On Tue, Nov 11, 2025 at 7:38 AM Jude Umpleby ***@***.***>
>> wrote:
>>
>>> Yea, the have not banned mine yet tho
>>>
>>> On Tue, Nov 11, 2025 at 12:24 AM sapkotakushal100-web <
>>> ***@***.***> wrote:
>>>
>>>> ***@***.**** commented on this gist.
>>>> ------------------------------
>>>>
>>>> It works great a little to great they got suspicious, and banned my
>>>> account! its not your fault!
>>>>
>>>> yo I used it in class (grade 5) and the teacher caught me using it,
>>>> she said my accounts going to be deleted but she forgot about it
>>>>
>>>> —
>>>> Reply to this email directly, view it on GitHub
>>>> <https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-5857910>
>>>> or unsubscribe
>>>> <https://github.com/notifications/unsubscribe-auth/BZQKLH3EW74ZJBQITP7WTHD34GMMBBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMRUGEYDQNJQGU4KI3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF>
>>>> .
>>>> 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>
>>>> .
>>>>
>>>>
>>>
Then your like a 7-8th grader
…On Tue, Nov 11, 2025 at 7:57 AM Jude Umpleby ***@***.***> wrote:
???
On Tue, Nov 11, 2025 at 7:57 AM Jude Umpleby ***@***.***>
wrote:
> 5th grade
>
> On Tue, Nov 11, 2025 at 7:39 AM Jude Umpleby ***@***.***>
> wrote:
>
>> you better not be a thirty year old man in his grandma's basement.
>>
>> On Tue, Nov 11, 2025 at 7:38 AM Jude Umpleby ***@***.***>
>> wrote:
>>
>>> How old are you?
>>>
>>> On Tue, Nov 11, 2025 at 7:38 AM Jude Umpleby ***@***.***>
>>> wrote:
>>>
>>>> Yea, the have not banned mine yet tho
>>>>
>>>> On Tue, Nov 11, 2025 at 12:24 AM sapkotakushal100-web <
>>>> ***@***.***> wrote:
>>>>
>>>>> ***@***.**** commented on this gist.
>>>>> ------------------------------
>>>>>
>>>>> It works great a little to great they got suspicious, and banned my
>>>>> account! its not your fault!
>>>>>
>>>>> yo I used it in class (grade 5) and the teacher caught me using it,
>>>>> she said my accounts going to be deleted but she forgot about it
>>>>>
>>>>> —
>>>>> Reply to this email directly, view it on GitHub
>>>>> <https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-5857910>
>>>>> or unsubscribe
>>>>> <https://github.com/notifications/unsubscribe-auth/BZQKLH3EW74ZJBQITP7WTHD34GMMBBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMRUGEYDQNJQGU4KI3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF>
>>>>> .
>>>>> 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>
>>>>> .
>>>>>
>>>>>
>>>>
who me? i'm not 30 btw
yes i'm in 7 or 8th grade
Oh sorry my bad
…On Wed, Nov 12, 2025 at 1:54 PM ubg42 ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
yes i'm in 7 or 8th grade
—
Reply to this email directly, view it on GitHub
<https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-5860369>
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BZQKLH2MXB55P5PNHYYXQ7T34OUAFBFHORZGSZ3HMVZKMY3SMVQXIZNMON2WE2TFMN2F65DZOBS2WR3JON2EG33NNVSW45FGORXXA2LDOOIYFJDUPFYGLJDHNFZXJJLWMFWHKZNIHE3DEOBTHA3DBKTBOR2HE2LCOV2GK44TQKSXMYLMOVS2SMJXGQZTSMJSHA22I3TBNVS2QYLDORXXEX3JMSBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DF>
.
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>
.
How do i open console?
Depending on what you’re on:
MacBook F12 or right click and press inspect element then navigate to
console or final option cmd+option+j
Others: right click and click inspect and then navigate to console or
ctrl+shift+j
…On Thu, Nov 13, 2025 at 3:42 PM MrCheese0031 ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
How do i open console?
—
Reply to this email directly, view it on GitHub
<https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-5862085>
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BGTHOVXARXQ3YXTHMAMIAIT34UJNNBFKMF2HI4TJMJ2XIZLTSOBKK5TBNR2WLKJSGQZTQOBXGM4TTJDOMFWWLKDBMN2G64S7NFSIFJLWMFWHKZNEORZHKZNENZQW2ZN3ORUHEZLBMRPXAYLSORUWG2LQMFXHIX3BMN2GS5TJOR4YFJLWMFWHKZNEM5UXG5FENZQW2ZNLORUHEZLBMRPXI6LQMWWHG5LCNJSWG5C7OR4XAZNLI5UXG5CDN5WW2ZLOOSTHI33QNFRXHEMCUR2HS4DFURTWS43UUV3GC3DVMWUDSNRSHAZTQNRQU52HE2LHM5SXFJTDOJSWC5DF>
.
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>
.
What why am i in this chat
…On Thu, Nov 13, 2025 at 3:53 PM Heheha154 ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
Depending on what you’re on:
MacBook F12 or right click and press inspect element then navigate to
console or final option cmd+option+j
Others: right click and click inspect and then navigate to console or
ctrl+shift+j
On Thu, Nov 13, 2025 at 3:42 PM MrCheese0031 ***@***.***>
wrote:
> ***@***.**** commented on this gist.
> ------------------------------
>
> How do i open console?
>
> —
> Reply to this email directly, view it on GitHub
> <
https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-5862085
>
> or unsubscribe
> <
https://github.com/notifications/unsubscribe-auth/BGTHOVXARXQ3YXTHMAMIAIT34UJNNBFKMF2HI4TJMJ2XIZLTSOBKK5TBNR2WLKJSGQZTQOBXGM4TTJDOMFWWLKDBMN2G64S7NFSIFJLWMFWHKZNEORZHKZNENZQW2ZN3ORUHEZLBMRPXAYLSORUWG2LQMFXHIX3BMN2GS5TJOR4YFJLWMFWHKZNEM5UXG5FENZQW2ZNLORUHEZLBMRPXI6LQMWWHG5LCNJSWG5C7OR4XAZNLI5UXG5CDN5WW2ZLOOSTHI33QNFRXHEMCUR2HS4DFURTWS43UUV3GC3DVMWUDSNRSHAZTQNRQU52HE2LHM5SXFJTDOJSWC5DF
>
> .
> 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-5862096>
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BZQKLH5O5P2YNAHEF5G62T334UKX5BFKMF2HI4TJMJ2XIZLTSOBKK5TBNR2WLKJRGYYTSMBUGQ3TBJDOMFWWLKDBMN2G64S7NFSIFJLWMFWHKZNEORZHKZNENZQW2ZN3ORUHEZLBMRPXAYLSORUWG2LQMFXHIX3BMN2GS5TJOR4YFJLWMFWHKZNEM5UXG5FENZQW2ZNLORUHEZLBMRPXI6LQMWWHG5LCNJSWG5C7OR4XAZNLI5UXG5CDN5WW2ZLOOSTHI33QNFRXHEMCUR2HS4DFURTWS43UUV3GC3DVMWUDSNRSHAZTQNRQU52HE2LHM5SXFJTDOJSWC5DF>
.
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>
.
11!!!
…On Wed, Nov 19, 2025 at 11:12 PM sapkotakushal100-web < ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
I am 11 why do you want to know
—
Reply to this email directly, view it on GitHub
<https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-5872407>
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BZQKLH34OVQG4V2WLWJAZ4T35VSUTBFKMF2HI4TJMJ2XIZLTSOBKK5TBNR2WLKJSGQYTAOBVGA2TRJDOMFWWLKDBMN2G64S7NFSIFJLWMFWHKZNEORZHKZNENZQW2ZN3ORUHEZLBMRPXAYLSORUWG2LQMFXHIX3BMN2GS5TJOR4YFJLWMFWHKZNEM5UXG5FENZQW2ZNLORUHEZLBMRPXI6LQMWWHG5LCNJSWG5C7OR4XAZNLI5UXG5CDN5WW2ZLOOSTHI33QNFRXHEMCUR2HS4DFURTWS43UUV3GC3DVMWUDSNRSHAZTQNRQU52HE2LHM5SXFJTDOJSWC5DF>
.
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>
.
idk
…On Thu, Nov 20, 2025 at 6:34 AM Jude Umpleby ***@***.***> wrote:
11!!!
On Wed, Nov 19, 2025 at 11:12 PM sapkotakushal100-web <
***@***.***> wrote:
> ***@***.**** commented on this gist.
> ------------------------------
>
> I am 11 why do you want to know
>
> —
> Reply to this email directly, view it on GitHub
> <https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-5872407>
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/BZQKLH34OVQG4V2WLWJAZ4T35VSUTBFKMF2HI4TJMJ2XIZLTSOBKK5TBNR2WLKJSGQYTAOBVGA2TRJDOMFWWLKDBMN2G64S7NFSIFJLWMFWHKZNEORZHKZNENZQW2ZN3ORUHEZLBMRPXAYLSORUWG2LQMFXHIX3BMN2GS5TJOR4YFJLWMFWHKZNEM5UXG5FENZQW2ZNLORUHEZLBMRPXI6LQMWWHG5LCNJSWG5C7OR4XAZNLI5UXG5CDN5WW2ZLOOSTHI33QNFRXHEMCUR2HS4DFURTWS43UUV3GC3DVMWUDSNRSHAZTQNRQU52HE2LHM5SXFJTDOJSWC5DF>
> .
> 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>
> .
>
>
Dang your young i'm 13
…On Thu, Nov 20, 2025 at 6:34 AM Jude Umpleby ***@***.***> wrote:
idk
On Thu, Nov 20, 2025 at 6:34 AM Jude Umpleby ***@***.***>
wrote:
> 11!!!
>
> On Wed, Nov 19, 2025 at 11:12 PM sapkotakushal100-web <
> ***@***.***> wrote:
>
>> ***@***.**** commented on this gist.
>> ------------------------------
>>
>> I am 11 why do you want to know
>>
>> —
>> Reply to this email directly, view it on GitHub
>> <https://gist.github.com/Domiii/52cf49d780ec8c9f01771973c36197af#gistcomment-5872407>
>> or unsubscribe
>> <https://github.com/notifications/unsubscribe-auth/BZQKLH34OVQG4V2WLWJAZ4T35VSUTBFKMF2HI4TJMJ2XIZLTSOBKK5TBNR2WLKJSGQYTAOBVGA2TRJDOMFWWLKDBMN2G64S7NFSIFJLWMFWHKZNEORZHKZNENZQW2ZN3ORUHEZLBMRPXAYLSORUWG2LQMFXHIX3BMN2GS5TJOR4YFJLWMFWHKZNEM5UXG5FENZQW2ZNLORUHEZLBMRPXI6LQMWWHG5LCNJSWG5C7OR4XAZNLI5UXG5CDN5WW2ZLOOSTHI33QNFRXHEMCUR2HS4DFURTWS43UUV3GC3DVMWUDSNRSHAZTQNRQU52HE2LHM5SXFJTDOJSWC5DF>
>> .
>> 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