returncatalogbottom
rules1. you must be 18+ to use this site 2. no NSFW/gore 3. no bigotry 4. if staff don't like your post they may delete it or ban you

shimp
>>688186
if the devs spent their idle time working on code while the agents worked on code it would be better, plus they were using sonnet 3.7 which is lole
>>688190
shimp
or even 3.5
shimp
I forgor
shimp
plus time is a dumbass metric anyways that only big businesses care about. "productivity" etc
shimp
interesting study tho
anon
Said what? What did I say?
shimp
you said something about seafood and a dinner table I think
shimp
ouch my toe...
shimp
>>688190
is this supposed to imply I'm an NPC or is this a general reaction image
>>688203
anon
>>688202
i don't have a cyborg glegle reaction image so this one sufficed
shimp
ahh oke
shimp
isn't communication wonderful
shimp
20231218_095303.jpg
posting images from my phone is so dangerous there is a minefield of NSFW images
anon
this is why i can't phonepost
shimp
I'm just very careful which images I thumb over to scroll
anon
one day I will be permabanned for accidentally posting a picture of my penis
>>688212
anon
this is why i need a carefully tagged database of reaction images
>>688214
shimp
>>688210
not perma probably just a week
shimp
you've also been very well behaved lately so you've earned some leniency
anon
alright
anon
anon
dinnerladymoder
god hates lacanians
dinnerladymoder
what a terrible end to a manwha
anon
huh
anon
took my shower
anon
about to go to sleep
anon
"depression is a downwards spiral, breaking the cycle is the hardest part, but once you do it's uphill"
breakinig the "cycle" does absolutely fucking nothing for me
>>688226
anon
Not liveposting... cowardly
anon
>>688224
i don't know what to try to get better anymore, it feels so extremely hopeless.
everything i could do to improve at this point depends on other people, and that's just not happening.
anon
the sad reality is just that nobody really cares, and that's sort of fair, because why would they
anon
Well what could you do to improve in your opinion?
>>688229
anon
Have you been lookin around for work? Also what about small steps you could take
anon
i tried, believe me, i tried.
anon
Are you able to stick to a routine?
>>688233
anon
>>688232
yes, but i don't know what kind of beenfits i'm supposed to get out of it..
i shower everyday, i try to acquire some sort of food..
But it still feels like absolutely nothing..
anon
And are you seeing a therapist or looking into medication?
>>688237
anon
>>688229
>people to talk to regularly
i just don't really get replies, or if i do, it's like 10 days later and they're super short.
it really feels like the ones i do talk to do not care, at all.
i think the last time someone asked how i am on their own was liike... 1 or 2 months ago?
anon
Do you live in a city or in a place that's out of the way
anon
>>688234
i dont have a therapist, and if i had one, i wouldn't take whatever medication they'd prescribe.
that shit doesnt work
anon
Medication doesn't work on it's own but it helps
anon
Depression isn't just feeling kinda bad, it is a physical thing too
>>688240
anon
>>688239
yea but the physical aspect is not solved by chugging down ssris
anon
It assists with the physical aspect with time
anon
well eitherway, me eating ssris like theyre skittles is not happening
anon
What kinda work are you looking into doing?
1.0948%booger!boymodewng
#ksay twink anon
anon
hello
1.0949%booger!boymodewng
hi
anon
:D
anon
You have greater chances making attempts at improvement than declaring treatment to be ineffective entiretly
1.0950%booger!boymodewng
back to vibe coding
>>688251
1.0951%booger!boymodewng
i need to finish this program
>>688253
1.0952%booger!boymodewng
no
anon
hmm
1.0953%booger!boymodewng
this fucking tamper monkey script is at like 600 lines of code tho and it's triggering me because i have to add in more fucntions
1.0954%booger!boymodewng
and then fix the UI
luca
UI is very cumbersome
luca
good luck!
1.0955%booger!boymodewng
whjy are there so many twinks here today
luca
we multiply
anon
we are legion
1.0956%booger!boymodewng
the code it writes is insane tho
1.0957%booger!boymodewng
like insane in a bad way
1.0958%booger!boymodewng
it's trying to do everything in the most complicated way possible
luca
estimate the algorithm's complexity
luca
I'm not sure why I expected something other than Javascript
1.0959%booger!boymodewng
let finished = false;
const checkRace = () => {
const label = $('.gameStatusLabel');
const labelText = (label?.innerText '').toLowerCase();

Helper: visible "Race Again / Next race" anchor inside navControls
const navAnchor = Array.from(document.querySelectorAll('a.raceAgainLink, .navControls a'))
.find(a => /race\s*again|next\s*race|play\s*another/i.test(a.innerText) && a.offsetParent);

const preRacePattern = /(about to start|waiting for more people|the race is on|\bgo!?\b)/i;
const finishedPattern = /(you finished|the race has ended|did not finish|results)/i;

let isFinished = false;

if (label) {
if (finishedPattern.test(labelText)) {
isFinished = true;
} else if (preRacePattern.test(labelText)) {
isFinished = false; explicitly in-race / pre-race
}
}

If label missing or inconclusive, rely on a *visible* navAnchor
if (!isFinished && navAnchor) {
isFinished = true;
}

if (isFinished) {
if (!finished) { transition edge
if (state.isRunning) {
onFinishRace();
} else if (state.autoNext) {
doNextRace();
}
finished = true;
}
} else {
finished = false;
}
};
>>688283
1.0960%booger!boymodewng
vs

Maintrack, practice track
else if (mutation.target == $(".gameStatusLabel")[0]) {
if (mutation.target.textContent.includes("The race has ended") mutation.target.textContent.includes("You finished")) {
autoRace();

this is how we did it
1.0961%booger!boymodewng
ltierally just look for "The race has ended"
1.0962%booger!boymodewng
but for some reason claude is like, lemme check for all possibilities about this race beign ended...
1.0963%booger!boymodewng
but idk how to code actually, and i'm really lazy and it doesn't actually matter so
luca
Ah
luca
I mean, hey, at least you're having fun, right?
1.0964%booger!boymodewng
i'm not
1.0965%booger!boymodewng
i just wanna build this stupid thing
1.0966%booger!boymodewng
97.png
i think it esentially works i just gott a fix the ugly UI
>>688362
luca
can you do CSS?
1.0967%booger!boymodewng
no that's gonna be claudes job
luca
you really outsourced everything to an AI... wild
luca
stop javascript jumpscaring me
1.0968%booger!boymodewng
yeah and it did everythign in the most inefficent way despite me explictly saying hey here's this code you can copy that works
anon
>>688268
yea. this seems extremely fragile
liiike this part smells really bad:

if (label) {
if (finishedPattern.test(labelText)) {
isFinished = true;
} else if (preRacePattern.test(labelText)) {
isFinished = false; explicitly in-race / pre-race
}
}
>>688285
1.0969%booger!boymodewng
which is hilarious
1.0970%booger!boymodewng
>>688283
see the problem it was running into is despite me telling it what it could specifically look up it wanted to add all this dumb shit for no reason
>>688288
1.0971%booger!boymodewng
literally all it needs to do is observe a popup and read text and then click
pot of greed
5 seconds to generate code and 5 hours to debug it
1.0972%booger!boymodewng
>>688288
const nextRaceObserver = new MutationObserver(muts => {
if (!state.isRunning && state.autoNext) {
for (const m of muts) {
for (const n of m.addedNodes) {
if (n.nodeType === 1 && /raceAgainLink/i.test(n.className) && n.offsetParent) {
console.log('AutoNext observer: raceAgainLink added');
doNextRace();
return;
}
}
}
}
});
1.0973%booger!boymodewng
oh it does
1.0974%booger!boymodewng
it just literally also does a bunch of other dumb shit i can't be bothered to fix
luca
moonlight is coming through my window, looks beautiful outside tonight
>>688294>>688299
1.0975%booger!boymodewng
listen it's not good at all but it do be working
1.0976%booger!boymodewng
>>688292
prettyyyyyyyyyyyyy wow
1.0977%booger!boymodewng
full moon tonight too i think
>>688296
luca
>>688295
looks like it. Maybe I should go for a nightwalk
luca
That's quite the name
1.0979%booger!boymodewng
like this is the funniest part to me:

Only run in top-level browsing context to avoid duplicate UIs inside iframes
if (window.self !== window.top) return;

Prevent duplicate injection (single instance per document)
if (window.swagMachineLoaded) return;
window.swagMachineLoaded = true;

there was a single glitch, and it tried one thing, didn't work, then was like yeah i'll try this and one of them works, and it didn't remove the other one, so there's just two of these if statements and idk which one actually stops the glitch lmao
>>688302
nonners
>>688300
try deleting all the code, quitting typeracer and never playing it again, remove the problem instead of solving it
1.0980%booger!boymodewng
god the more i look at it the more bad i realize how it is
1.0981%booger!boymodewng
Move to next ghost with rate limiting
const moveToNextGhost = () => {
if (!state.isRunning !rateLimit(MIN_GHOST_DELAY)) return; configurable minimum between ghosts

state.currentIndex++;
state.raceCount = 0;
save();

if (state.currentIndex >= state.ghostQueue.length) {
alert(`🎉 Completed all ${state.ghostQueue.length} ghosts!`);
return stop();
}

console.log(`Moving to ghost ${state.currentIndex + 1}/${state.ghostQueue.length}`);
setTimeout(nextGhost, 500);
};

const nextGhost = () => {
if (!state.isRunning) return;

const link = state.ghostQueue[state.currentIndex];
console.log(`Loading ghost ${state.currentIndex + 1}/${state.ghostQueue.length}: ${link}`);
window.location.href = link.startsWith('http') ? link : `https://play.typeracer.com/${link}`;
};
1.0982%booger!boymodewng
why isn't this just one function
nonners
wtf are you doing
1.0983%booger!boymodewng
ok so all it needs to do righ
1.0984%booger!boymodewng
is check for "You've run out of saves" or "Saves remaining:0" and then if that's the case move to the next link in the queue. And this is how claude decided to do it
nonners
where are the saves saved
nonners
in state.isRunning?
1.0985%booger!boymodewng
what do you mean
1.0986%booger!boymodewng
saves are like a website thing, so if you do a race you can hit the "save" button and then like it
1.0987%booger!boymodewng
it'll count towards your score, but if you don't hit it then it won't
nonners
where the variable where thats store
nonners
d
nonners
where are you checking the saves
1.0988%booger!boymodewng
like in my code ?
luca
t
1.0989%booger!boymodewng
if (popup) {
const text = (popup.innerText popup.textContent "").toLowerCase();
const isOutOfSaves = OUT_OF_SAVES_PATTERNS.some(pattern => text.includes(pattern));
if (isOutOfSaves) {
console.log("🚨 OUT OF SAVES DETECTED! Moving to next ghost");
Attempt to close the popup gracefully
const closeBtn = popup.querySelector('button, .gwt-Button, .gwt-Anchor, [class*="button"], [class*="close"], a');
closeBtn?.click();
Move to next ghost almost immediately (tiny buffer for DOM updates)
setTimeout(moveToNextGhost, MIN_GHOST_DELAY + 50);
return;
}
Still has saves, continue with current ghost
continueCurrentGhost();
1.0990%booger!boymodewng
but it could literally be this, i'm just too lazy to fix it

function checkSaveCount() {
let popup = $(".saveScoreSavedPopup")[0];
if (popup) {
if (popup.innerText.includes("Saves remaining: 0")) {
window.close();
}
} else {
setTimeout(checkSaveCount, 10);
}
}
nonners
yea
1.0991%booger!boymodewng
i literally put that code in there btw, and all i wanted it to do was instead of closing the window to go to the next in the queue basically, but then it did whatever the fuck
nonners
so if there are no more saves you need to call this?
const nextGhost = () => {
if (!state.isRunning) return;

const link = state.ghostQueue[state.currentIndex];
console.log(`Loading ghost ${state.currentIndex + 1}/${state.ghostQueue.length}: ${link}`);
window.location.href = link.startsWith('http') ? link : `https://play.typeracer.com/${link}`;
};
1.0992%booger!boymodewng
basically yeah
1.0993%booger!boymodewng
i mean it could literally be
if (popup.innerText.includes("Saves remaining: 0")) {
nextGhost();};
nonners
you need to call taht from checkSaveCount
nonners
yea so whats the issue
1.0994%booger!boymodewng
then i have to go through and fix it instead of claude doing it for me
nonners
unusable
1.0995%booger!boymodewng
the only thing i'm worried about a bit is the security of it kinda
1.0996%booger!boymodewng
because it uses the local storage i think to store the links, and then i think it preloads the next up link in a cookie which seems exploitable or whatever
>>688336
nonners
arent you just storing the link to the room or whatever
1.0997%booger!boymodewng
yeah
1.0998%booger!boymodewng
but it takes too long to load from local storage so instead it stores the next link as a cookie so it preloads the data so it loads faster basically
1.0999%booger!boymodewng
const save = () => localStorage.setItem('bulkRacerState', JSON.stringify(state));
const load = () => {
const data = JSON.parse(localStorage.getItem('bulkRacerState') '{}');
Object.assign(state, data);
if (typeof state.autoNext !== 'boolean') state.autoNext = false;
};
const $ = (sel, all) => all ? document.querySelectorAll(sel) : document.querySelector(sel);
const find = (sel, text) => Array.from($(sel, true)).find(e => e.innerText === text);
1.1000%booger!boymodewng
yeah i think you're right, i'm dumb, that's why i used claude lole
nonners
but i dont really know whats happening, are you trying to finish the game and then open a new one
1.1001%booger!boymodewng
basically
1.1002%booger!boymodewng
like i have lets say 50 links
1.1003%booger!boymodewng
and then i copypaste them to a textbox and then as soon as i run out of saves i want it to load the next link
1.1004%booger!boymodewng
until i've exhausted the list or manually hit stop
nonners
so if you have 50 at the start, you finish one, it saves the rest of the links in cookies and opens another window?
nonners
or tab
1.1005%booger!boymodewng
i think how it's working is it just replaces the URL because its all happening on the same page essentially
nonners
idk thats fine
1.1006%booger!boymodewng
but maybe it's closing and opening it so fast i don't notice
nonners
window.location.href = link.startsWith('http') ? link : `https://play.typeracer.com/${link}`;
no its just going to the next link in the same tab
1.1007%booger!boymodewng
is that fine?
1.1008%booger!boymodewng
idk lol
nonners
yea
nonners
unless someone somehow injects a malicious link in your texbox, idk how that would happen
>>688365
1.1009%booger!boymodewng
yeah i mean i would have to manually copy paste it into the textbox
1.1012%booger!boymodewng
::nonners
>>688357
#throw
1.1013%booger!boymodewng
::strawgirl
#throw >>688357
1.1014%booger!boymodewng
>>688355
::strawgirl #throw
1.1015%booger!boymodewng
>>688297
::glegle #throw
1.1016%booger!boymodewng
>>688277
::glegle #throw
1.1017%booger!boymodewng
>>687927
::glegle #throw
1.1018%booger!boymodewng
ababababa
1.1019%booger!boymodewng
>>688356
thank you btw nonners, i appreicate you reviewing my ai slop code and helping to alleviate some of the anxiety i had about it
nonners
yw
1.1020%booger!boymodewng
sadchan
luca
.play sweet memories seiko
finch
wah
SadChan🍉🍉
booger
SadChan🍉🍉
ilu booger
1.1021%booger!boymodewng
ilu SadChan Melon Melon Gayflag
>>688379
1.1022%booger!boymodewng
1.1023%booger!boymodewng
aaaaaaaaaa
>>688383
luca
.play blank banshee wavestep
luca
>>688380
aw, you're not a bird, then?
luca
.play idol elton john
sæкі
.play vampire weekend step video
sæкі
heya
sæкі
hm
finch
haiii saek
sæкі
heya
sæкі
.play grebz клок FBI
sæкі
hows chu been
finch
meh sad abt being ugly
finch
hru
sæкі
ur not
sæкі
but eh
finch
why r u eh :(
sæкі
5
sæкі
eh
sæкі
gah day
finch
:(
sæкі
hope chu can feel a lil better in times
finch
ill probably never be able to be happy w my disgusting body unless i delude myself enough that i can live w it
sæкі
u can
sæкі
nu
sæкі
is true that ur cute n nicu
finch
sorry saek im not in a mood for being hugboxed rn :/
>>688426
sæкі
not hugboxing
sæкі
saying how I feel
finch
everyones entitled to their opinion ig
sæкі
not everyone is valid like ur hate of self
sæкі
1
sæкі
>>688416
I downloaded all of brans art
finch
waow
finch
thats a lot
sæкі
I couldn't errr
sæкі
being here day before last was causing me psychic damage so I just went away and downloaded every post for like 2.5 hrs
>>688444
finch
what happened that day
sæкі
brainworm posting
finch
ohh
finch
im gonna eep u should send me the angel ones uh for a friend
sæкі
1
sæкі
pat
sæкі
hehe
sæкі
if send u stuff will probs send moar that haven't seen n
I hope u can rest well soons
finch
yayaya! i have a concert tomorrow and i have to be on a plane super early in the morning so ive gotta somehow wake up at like 5am tmrw night
>>688446
sæкі
qt
sæкі
.skip (video skipped)
sæкі
>>688441
nicu
I might go to street festival w shows my dad books on Saturday but family is gonna be gone for it for whole weekend
finch
oo cool
sæкі
hope u have a nice time at show cuties
finch
car seat headrest!!!! :3
finch
IMG_2143.jpg
heres some psychic damage before i go to sleep gn worms
sæкі
ye
sæкі
hehe
sæкі
hehe
sæкі
think u said
sæкі
is cute
sæкі
1
finch
anyway i sleep for reals now
finch
gn
sæкі
sweet dreams, cutiepie
sæкі
1
sæкі
just starting to look into the contrapoints post thing
anon
oh this site is still up
anon
this rebrand is lame though tbqhwu
>>688531
sæкі
ok and
sæкі
helo
anon
hi
anon
i havent post here since last year
sæкі
ah
sæкі
its, at night, been a bit quiet w people busy lately
sæкі
usually a lot more ppl tho and 16 connected rn
anon
i remembver sometimes it would be like six people and i could still chat
sæкі
usually this board will have 4-10 ppl at once
sæкі
as of late
sæкі
except we just had like three people move apartments and are y'know
anon
yeah makes sense
anon
i moved STATES and have j*b now so i havent been on pc as much
sæкі
silly
sæкі
15250.jpg
i need to take the thing to begin the contracting I was, on top of list a bunch of gear on eBay
them try and move states
::eepy yuri
anon
it has been beneficial for me except for the part where i got anxious applying for job and decided to manmode and now i am stuck doing that for the forseeable future because i dont want to talk about it
sæкі
hope u can work towards being able to align ur presentation w self
bwa
anon
its retail so i dont get much control over presentation orz. my cool gay work uncle can Tell though. he theys me on the radio which is sort of funny
anon
hopefulkly u can get things sorted and also avoid my mistake wwwww
anon
dunno where ur from or going (not really asking either) but getting a big reset like that is good for brain in a lot of ways. i am still adjusting to the fact my parents cannot see everyting that happens in my house
sæкі
393.png
gl yea uh retail is not fun with it
but hope you can maybe get knowing coworkers enough to be backed up if u ever need
::sad gle
and
ye, best wishes for peeps, too; but just will say broadly in US
be safe tho
anon
its a place where u can be Visibly Transsexual at least. i would not be the only such person working at this store. i am just neurotic
anon
all of the teenage boys i work with think i am a teenage boy
sæкі
thasgud
maybe see about, in/over time, talking to that person if possible and seeing how it went for them, there
but yea its uh a bit of a pain to come out to everyone you get to know in person and have to hope things are fine
tho it isn't as bad in some places, I just - for the moment - am living in the middle of nowhere farm region that isn't the best for it
sæкі
just got reminded of the weird guy who would go on walks or runs in our area wearing a plate carrier for some reason
anon
lmao
sæкі
strange area
sæкі
need to find out if the only trans person around here is okay, she kinda just disappeared which is scary for someone who had been in jail before
>>688504
anon
i havent seen anyone open carry sincei moved
sæкі
stay safe thoughs peeps
sæкі
she had loads of prison tattoos lel
sæкі
awe yeah
I don't think you can, here, but I have been on dates n such n the glove box was opened and y'know
sæкі
in an area thats known for gun violence
sæкі
take the care that chu n peeps need tho
anon
i hear guns a lot more here but i never see them its strange
sæкі
yeah
sæкі
when I lived in the more city/urban area in the region, I'd hear guns but not see them
anon
back home ppl would just have the blick v obvioujsly in their hoodie pocket
sæкі
yea lelol
anon
brb cigarette
anon
Don't smoke kids
anon
Don't smoke children either
sæкі
got sum cheez n mosser
anon
nicenice
anon
i am gonna go bed actually. i am exhausted
sæкі
o/
anon
gn!!!'
sæкі
nini
sæкі
o7
sæкі
weba
noiada
gm
sæкі
gmm mmmm
lain from sissy pirate radio
>>688533
they did
lain from sissy pirate radio
sorry that was also me
sæкі
hehe
lain from sissy pirate radio
the flag anon not the one who left that is baabahwahwheowejiwoejifjoeapfhohuiefUI(S))()()()()()()()()()()()()()( . Y . )
sæкі
lol
sæкі
yea I was like
sæкі
gm
lain from sissy pirate radio
ive been awake for a few hours
good morning saeki
sæкі
yea
sæкі
been up since 12 or 1
lain from sissy pirate radio
i keep spending time learning more about computer things, language models, etc
I'm just thinking like, is any of this worth the time I'm putting in
It's really weird because my worldview feels like an obnoxious abstraction
Very detached
sæкі
it can be a lot
sæкі
n lel
sæкі
also sort of like that second part but more trying to explore most topics than just puters, though also a lot of that
lain from sissy pirate radio
i yap a lot about commodification of like, the human spirit (however you want to quantify that)
and i almost kind of think that there won't be a lot of time left for me? nothing specific, i just always have that feeling
im not sure i could look back at a lifetime of playing with the thinky sand toys and imagine that was a good use of my life
sæкі
I get that but a lot of it is just mostly a feeling, though you can work towards doing the things you wish to,
also whats thinky sand toys or just arbitrary example
nonners
silicone
lain from sissy pirate radio
computers
nonners
silly cone
lain from sissy pirate radio
silly catte
sæкі
::silly
sæкі
D:
sæкі
silly cat
lain from sissy pirate radio
15660.gif
::meowza
nonners
this reminds me of that microsoft buying billions of dollars worth of sand meme
sæкі
might have to take two hour plus long ubers tomorrow I do not like this
>>688568
nonners
.play dunkeky microsoft sucks
nonners
huh
nonners
.play test
lain from sissy pirate radio
>>688564
what why
sæкі
u misspelled dunkey
nonners
.skip (video skipped)
sæкі
also
nonners
it should still find it
sæкі
cus uh
nonners
.play dunkeyu microsof sucks
sæкі
music street festival my dad booked and is in city
sæкі
will mean I don't have to stay in the city as my family are, and if I go or not, I'll be home alone n able to relax for a while
other than that day
sæкі
would prefer to get to the train and take shorter ubers but they wan do that
sæкі
whaspeeps up to today
and heya nonners
nonners
hi saeki
lain from sissy pirate radio
do.. do ubers genuinely take people on like
2hr trips?
sæкі
yeah
sæкі
I think they don't tell the drivers how far the trip will be
lain from sissy pirate radio
wtf
sæкі
but there's people who have found drivers willing to accept doing drives cross country
sæкі
the pain of gig economy
lain from sissy pirate radio
thats literally like putting up a quest for the main character
sæкі
lol

returncatalogtop