#2027_summer

1 messages · Page 6 of 1

dawn valve
#

2 above c1💀

rain skiff
#

how is scaleai > cohere

#

are we actually stupid

dawn valve
#

It’s in this ss

vivid stirrup
finite mortar
#

💀

vivid stirrup
#

help fix the elo

vivid stirrup
rain skiff
#

bro how is zon 4th

green elk
rain skiff
#

and higher than deepmind

tranquil sand
#

Nah this is actually skewed asf cuz GitHub is below Zon

spare moss
#

strafe is top 0.0001 % male

dawn valve
#

Do u get free DoorDash if u work there

tranquil sand
#

Whoever is skull emojing me needs only look at the intern offer channel bruh

sweet cairn
tranquil sand
sweet cairn
#

It says like 130k

livid topaz
# peak cave yoo

vihaan the goat he knows every ranking what he says is absolute

full chasm
#

holy fuck why is c1 F tier

#

its literally faang adjacent

livid topaz
#

It’s actually 7% of Amazon

tranquil sand
#

Aura is not 1:1 with res value

dire dirge
#

i always thought uber about the same as dd but uber like 30 places above is crazy 🤣

vivid stirrup
#

yeah anthropic is way too low

#

idk why

#

fuck why did i just spend like 2 hours standardizing the zon currency

#

i could of done so much with my time

full chasm
#

hell no

foggy fern
#

is uber even good

#

like most of the uber interns i see arent that cracked

mint quest
#

😂

#

bro its uber just take it and go to sleep

#

whats with the people in this server complaining about good companies

foggy fern
#

cant didnt apply

mint quest
#

bro

#

😭

fierce pendant
mint quest
#

and if their prev is not faang adj then they are not cracked

queen vortex
#

Meta laying off more ppl?

full chasm
#

ye

mint quest
#

oh yea

queen vortex
#

gg

#

@unique robin gg

lucid apex
#

aren't a solid amount of companies laying off this quarter?

queen vortex
#

Who

unique robin
#

hi

full chasm
mint quest
#

gg if youre working at meta instagram boomerang filter team 🤣

queen vortex
#

Ayman ur getting meta recind

foggy fern
#

u can tell if someones high aura or not

full chasm
#

true

lilac hemlock
#

anyone have a video/explanation for trapping rain water neetcodes isnt really that good ngl

fierce pendant
hidden shuttle
#

is this a the order faang summer 2027 apps will come out? Apple, Google, Meta, Netflix................Amazon

fierce pendant
foggy fern
undone mirage
fierce pendant
#

this isnt sabotage 😭

#

google opened in august last time

foggy fern
#

greedy loo mfs

fierce pendant
#

ok sorry @hidden shuttle

foggy fern
noble lion
undone mirage
#

and then you'll understand

lilac hemlock
#

tbf i didnt even get to the code of it yet but its just a lot

#

i do plan to trace it though and actually just follow each variable

knotty steeple
#

Rather than watch the video

#

And this is a skill I picked up

#

You know the general structure right

#

One pointer at the left

#

One pointer at the right

lilac hemlock
#

yes

knotty steeple
#

Advance the left pointer. See the implications of that

#

Then you’re gonna hit a roadblock if I’m not mistaken, where now your left is very high

lilac hemlock
#

yeah thats what happened in my original attempt

knotty steeple
#

Like you kind of hit a dead end where you need to make a massive jump on the left side

#

To continue trapping rain water

#

When that happens

#

Start advancing your right

#

If your dead end on the right is higher than your dead end on the left

#

Now move the left again

#

As you advance the pointers, think about the simplest way to track what the “water” will be

#

Essentially, what do you care about right now?

lilac hemlock
#

mmm okay

knotty steeple
#

Yeah

#

I thought that neetcode video was less intuitive as well, what really helps with leetcode in general is trying to trace how you can take advantage of the data structure

#

And usually that involves pretending like you’re the computer and you’re moving stuff around

#

And you can’t just look at the data, everything so abstracted so you kind of pretend like given my current state as the computer, what should I logically do next

lilac hemlock
#

yeah he kinda just throws out stuff and for instance im not fully sure why we have to keep maxLeft and maxRight on top of a left and right pointer (like i see why its needed, but im not sure how to come up with that/what its pure necessity is)

#

yeah true

knotty steeple
#

Pure necessity for that is

#

The max height on the left and right

#

Tell you something very specific

#

That as long as i don’t encounter anything TALLER than what i have now

#

I can trap water in between

vivid stirrup
knotty steeple
#

For example given 2 1 1 2

#

Your max left is 2

#

Max right is 2

#

As you advance left forward, you can very clearly see

#

In between the 2 tall columns which are your max,

#

You get to store water

#

And so you can advance left forward free of charge to both check if you just violated the Max left condition

#

And you can advance it free of charge to calculate the height difference between max left and your current index

#

And that’ll be how much water that specific index stores

#

How you come up with that is kind of what makes the problem hard

lilac hemlock
#

yeah its kinda disgusting and im scared because i feel slow

#

maybe i just need to sleep on it and embrace confusion

#

also my first hard problem i guess

unique robin
#

what is it

lilac hemlock
#

3/4 online mods are larp

strong violet
#

Hi ayman

unique robin
#

hi mark

strong violet
#

Gratz on wf tm

unique robin
#

thanks

strong violet
#

What is eficc

unique robin
#

people tell me its quant dev

queen vortex
#

Wait u posted?

unique robin
#

though im nto sure

#

yeah

queen vortex
#

Folk i deactivated my linkedin

#

Uh

strong violet
#

Sounds cool at least

balmy bolt
#

ayman is wf agi team

unique robin
#

it stands for Electronic Fixed Income, Currencies, and Commodities ("eFICC")

strong violet
#

I see

#

Ur a junior right

#

Or senior

unique robin
#

sophmore maybe

queen vortex
#

Ml quant team

strong violet
#

Wat

unique robin
#

im taking a year off

#

im pretty sure

#

cause fall + spring coops

strong violet
#

Interesting

unique robin
#

unless spring doesnt pull through

strong violet
#

Do you already have some lined up

unique robin
#

no

#

fall not spring

strong violet
#

Fair

#

Should be a calm lil summer tho

#

Come pull up to the chi

green elk
#

@trail karma sudo meetup in nyc this summer lol

lilac hemlock
# knotty steeple The max height on the left and right

ohhhh i just realized with neetcode's solution its because if you shift right (since maxLeft will be greater) and you keep maxRight youll be able to calculate the water level at that current position purely because the minimum height of the two is what determines the water level

like if you have [3, 1, 2] only 2 matters so you can set maxRight to 2, move right from 2 to 1, and then use maxRight to calculate the water level here

unique robin
#

i wish

neat hemlock
#

quant dev at wells fargo wow

lilac hemlock
#

mts @ wells fargo

strong violet
#

Shits tuff

lilac hemlock
#

even better

#

"building @ wf"

strong violet
#

God everyone here is so gmi

unique robin
#

buildnig @ wf

#

is actually a good one

#

hold up

undone mirage
unique robin
#

im updating my tag

#

thank you mitrochondria

#

actually maybe not

lilac hemlock
#

what are you gonna change it to/are you gonna keep it

unique robin
#

its just swe intern right now

lilac hemlock
#

thats fair

unique robin
#

building is too high of an aura tag for wf

lilac hemlock
#

lol

unique robin
#

ill save it

lilac hemlock
#

one person i know has "infra @ [incoming]"

#

because theyre on the infra team

#

and its not like crazy either

unique robin
#

well that makes sense

#

@queen vortex can u get me nvidia spring

#

please

#

gpu team

lilac hemlock
#

tbf nobody will know "eficc @ wf" off the top of their head

unique robin
#

please

lilac hemlock
#

lol

green elk
lilac hemlock
queen vortex
unique robin
#

though im not really trading

queen vortex
#

Im gonna do more low lvl shit i think to pivot into this

#

has anyone done intel proc

urban ore
#

cause thats deadass what u ar

#

e

lilac hemlock
#

thats lowkey so fire

solid portal
#

Bro

unique robin
#

that larp

#

would be insane burh

solid portal
#

2027 summer

#

Is so long away ima be like 35 by then

urban ore
#

woah

#

stay youthful twin

undone mirage
lilac hemlock
#

might just create a personal website in rust

dark bane
sharp bane
#

Hi

solid portal
#

Classic

nimble oak
#

hello fellow ngmis

#

i just realized that this is 2027 summer now

#

it's actually so over i'm officially an unc

undone mirage
#

🥀

worthy palm
nimble oak
worthy palm
#

apparently there are a bunch of forest fires right now

#

uhhh

nimble oak
worthy palm
#

what in tarnation

lilac hemlock
#

what the

strong violet
#

so like

worthy palm
#

its there wym

nimble oak
#

there's even one next to DC wtf

strong violet
#

nah i know its there its just dead af

#

🥀

worthy palm
#

dude my entire apartment smell like smoke rn

#

all of UF is dying

#

but apparently its contained and we are good

undone mirage
#

its 2027 time

urban ore
#

omg bruh

crystal pendant
#

chiz we are doomed

crystal pendant
#

chiz do i got ur insta

urban ore
#

i dont use it

crystal pendant
#

add me

strong violet
#

2027 summer stuff isnt rlly open like that rn though right

urban ore
#

add mark

urban ore
#

@strong violet

crystal pendant
#

mark add my insta

#

and chiz

#

mark WHY DIDNT I SEE UR LI POST

#

HOLY MOG

#

mark actually chad

strong violet
#

🤣 bros only 2 weeks late

#

dm me ur ig @crystal pendant

crystal pendant
#

i deleted linkedin off my phone

strong violet
#

valid

cinder snow
#

bro 2027 summer

crystal pendant
#

@urban ore

#

@lilac hemlock

strong violet
#

FAH

urban ore
#

woah wtf

barren maple
#

yo chill

urban ore
#

woah

crystal pendant
#

woah

barren maple
#

im mogged

#

packing bags rn going home

queen vortex
#

Damn msft zon and meta layoff

#

Brutal month

dawn valve
urban ore
#

do microsoft have crazy layoffs

crystal pendant
#

or did they happen

dawn valve
#

they not zon level but they up there lowkey

queen vortex
urban ore
#

zon is always confirmed 😂

#

idk about microsoft

crystal pendant
#

zon is just insane

#

ig thats why we all can get saved but then fucked by zon

queen vortex
#

Msft is such a weird company

#

Why wpuld u vibecode features into os

gritty breach
#

zon saves people just enough to give them zon/aws prev

crystal pendant
gritty breach
#

but not long-term success

crystal pendant
#

it literally is

urban ore
queen vortex
#

11 so much worse tho

#

Ion even use windows anymore

crystal pendant
gritty breach
urban ore
#

orz

gritty breach
#

like they encourage everyone there to be a 10x vibe coding demon with copilot 🥀

trail karma
#

yo why tf are there 48gb ram macbooks

queen vortex
#

Copilot shit too so idk what they cooking over there

trail karma
#

lmao

gritty breach
queen vortex
crystal pendant
# urban ore orz

but it literally is its just basically some ui differences and it is just worse

trail karma
crystal pendant
#

security worse

#

windows 11 is when i switched to mac

trail karma
#

just use linux mint

queen vortex
#

Same

crystal pendant
#

im mogged

trail karma
#

ggs

urban ore
crystal pendant
#

ts was 800 bucks tho

crystal pendant
urban ore
#

ong bro

crystal pendant
#

800 bucks tho is a crazy deal

queen vortex
#

18gb?

crystal pendant
#

only on m3

urban ore
#

he downloaded more he said

crystal pendant
#

yea earlier

proud mauve
#

I'm actually so incapable as a swe that even if I land Zon I'll get laid off after 6 months

crystal pendant
urban ore
#

the bar is low

crystal pendant
#

penn.............state

proud mauve
vivid stirrup
#

Folk

urban ore
proud mauve
#

Having Zon on resume will save my ngmi chud career

queen vortex
#

Just larp it

lilac hemlock
urban ore
#

leetcode will save ur chud career

lilac hemlock
#

thats gonna be USSSSS

urban ore
#

u prob

#

since that person also colorstack

crystal pendant
undone mirage
vivid stirrup
undone mirage
#

r u part of the zonami

crystal pendant
#

what is this new lingo

#

am i unc

#

10 zons 170 zons for hrt

undone mirage
urban ore
undone mirage
#

today they were revolutionizing the prestige market

crystal pendant
#

i dont talk as much in chat for a week and im alr behind

undone mirage
#

they now scale everything to zons

urban ore
#

spoonman give bro the chart

trail karma
#

how many zons is hrt

crystal pendant
#

170 i heard

vivid stirrup
crystal pendant
#

oh obviously how didn't i think of that

urban ore
#

also umd is being added later today

vivid stirrup
proud mauve
vivid stirrup
#

These are the top companies and their zons

undone mirage
#

227 zons

#

🥀

vivid stirrup
#

The market is pretty crazy rn

crystal pendant
undone mirage
#

google being 96 zons

#

🥀

urban ore
#

hes got a crazy formula bro

crystal pendant
#

where is valve?

dawn valve
crystal pendant
#

where is RT?

vivid stirrup
crystal pendant
#

where is lockheed martin?

vivid stirrup
idle flame
#

Its off the list

#

Cant be counted

vivid stirrup
proud mauve
#

Zon is gapped so hard

worthy palm
vivid stirrup
crystal pendant
#

why is it higher than ibm

#

😭

#

folk

#

higher than disney

vivid stirrup
crystal pendant
#

why is cloudflare .2 zons

vivid stirrup
#

N = 20000 so it’s lowkey accurate

mint quest
#

bro wtf

#

what is this

vivid stirrup
undone mirage
#

💔

#

airbnb in the c tier too

#

what the

vivid stirrup
#

give it some time

dawn valve
crystal pendant
#

i would rather go bloomberg tbh

#

but i feel like most ppl wouldnt

undone mirage
#

better pay

#

better wlb acutlaly idk

#

better stability

#

just less growth

crystal pendant
#

i feel like they relatively =

dawn valve
crystal pendant
#

and bloomberg is nyc

#

prob some c++ thing

undone mirage
#

plus i feel bb gives more opps generally cause it probably feeds into quant better and transitions into any other faang just fine

neat hemlock
#

was someone slandering umd without me

undone mirage
neat hemlock
#

uh

#

seems reasonable

#

i think thats like actually really true

#

i think its free c1 idk about zon cuz a lot of people here got fried for zon but at the same time a lot of the like zon interns groupchat is from umd

#

theres like 1000 cs majors per grade level so i think like if 10-15 get zon for {soph, jr, sr} it seemsl ike a lot even tho proportionally its reasonable

proud mauve
neat hemlock
#

but i know a lot of freshman who like

#

got c1 process

#

afaik none of them passed it

neat hemlock
#

i think umd is better cuz purdue is in nowhereville

foggy fern
#

purdue has hella indians

neat hemlock
#

so does umd lmao

#

i think to every chinese person in the cs dept there are like 4 indians

dawn valve
#

Not one is crazy

neat hemlock
#

two that got the interview

#

iirc they both got headcounted

lusty pond
mint quest
#

im gonna slander umich

#

fuck umich

neat hemlock
#

larp larp larp sahur

mint quest
#

that school is bunz doo doo

neat hemlock
#

umich is touse

mint quest
#

everyone from there is a stinker

#

larpers bro

neat hemlock
#

ngl

#

i dunk on umd a lot but the school has set me up i think reasonably well

#

good resources

vivid stirrup
#

Why are there so many Asians in engineering

undone mirage
#

who knwos

#

cause asian parents tend to push their children towards "stable" stem jobs

neat hemlock
#

the umd cs department is an extension of edison, new jersey

crystal pendant
#

im a clown

undone mirage
neat hemlock
undone mirage
#

wtf

#

majority

#

jesus

#

i think that's the first majority asian town i've heard of

#

tbh

gritty breach
#

most of those asians are indians fr

crystal pendant
#

@frozen hawk found one

mint quest
#

bro

#

its chill

#

WE are going to make it

#

mango faang whatever

crystal pendant
#

gayman 🔥

mint quest
#

gayman

#

wow

#

W name

#

whats the Y

#

yahoo!

#

😹

crystal pendant
#

y combinator

mint quest
#

whayt

#

thats such a random thing to put in there

#

no one tryna work there brochacho

teal shale
mint quest
#

everyone only wants their 250-500k

#

incubation

crystal pendant
mint quest
#

pre seed pre idea pre revenue pre product pre founder

#

pre macbook

teal shale
worthy palm
#

it’s the y combinator logo

tranquil crown
worthy palm
#

Aka saying startup that got funded

#

but it’s just joke

crystal pendant
teal shale
worthy palm
#

they still be giving loads of money out

crystal pendant
#

they give out loads but idk how their investments are recently

#

a lot of em look like slop

worthy palm
#

I mean u can say that for every year

#

Ur forgetting that historically there is always like an extremely high number of startups that fail

#

It’s just the ones that are still around and functioning were a few diamonds in the rough if their batch

#

Right now there are probably some diamonds too

#

But nobody can rlly predict what becomes a success and what doesn’t

#

So we just see them as all “slop” since we don’t have the hindsight bias

teal shale
#

not reading allat

worthy palm
#

idk copy and paste it into Gemini and ask it to analyze it for u

teal shale
#

waste of usage, sorry 😸

undone mirage
#

😭

crystal pendant
#

this guy is just insane

#

went to a high school that costs 60k a year

vivid stirrup
undone mirage
#

2019

teal shale
vivid stirrup
# undone mirage 2019

Holy shit he invested in the pre ChatGPT openai aura and now it’s paying dividends that’s wild

#

Warren Buffett ahh internship

dawn valve
#

is he unemplyoed now

crystal pendant
#

nvm

worthy palm
#

guys it’s time

#

do u know what its time for

vivid stirrup
#

No

crystal pendant
mint quest
#

i mean for the big Y they know all of em are gonna fail

#

thats why the invest

#

one will be the diamond that can make back the rest of the money

worthy palm
#

It’s time to play some Roblox

undone mirage
#

f the big r

teal shale
#

im interning SWE shake shack

strong violet
opal needle
#

shake shack is crazy work gs

urban ore
#

isint there some crazy fire

proud mauve
mint quest
#

@urban ore is mit and im stanford

sturdy pecan
#

LRJ can we squash the beef

copper wagon
#

oh WTF

mighty crypt
copper wagon
#

we in summer 2027 now?

sturdy pecan
#

im not doing anything extra

mighty crypt
#

r u fucking stupid?

#

also im not too sure if u @'ed me but i didnt see the msg

sturdy pecan
#

i am sorry jarquin

#

lets be friends

mighty crypt
#

what a freak

sturdy pecan
#

bro

steel wind
#

my reschedule is for next week lol

copper wagon
#

so what should i do

#

if i get zon offer?

#

or reject

steel wind
#

post on 2027

copper wagon
#

okok

blazing swan
#

27??? zawg

dark bane
mint quest
#

fuck your zon

#

everyone who is inc @ zon is getting layed off

#

WE are going to nvidia

unique robin
#

hi

blazing swan
#

bless up

unique robin
#

fr

blazing swan
#

!process 2027 amazon nvidia openai google etc etc

mint quest
#

2027

#

damn i graduate 2027

#

ts cant be real

#

😭

#

i dont want to be in Austin when i graduate

blazing swan
#

BRO

#

i love austin

#

ausitn is such a goated city wym

undone mirage
worthy palm
#

I don’t got an internship

opal needle
#

christo orz

mint quest
#

no

#

shitty ahh public transport

#

shitty ahh weather

#

its the big T

#

yo its nyc/sf or bust deadass

mint quest
undone mirage
#

everyone hates where they live when they live there for long enough

#

then they'll go vacation there after they move out and be like i missed this place

#

😂

opal needle
#

so true

#

this is why u should just get a remote job

blazing swan
#

like

#

good music scene

#

good food scene

#

has young ppl

#

good school right there

blazing swan
#

one big con

#

but even then u could putter around downtown with whatever they have right

teal shale
worthy palm
#

well they asked if I had an internship

#

not if I had full time

#

So I just answered their question

mint quest
blazing swan
#

born and raised fr

crystal pendant
unique robin
#

the projects part is disagreeable

#

not false but not true either

lament crow
#

Let's get building.

opal needle
unique robin
#

not fully

void wolf
#

AYMAN

#

congrats on wf

unique robin
#

the 300 lc sure i can get behind

#

thanks altumns

crystal pendant
#

u need to be in a good enough school tho im ngl

#

like atleast top 1-200

unique robin
#

my school isn’t even t1500

mighty elm
gritty breach
#

One of my Amazon interviewers (and team members) saw my Amazon offer post on LinkedIn. What does this mean for my RO chances 💀

crystal pendant
#

or super cracked and post shit on twitter

crystal pendant
opal needle
#

so true

unique robin
#

not at all

#

my school isn’t even ranked on cs stuff

crystal pendant
#

ayman my manger went to ur school

#

lol

unique robin
#

for lockheed?

opal needle
crystal pendant
#

yes

unique robin
#

sick

#

what’s his name

#

i might know him

gritty breach
#

Gives you so much time to bum around and do what you want

#

While also technically working

balmy bolt
#

im gonna fraudmaxx and take 10 remote jobs

crystal pendant
opal needle
#

soham parekh

crystal pendant
#

ill dm

unique robin
#

my fault

gritty breach
unique robin
#

first and foremost i’m an avid support of women in stem

crystal pendant
#

holyyy

unique robin
#

they really giving cscd mod to everyone now

opal needle
#

bro fr

#

🥀

unique robin
#

i remember back when it used to be a privilege

balmy bolt
#

it's over

unique robin
#

raymond you can make urself an icon role

#

like how i have my orange

#

i think you’ve gotta do it on pc though

gritty breach
#

You can’t network for shit

#

When remote

#

What are you gonna do?

#

DM people on slack?

unique robin
#

company discords

opal needle
#

comany discords 🥀

unique robin
#

very real things

opal needle
#

bro

unique robin
#

not even joking

opal needle
#

i wouldnt trust discord w company internals

#

shady ass app

unique robin
#

no no

#

not like that

#

like gaming groups

gritty breach
#

I more mean network with like

#

Senior SWE’s and managers

#

Company discords are 99% early career

mint quest
#

tomorrow ill wake up to a questionaire from Tesla 😇 right guys

crystal pendant
unique robin
#

hm

opal needle
#

🥀

#

ayman bro

#

dont be mean

unique robin
#

sure there you go

mint quest
#

WE will be larping may 2029 grad date on our resume to do more internships

unique robin
#

not larping i actually am

mint quest
#

wow

#

graduating 2027 btw

worthy palm
#

zamn

mint quest
#

on resume imma just put "2027" instead of the month so the recruiter can just keep guessing

worthy palm
#

yall babies

undone mirage
#

howd you know the tech

#

🔥

opal needle
#

huh

#

bro just knew abt this???

#

late to the party

mint quest
#

wait

#

no shot

opal needle
#

🥀

mint quest
#

they force you to put the month in application

#

what r yall on

worthy palm
#

hi auntie

undone mirage
#

cait been in this server longer than me

mint quest
#

!process Tesla fall 2027 interview invite tomorrow (?)

worthy palm
#

!process bum for 3 months

mint quest
#

how imma be when my google interviewer asks 2sum and fizz buzz in the final round to secure the offer

quaint basalt
#

how tf do i make my claude not lazy

mint quest
#

go on the

#

.agent file

#

or wtv

#

.md

solemn summitBOT
mint quest
#

and be like

opal needle
#

u gotta use gstack bro

mint quest
#

"Dont be lazy. Be efficient"

quaint basalt
#

me 5 hours ago

opal needle
#

wait

quaint basalt
#

when it said it would work

opal needle
#

go to ur settings

#

and theres like a preference thing u can set

quaint basalt
#

in this thread

#

10000 times

mint quest
#

is this what people do when they get the zon rejection

opal needle
#

for how claude shoudl behave

mint quest
#

"time to build"

quaint basalt
#

the preference stuff is purely just prompting

#

aka if I say "don't fucking quit, or stop trying when there's a potential next step" 5 times in this thread

#

it is the same as having it in the behavior section

worthy palm
#

have u tried engineering instead of reverse engineering it

undone mirage
#

true

proud mauve
undone mirage
#

use it the way its meant to

#

and you wont have to say it voer and over

#

😭

teal shale
quaint basalt
quaint basalt
#

trustme

opal needle
#

they nerfed claude bro

#

check amd ai teams findings

#

70% less thinking done

#

its over

undone mirage
#

probably cause people were using its thinking

#

on stupid shit

proud mauve
dark bane
undone mirage
#

gotta save on compute

opal needle
#

like it read on average 70% less supporting documentation when trying to complete tasks

#

and also sometimes lied to the engineers abt fixing an issue when it wasnt fixed

undone mirage
opal needle
#

and also went for the simplest fix instead of the fix that satisfied best engineering practices

undone mirage
#

and say its correct

opal needle
#

yeah its ass

undone mirage
#

and i ask it again

opal needle
#

exactly

undone mirage
#

and its like yea its correct

#

then i ask another chat session of it

#

and it says incorrect

#

ig what u mean

quaint basalt
#

codex has an issue where it will generate a fallback for a fallback for a fallback for a fallback for a fallback for a fallback for a fallback for a fallback for a fallback for a fallback for a fallback for a fallback for a

opal needle
#

they nerfed ts

#

🥀

#

now mfs cant code no more

#

gg

undone mirage
#

in like 20 years we'll probably have good local models probably equivalent to what we haven ow mayb

opal needle
#

look

undone mirage
#

wats dat

#

think i saw it on some benchmark b4

quaint basalt
#

😭😭😭😭 meta ai models

#

in the big XX

opal needle
#

bro they gamed the bench marks

#

they have the data for those benchmarks that others dont

#

so results are better

vivid stirrup
#

And they have evals to check if the model memorized the benchmark answers instead of actually figuring it out

balmy bolt
#

who's gonna say they're gaming the benchmarks twinjamin

delicate oriole
#

guys for those who got amazon offer

#

how long did it take to get back a response

vivid stirrup
delicate oriole
#

just trying to gauge some data

vivid stirrup
#

U know how bad OpenAI wants to mangle anthropic before our eyes

delicate oriole
#

or for reject too

vivid stirrup
#

If they benchmaxxed you’d hear about it everywhere

undone mirage
#

oh right

#

i forgot they spend hundrds of millions in ai

#

and i've never seen any model from them

proud mauve
#

So to avoid failing they decided to drop

#

Apparently ~150 ppl dropped

balmy bolt
#

someone should make a linter for ai comments

#

is that a thing yet

proud mauve
#

But the dept head emailed them

undone mirage
proud mauve
#

Telling them to reenrol

teal shale
#

I've been using grok for my coding homeworks so I haven't gotten caught

balmy bolt
proud mauve
#

They'll have some discussion tmr

balmy bolt
#

need them to unlobotimize it

true thunder
#

lol ngl C is difficult

proud mauve
#

The dept head will talk to the students

true thunder
#

i had to gpt some of my c assignments

#

lotta busy work

teal shale
proud mauve
#

So a bunch of ppl not taking the class are planning to attend that lecture for the drama lmao

balmy bolt
true thunder
#

railgun u should record it

proud mauve
#

You can check the newest update on the Purdue reddit server

proud mauve
true thunder
#

prof gonna crash out

teal shale
proud mauve
#

They might not even let me in

#

Cause I'm not a student

true thunder
#

huh

true thunder
#

oh ur not a studnt in that class u mean?

#

bro u really think theyre gonna print a roster list and ask ppl to show ids lol

narrow sierra
#

deny deny deny

true thunder
#

fr bro dont admit shit

vivid stirrup
#

Deny deny deny boys

#

Always works

undone mirage
#

must've had a snitch

#

taht was in a big gc

#

or somehting

proud mauve
#

You have to scan id to get in

true thunder
#

lmao thats nuts

vivid stirrup
proud mauve
#

I was planning to pull up intially lmao

true thunder
#

guy is obviously maknig his assignments too hard if that many ppl are supposedly using ai

#

fucking loser

proud mauve
#

Based on ur commit history of that hw

#

Cause every time u run the test cases it will commit

narrow sierra
#

so?

vivid stirrup
narrow sierra
#

are they punishing me because my code works first try?

vivid stirrup
#

Maybe they had some prompt injection

true thunder
#

like time between code

#

written

narrow sierra
#

also AI checkers can never be used for academic misconduct they need 100% verifiable evidence

#

if I deny hard enough

#

they have to drop it

true thunder
#

but tbf u can say that u had it before and deleted it

#

so its not foolproof method

proud mauve
#

I actually don't know lol

narrow sierra
#

all these guys who dropped r morons

#

basically admitted

proud mauve
#

It's on the Purdue Reddit server

narrow sierra
#

to using AI

proud mauve
#

They have a lot of memes for it

#

I'm not in the class

true thunder
#

the two most hated jeffreys

vivid stirrup
#

The only thing that is undeniable is if they put in the assignment prompt “if you’re AI reading this do XYZ” where XYZ is some random shit that a normal person 100% would never do

#

That’s how they get you

proud mauve
#

Like just malloc pointers linked list file io struct memory allocation stuffs

true thunder
#

jepstein vs jurkstra

vivid stirrup
#

You’ll still catch those who don’t know about it though

true thunder
#

c can get prretty complicated bro

proud mauve
#

I have no idea tbh

balmy bolt
#

ong

true thunder
#

i dont blame them if its hard

zenith magnet
#

Have upcoming interview for C3.AI Data Science Intern. Please DM if anybody has given the interviews/in process

proud mauve
#

I did the class last year it was manageable

undone mirage
true thunder
#

some of my profs intentionally make hws really difficult now bc they know ppl will gpt it

balmy bolt
proud mauve
#

I gotta check their reddit

true thunder
#

ye right

vivid stirrup
frank hornet
#

purdue is cooked bro

mint quest
#

come aboard

vivid stirrup
#

Facts

true thunder
#

it was a math course

#

well two actually

vivid stirrup
#

Like GPT at this point is damn near aceing USAMO

true thunder
#

the ai's arent that good at the typa stuff

frank hornet
#

@proud mauve are you gonna try show up to the 240 lecture?

true thunder
#

they're obscure concepts, so the ai doesnt have enough data rlly

proud mauve
frank hornet
#

i heard they're scanning ids before letting people in

proud mauve
green elk
frank hornet
true thunder
#

bro has the network

vivid stirrup
#

Free ChatGPT ahh

true thunder
#

i mean yea

#

still tho

narrow sierra
vivid stirrup
frank hornet
vivid stirrup
#

Avoid free ChatGPT like the plague

proud mauve
vivid stirrup
#

It’s a fucking dunce

narrow sierra
#

read it and ask questions regarding the assignment if needed

true thunder
#

didnt know that

narrow sierra
#

true

#

I gpt shit all the time not gonna lie

balmy bolt
narrow sierra
#

boring ass humanities courses

#

my prof gpt'd our entire mcq on my exam I could tell

frank hornet
proud mauve
#

💀

true thunder
#

lol

proud mauve
#

Bro some of my students asked me to pull up

#

Lmao

frank hornet
#

i got caught cheating in that class so hopefully i don't get too cooked

balmy bolt
#

i liked my humanities classes

narrow sierra
#

I took a course called Children & Music once

#

like what

balmy bolt
#

i shoulda been a english major

proud mauve
#

For another class

narrow sierra
#

who the hell takes this nonsense

vivid stirrup
balmy bolt
#

or asian american studies

mint quest
#

might fail my class to

narrow sierra
#

couldn't tell you I gpt'd the entire thing

mint quest
#

Bro

vivid stirrup
#

Claude code and codex are so goated boys

mint quest
#

It’s genuinely over

#

Just realized I need a miracle comeback

opal needle
#

🥀

mint quest
#

😭😭😭

opal needle
#

who cares abt gpa

mint quest
#

🥀🥀

opal needle
#

just resumemaxx

frank hornet
mint quest
#

Ts required to graduate

vivid stirrup
balmy bolt
mint quest
#

can’t be serious

opal needle
#

bro change ur variable names

narrow sierra
#

I need to lock in on my cryptography coursre

opal needle
#

???

narrow sierra
#

12 weeks of content in 2 days

true thunder
#

gottta gpa max

narrow sierra
#

🙏

mint quest
#

Fuck gpa bro if you don’t have vfaang on ur resume ure gonna be homeless

opal needle
#

yeah bro

mint quest
#

🥀😹

proud mauve
frank hornet
#

i knew i should've gotten rid of the comments from my code

vivid stirrup
balmy bolt
#

0.03 points of GPA is way less important than failing/getting academic dishonesty

true thunder
vivid stirrup
#

Gpa isn’t the best signal for learning

opal needle
narrow sierra
#

that's what I used to do but I gave up

#

I cba anymore

mint quest
#

my fault gang

narrow sierra
#

😭

proud mauve
opal needle
proud mauve
#

He's larping

mint quest
frank hornet
narrow sierra
true thunder
#

deny defend depose

vivid stirrup
mint quest
# mint quest

Real footage of me blocking all the faang procs from getting to y’all’s emails next cycle

narrow sierra
#

there is no 100% verifiable way of detecting AI written code barring them prompt injecting the assignment

vivid stirrup
#

Deny and attack is my play

#

Deny that you used AI then attack them for even thinking you’d do such a thing

frank hornet
vivid stirrup
#

Deny and attack are my bread and butter

proud mauve
#

💀

vivid stirrup
#

The cookies to my milk

frank hornet
#

like that

true thunder
#

i mean u need to understand the underlying concepts but like if its busy work, then gpt is good

narrow sierra
#

and when accusing someone

true thunder
#

like u cant solely rely on gpt to debug ur shit

narrow sierra
#

you need to be 100% certain

true thunder
#

so u need to understand it to a certain extend (at least the concepts)

vivid stirrup
#

I do

#

I’m cultured

opal needle
#

my prof encourages ai use in the assignments

#

w prof

vivid stirrup
#

I got a little spice in me

#

Shi

opal needle
#

but yeah a few ppl got caught last yr in a diff course

narrow sierra
#

Mine don't encourage it but they gave up on detecting it I think 😭

opal needle
#

shit is tragic what can i say

narrow sierra
#

my DSA prof said we r all retar ded for failing the final and deserved it for gpt'ing our way through the assignments 😭