#2023_summer

1 messages · Page 149 of 1

hardy patrol
#

in hcol for example

#

lmfao 160k wtf

#

youll be fine with 160k anywhere in the us

proud crag
#

cant afford shit with 160k, where are u gonna fit the rental properties and caviar into a razor thin budget like that

hardy patrol
#

writing the names of anyone who reacts with the peanut emoji in the death note

#

sv?

sinful locust
#

what about 200k

hardy patrol
#

ah right silicon

sinful locust
#

mountain view is silicon valley right?

#

190k is enough?

#

for sv

hardy patrol
#

i mean where does sv rank against nyc

#

more expensive or cheaper

low vale
#

i mean yall are lookin at beginner salaries but no matter where you work the number eventually becomes very absurd if you work at a big tech

low vale
#

nyc is very big

#

some places are actually mcol

hardy patrol
#

depending on the borough yea

#

160k ng is still crazy insane even if it isnt in sv

#

average college major is making 60k ng

proud crag
#

i have 6 days of cs career under my belt but i have to say i think i care far more about hours than how much i care about the job

north portal
#

yall spoiled my perception of a good salary

low vale
#

yeah cs majors are pretty top of the line in terms of earning potential

north portal
#

at this point anything below faang looks bad

proud crag
#

tbh anything above 30/hr is meaningless to me

low vale
proud crag
#

i cant comprehend that much money

#

cuz it doesnt feel like im earning it anymore

north portal
low vale
#

that being said, you're not living without 200k tc ng 🙃

proud crag
#

8k/month is probably high end imo

hardy patrol
#

this server is a bubble of the most dedicated cs majors that are willing to join a forum for job hunting like take this place with a grain of salt

north portal
#

i mean id say u probably have promotions and shit by the time that stuff rolls around

#

the first few years imma prob live with my parents and save up a shit ton of money

warped daggerBOT
#

mrterrificmiracle asks: 👍 400k tc shoveling poop terrible wlb but good perks 👎 200k tc interesting swe role both in austin texas

hardy patrol
#

yea i dont think any of us are raising a family single handedly in our late teens/early 20s yet

low vale
#

I saw a post by a guy on linkedin about how he started of making 80k at a bad company ng and is now making 600k at airbnb 5 years later

fleet dew
#

likedin OA we have to pass all test cases to get to phone ?

low vale
hardy patrol
#

its ng anyway youll move up sooner than later

vernal furnace
low vale
#

I agree, but lets say you stay in a bad company for 2 years and you lose a 100k worth of savings vs faang, thats not alll that much to a high level swe

vernal furnace
sinful locust
#

pls

low vale
#

i went on blind as a meme

north portal
#

tbh im not worried about ng tc, I just want to start at a faang+ level company so that eventually with promotions the comp will be very good in my late 20s

low vale
#

and i occasionally check it to laugh

vernal furnace
vernal furnace
sand orbit
#

fanng tc doesn't grow that fast for most ppl

low vale
#

very few quant places pay enough to make faang look like pennies

north portal
#

I think HRT and Janestreet are the only places that make Faang look miserable

jaunty cove
#

bigger bonuses make those salaries look a lot bigger

vernal furnace
north portal
#

Citadels salary portion is only 150k so its comparable

#

HRT and Janestreet with 200k+ base salary is insane

low vale
#

supposedly citsec pays over 400k for returning interns

north portal
low vale
#

do you know how the acceptance is for interns vs full-time?

north portal
#

is it true HRT can negotiate to like 550k

soft basin
#

a lot of ppl arent very good at saving sometimes

low vale
#

man

#

so if i choose to grad next year

#

and i don't get citadel next year

#

i won't get in ever

north portal
#

praying the hiring freeze stuff doesnt get worse

vernal furnace
#

another thing i've read is that most hft's prefer new grads & convert from interns rather than take in people with experience, so kinda makes it feel like u either got a shot while u r in uni or else not, but tbh I find finance work very dry & boring, only thing I found cool was the TC

north portal
#

cuz if by 2025 its tougher than this year, rip

low vale
vernal furnace
north portal
low vale
#

im planning on trying to get good at swe and then be one of those gigachads with 2-3 jobs at the same time

#

who also work very little

#

depends on the bank

north portal
#

just get a job, maybe a remote job, and then contract work

brisk forge
#

How would you handle linkedin though?

low vale
#

some work you to the bone for no pay

brisk forge
north portal
low vale
#

sub called overemployed

brisk forge
#

Background check doesnt show other jobs right?

low vale
#

filled with people like that

brisk forge
#

Ahhhh interesting

#

Bruh over employment really might be the move

#

True

low vale
#

i mean the sub is pretty active idk if its a community of thousands of larpers lol

#

they also gave some pretty good advice for swe in general

brisk forge
#

I just want to retire before 30, i dont know how much I have more to take of corporate lol

#

FATFIRE and chill in bali for 6 months

low vale
#

ngl i feel like i could work forever if I had the right job

#

emphasis on right job though

vernal furnace
brisk forge
#

I feel like those are harder to find cause the of the recession and companies tighten up (ie: google) am I wrong?

brisk forge
low vale
brisk forge
low vale
#

???

brisk forge
#

You right

low vale
#

idk c man

#

idek what you just typed

brisk forge
#

Yeah It probably a good idea for me to grind for impact and senior eng faster

sand orbit
low vale
#

hmmmm

jaunty cove
#

What is the C version of this code @rustic topaz .DATA

fizz_lbl: DB "Fizz", 0
buzz_lbl: DB "Buzz", 0
fizzbuzz_lbl: DB "FizzBuzz", 0

.CODE
.STARTUP

xor CX, CX ; counter

main_loop:
inc CX
cmp CX, 100

jg done

fizzbuzz_check:
mov AX, CX ; dividend = counter
mov BH, 15 ; divisor
div BH ; (counter / 15)

  cmp   AH, 0            ; counter divisible by 15?
  je    print_fizzbuzz   ; if so, proceed with printing

  jmp   fizz_check       ; if not, try checking for fizz

  print_fizzbuzz:
      PutStr   fizzbuzz_lbl
      nwln
      jmp      main_loop

fizz_check:
mov AX, CX ; dividend = counter
mov BH, 3 ; divisor
div BH ; (counter / 3)

  cmp   AH, 0        ; counter divisible by 3?
  je    print_fizz   ; if so, proceed with printing

  jmp   buzz_check   ; if not, try checking for buzz

  print_fizz:
      PutStr   fizz_lbl
      nwln
      jmp      main_loop

buzz_check:
mov AX, CX ; dividend = counter
mov BH, 5 ; divisor
div BH ; (counter / 5)

  cmp   AH, 0        ; counter divisible by 5?
  je    print_buzz   ; if so, proceed with printing

  jmp   print_other  ; if not, then can only display number

  print_buzz:
      PutStr   buzz_lbl
      nwln
      jmp      main_loop

print_other:
PutInt CX
nwln
jmp main_loop

done:
.EXIT

warped daggerBOT
#

mihari asks: Should goku be banned

jaunty cove
#

i just got amazon final

vernal furnace
hardy patrol
#

when did you apply colin

vernal furnace
#

how? sem just started?

sinful locust
#

its rng

vernal furnace
#

will I pass resume screens for hft with just amazon? or is 1 amazon just too low-tier for those places? non-target uni as well

sinful locust
#

some people said they got OS some said they didnt

#

fair

#

more

#

i feel that

#

decent answers kinda feelsbad with those type of interviews

low vale
#

I've been collecting so many Ls recently

hardy patrol
#

still got to do sigma codesignal but i hate the platform with a passion

low vale
#

please let me get Duolingo

sinful locust
safe minnow
#

That was a pretty fast deletion ngl

#

1 per second

hardy patrol
#

i should

sinful locust
#

@inner kernel

#

you have 3 results

sand orbit
#

cit hires too many compared to other firms

sinful locust
#

you need to delete them all

sinful locust
sand orbit
#

compared to hrt/js/jump, yes

safe minnow
#

Oh you have the extension PepeLaugh

sinful locust
#

where is this

#

oh rip

#

youre on this server permanently

sand orbit
#

all intern conversion

safe minnow
#

HRT WLB is good right?

sinful locust
#

perhaps

#

someone tell cit to respond to me

sand orbit
#

but the TC might not be as much if you've worked at hft since new grad

sinful locust
#

ppl say its hard to do trading after a while after ng

sand orbit
#

$$$$$$

vernal furnace
#

exactly

sinful locust
#

same pay?

#

doubt

#

oh

tardy orbit
#

Has anyone gotten hubspot phone but not final

sinful locust
#

lol

sand orbit
#

most unicorns wlb is also bad

sinful locust
#

probabl

sand orbit
#

uknow

low vale
#

tbf if you have the skillset to break into hft you have the skillset to get very good wlb and pay at a unicorn or big tech

sand orbit
#

google might come with same pay/hr

low vale
#

I'd choose the unicorn/pay at that point

sinful locust
#

NO

vernal furnace
jaunty cove
#

I have it for next week supposedly

#

pog

jaunty cove
#

Hopefully amazon dossnt ghost me for another month

#

🙂

sand orbit
#

I know experienced google offer with cit

low vale
#

im still waiting for amzn to reject me

safe minnow
#

Working at deepmind sounds pretty sick

sand orbit
#

bc google is extremely chill in the right team

jaunty cove
vernal furnace
#

did bezos whisper that into your ear?

simple salmon
#

dw i plan to renege, you can add 1 to that

low vale
sand orbit
#

def not for new grad lol

safe minnow
#

💀

simple salmon
#

databricks

sand orbit
#

never heard ggl will match cit/2sig offer

vernal furnace
#

doesn't intern faang pay more than that though?

simple salmon
#

i wish i could move amazon to winter/fall

low vale
#

you get that with most places if you count housing

simple salmon
#

but i havent heard many success stories so far

#

will still try tho

sand orbit
#

negotiation def possible

#

but matching seems kinda insane

vernal furnace
#

isn't the game dev environment psychotic? that's why i've never applied to a game company

static spindle
#

"riot prayge"

low vale
#

riot is small indie game company

static spindle
#

my favorite indie game devs!

sinful locust
#

what companies don't ask leetcode other than stripe

static spindle
#

oh i did frontend lol

sinful locust
#

WazowskiStare for intern?

warped daggerBOT
#

mrterrificmiracle asks: stripe asks interns leetcode

static spindle
sinful locust
#

what

#

its gone

low vale
#

did you get resume rejected from pinterest too?

sinful locust
#

nuro

lean pewter
#

what a mood

static spindle
#

bro is out here with cit, imc virtu and shit but still gets resume screened

hardy patrol
#

doesnt pinterest actually reject you or do they leave you on read

sinful locust
#

your offer

static spindle
#

from personal experience, reject

hardy patrol
#

still under review but not rejected

sinful locust
low vale
#

@sleek pike congrats on Nuro and Cruise

sinful locust
#

everyone congratulate @plain egret

static spindle
#

happy birthday!

hardy patrol
#

@sleek pike congratz on apple

sinful locust
#

everyone congratulate @lean pewter

lean pewter
sinful locust
#

@fringe pumice

#

@hearty river

fringe pumice
#

Congrats

hardy patrol
#

the coveted lockheed offer

static spindle
#

defense 🤮

sinful locust
#

congratulate @hearty river for benching 325 yesterday

sinful locust
#

@hardy patrol congrats on taking a shit during your jane street offer call

lean pewter
#

@sleek pike congrats for getting in brito's stomach

sinful locust
#

congrats @here for being cs major

hardy patrol
#

congratz on the wedding @lean pewter

sinful locust
#

@inner kernel what was your original name

#

before you became the harvard president or whatever

safe minnow
sinful locust
#

???

lean pewter
#

Congrats for replacing Geoff Collins

sinful locust
#

5 rounds of system design

#

yeah what was your original name

#

before that

#

drw's being really slow, first round of finals is this week

#

oh right

hardy patrol
#

baffles me that this is the group thats going to be making 150k+ right out of college

sinful locust
#

now you have 2 messages thatll stay for eternity

rich vector
#

hubspot

hardy patrol
#

got pinterest oa

#

think i applied for the wrong role

#

Thanks for expressing interest in opportunities at Pinterest and applying for the Software Engineering University Grad role

#

that means internship right or

hardy patrol
#

ah fuck

#

did i mess up bruh

safe minnow
#

You too?

sinful locust
#

WazowskiStare pin this

lean pewter
tardy ridge
#

Anyone do Datadog phone

hardy patrol
#

bro please dont tell me i applied to the wrong fucking role

#

sure i can send it later

sinful locust
#

JUDAHHHHHHHHHHHHHHHHHH

hardy patrol
#

what gca score to pass pinterest usually

wooden shard
#

bruh is pinterest oa auto

hardy patrol
#

if its above 700 my chances are looking grim

hardy patrol
wooden shard
#

wtf

north portal
wooden shard
#

theres gotta be smth wrong with my resume

hardy patrol
#

also they give you a recruiter right off the bat which is od

wooden shard
#

send email

hardy patrol
#

yea pinterest gives you a recruiter before sending oa

lean pewter
#

skill issue /s

hardy patrol
#

applied to the wrong role so i gotta break it to her

wooden shard
#

time to reapply to pinterest

#

i only get oa the second time i apply

#

happened for instabase and scale ai

hardy patrol
#

im only submitting apps to see how strong my resume is idgaf about pinterest or ibm or anything

#

going after the zon and msft

jaunty cove
#

pinterest > amazon and msft

static spindle
#

is it worth continuing with IMC process after OA if I don't have any systems experience? I can do leetcode and math but know little about systems

jaunty cove
#

why would you willingly leave the process unless u have an offer from a company that pays more than $72 an hour?

#

wordt that can happen is you get rejected

static spindle
jaunty cove
#

i thought i fked it up but i passedp

#

you should try it

lofty bluff
#

how do you do on the OAs

static spindle
#

did they ask systems?

lofty bluff
#

im imagining pretty good

static spindle
#

or is it behavioral

jaunty cove
#

They asked half behavuoral half explaining your answer to technical things

static spindle
#

hmm makes sense

#

I get sad when I get to a stage where you talk to real human people and then get rejected sadge

#

I mean, yeah. Most competent applicants should know dsa

#

OH you mean in college

#

no lol

#

its just a class

#

did you mean weeding out in college or weeding out on job apps?

undone river
#

Data structures and algorithms?

#

👀

jaunty cove
#

dsa is the first class where u need to apply problen solving skills and not just learning syntax and trivia

undone river
#

Avl tree , red black tree etc

#

Fun

jaunty cove
#

why does it matter if its proctored bro, thats sus

#

i think ima tell them

jaunty cove
#

Damn

#

Lol

quaint bolt
#

Well everything’s online now so cheating’s rampant

jaunty cove
#

i would never cheat

#

If i tell someone what the qeustions were am i cheating

#

Hypotheticslly

#

I wouldnt do that

undone river
#

I blind fold myself during OA to make it more fair /s

jaunty cove
#

Lol

sand orbit
#

maybe it's cheating on OA?

jaunty cove
#

Being on this discord server is a massive advantage

#

how would they

sand orbit
#

wtf?

undone river
#

Dam

jaunty cove
#

Lol

undone river
#

Crazy shit

#

Anyone like the butt plug theory in chess recently

hardy patrol
jaunty cove
sinful locust
undone river
#

One of the crack head theory

jaunty cove
#

Lmao

#

Butt plug hikaru vs deepmind ai

undone river
#

Someone try this idea

#

I need some data

sinful locust
#

everytime i follow up with a recruiter from last year they moved to another company and their email is deleted craughing

jaunty cove
#

Oh yeah

#

Idk why magnus would claim the guys cheating without any evidence

#

Makes him look realy bad

sinful locust
#

do we all get the same youtube recs lol

jaunty cove
#

How would he have cheated

#

tho

jaunty cove
undone river
#

I was following that was a while

jaunty cove
#

skill issue

undone river
#

Skill diff

fleet citrus
#

magnum carlos

jaunty cove
#

Lmao

sinful locust
#

they cheat?

#

1v1 in chess rn

rough parcel
#

fuck me my amz final just got scheduled

jaunty cove
#

this is the qanon of chess

grand bane
jaunty cove
#

oh

#

i thought it was a meme

#

is this really a theory

#

Lmao

undone river
sinful locust
#

he cheated

#

i believe

hallow copper
#

how long yall take to hear back from stripe?

sinful locust
earnest hatch
#

This whole drama opened me up to all the different ways I didn't know cheating could be possible in a chess tournament 🤯

hallow copper
stone echo
#

did u get all test cases

#

i have the stripe phone soon -- dont know what to expcet

sinful locust
sinful locust
sinful locust
#

what day?

stone echo
#

a week from today i think

sinful locust
#

all the slots were full when i scheduled 💀

#

except 1

#

i hope i can get offer before its full 😭

quiet plover
#

why didn't I get the OA yet

jaunty cove
#

i had to wait 3 weeks

sinful locust
quiet plover
jaunty cove
#

skill issue

#

jk

quiet plover
#

I applied for the US posting and got rejected

#

now still waiting for the canadian one

grave skiff
#

Does anyone know if there are Amazon SDE intern positions in NYC? Is it hard to get placed there?

earnest hatch
earnest hatch
hardy patrol
#

am i misunderstanding like the title says intern

hallow copper
#

is that concerning?

hardy patrol
#

but the recruiter email says Next Steps with Pinterest, University Grad

sinful locust
#

is the reason i'm getting less response because i no longer list my gpa

#

😲

grave skiff
jaunty cove
oak drift
#

I think I got ghosted by HRT

hardy patrol
grave skiff
#

Ahh shit, I chose Seattle first

hardy patrol
#

ill just email her

jaunty cove
spark hearth
grim steppe
#

rip

oak drift
spark hearth
#

u gon do some bdsm shit? if so invite me pls

oak drift
#

yeah I'm gonna first rip my cock off then my neck

spark hearth
#

Dear colin davis,

If I may ask, what are your previous internship experience?

Thanks,
kyoyoberry

wary harbor
#

yo is pintrest Oa hard?

spark hearth
#

it was easy

wary harbor
#

fr

#

how many questions

#

its on code signal

spark hearth
#

take it to find out

jaunty cove
#

I start my first in a week

#

Then i will start imc this summer copium

spark hearth
#

at where

#

damn

jaunty cove
#

Sincerely Colin Davis

spark hearth
#

u got imc

jaunty cove
#

no

spark hearth
#

nice

jaunty cove
#

I will have gotten imc

spark hearth
#

congrats

pseudo orbit
#

ugh degen chat

spark hearth
#

from rezero

#

btw

#

it's a guy

jaunty cove
sinful locust
#

yes

jaunty cove
sinful locust
#

@oak drift trap?

spark hearth
#

I was previous intern at my uncles startup, I was the only intern and he's the only employee

jaunty cove
#

Did you get a return offer

#

And timeline

spark hearth
#

no, but I think I can get an offer

#

have to ask my daddy

oak drift
spark hearth
#

I grew up

#

u thought I was gonna stay a baby forever?

spark hearth
#

-_-

#

wtf I thought @oak drift was mihari

jaunty cove
#

how many of you guys are the same person

hardy patrol
#

not doing that shit bruh thats 6 rounds

spark hearth
#

bro just stop flexing hr pinterest oa we don't wanna see it

jaunty cove
#

Also i cant apply to pinterest bc i have them blocked with a chrome extension

#

kinda sad

oak drift
spark hearth
#

yes

oak drift
#

k

spark hearth
#

wtf

wary harbor
#

just got that too, did everyone get it?

#

just now

hardy patrol
#

i cant survive those rounds so

wary harbor
hardy patrol
#

im declining going forward

spark hearth
#

I pinged wrong person 💀

safe minnow
#

Grad role 💀

spark hearth
#

inflation

#

api gateway

#

idk

#

I just hear it a lot

#

wtf

jaunty cove
#

Restful api

spark hearth
#

ima drop u

jaunty cove
#

Personal project

spark hearth
#

what is restful api?

jaunty cove
#

Interviewer asked me about my “restful api” and i managed to convince him i knew what i was talking abt

spark hearth
#

how

#

what's so restful abt api

jaunty cove
#

i forget

final forumBOT
#

You can only use this command in 2022_winter_intern_process, 2022_summer_intern_process, 2022_grad_process, 2022_fall_intern_process, 2023_summer_intern_process, 2023_winter_intern_process, 2023_grad_process

#

You can only use this command in 2022_winter_intern_process, 2022_summer_intern_process, 2022_grad_process, 2022_fall_intern_process, 2023_summer_intern_process, 2023_winter_intern_process, 2023_grad_process

hardy patrol
#

its crazy

jaunty cove
#

isnt the sde1 interview process a 30 minute review of your assessment codep

spark hearth
#

yes

jaunty cove
#

lmao

spark hearth
#

unblock me

hardy patrol
spark hearth
#

I asked if sushi was male or female and they blocked me

jaunty cove
#

Lol i would prefer a level order traversal. i dont remember what my 2nd oa question was

spark hearth
#

@sinful locust why mihari?

jaunty cove
#

Amazon told me i got the last interview

spark hearth
#

that's onimai

#

yes

#

bro ur character is literally michael

quiet plover
#

when applying for google 2023 (step and BS) should I leave out my transcript?

#

💀

spark hearth
#

hyouka

#

stop

jaunty cove
#

Yes

spark hearth
#

Rental girlfriend sucks ass

hallow copper
spark hearth
#

ur just there for the girls

#

stop

#

o

quiet plover
hallow copper
#

ive heard its v important from some ive heard its not from others

#

idk if its true

#

that its important

#

sorry that might j be SWE app

#

i shouldve mentioned i have a minor in gaslighting

#

unironically last i checked there was a para u were supposed ot write

quiet plover
#

@wary whale @safe elbow y'all put your transcript or no?

#

whats your gpa

spark hearth
#

u live in va?

#

let's meet yp

sinful locust
#

?

#

dox

spark hearth
#

u live 25 min away from me @sinful locust

sinful locust
#

make my prof an emote

#

lol

safe minnow
#

Do you hear me knocking?

spark hearth
#

@sinful locust I'm coming to ur house for the lolz

#

@sinful locust see u soon

final forumBOT
#

You can only use this command in 2022_winter_intern_process, 2022_summer_intern_process, 2022_grad_process, 2022_fall_intern_process, 2023_summer_intern_process, 2023_winter_intern_process, 2023_grad_process

spark hearth
#

@sinful locust I'll bring the good stuff

#

@sinful locust im gonna bring krokodil

spark hearth
#

no

#

it's a stack

dense spear
#

all this "c1 is full" and "this company full" is so discouraging and ppl just be sayin it with no factual backup 💀

#

well i just did powerday

#

so

#

idk

sinful locust
#

?

dense spear
#

how do mfs know if they "full"

#

straight guesstimates

#

why would I lie 💀

dense spear
#

mfs still getting offers in here

dense spear
#

my case was good

oak drift
#

HRT is full

dense spear
#

linkedin told me final interview info in 48 hours on thursday

#

and proceeded to not update me

sinful locust
#

where is this from

#

what song

#

no gif

dense spear
#

idk its frontend

sinful locust
#

@sinful locust how much for tutoring

#

more songs

dense spear
#

so probably like make a component and then one algo question

hallow copper
#

can u withdraw the application to google swe 😭 wtf I was j filling out into

#

i was j tryna save then it submitted

dense spear
#

bro is spreading misinformation

jaunty cove
#

dont apply

spark hearth
dense spear
#

just like amazon and google and linkedin and datadog and hrt

#

right

hallow copper
#

blasphemous

spark hearth
#

u can't change once submtited

oak drift
#

source?

dense spear
#

i cant believe summer 2023 interns are ALL full

#

i stg all of yall misinfo is gonna give me a heart attack

jaunty cove
#

There are No More Internships left

dense spear
#

each company takes one person

#

its the hunger games

#

all the interns possibly ever

#

omg

final forumBOT
#

You can only use this command in 2022_winter_intern_process, 2022_summer_intern_process, 2022_grad_process, 2022_fall_intern_process, 2023_summer_intern_process, 2023_winter_intern_process, 2023_grad_process

dense spear
#

yeah ill give u an OA

wary harbor
#

ru a youtuber

#

?

#

I knew I seen u, u worked for home depot right

#

🤩

spark hearth
wary harbor
sinful locust
wary harbor
#

Im naruto

spark hearth
#

nvm

wary harbor
#

what AMAZON FULL?

oak drift
#

Lowes all full

#

no more spots left

safe minnow
#

Good thing mcdonalds isn't closed yet

wary harbor
#

look at that list

hardy patrol
#

you guys wreaking havoc with this misinformation

wary harbor
#

unless its bs

sinful locust
wary harbor
#

she a youtuber

#

they/them

#

the black one u talking about

spark hearth
#

who's black

wary harbor
#

aint no way

spark hearth
#

37 on what?

wary harbor
#

wit a ccuve?

spark hearth
#

@wary harbor what ru talking abt

#

oh

sinful locust
spark hearth
#

that was me

#

I got 37

sinful locust
#

||you mama|| is full

spark hearth
#

oh that's goky

#

don't bother applying

sinful locust
#

they are full

wary harbor
#

Id quit

#

tbh my score was ass

#

💀

safe minnow
#

Anyone good at mips here

wary harbor
#

nah I missed 6 questions

#

fr

#

on that girl?

#

aint no way

safe minnow
#

Chat has turned into a shithole

#

Time to leave

spark hearth
#

stop wtf

worn bear
#

stop

#

why

#

who

#

what

#

where

#

plz

sinful locust
wary harbor
spark hearth
#

It's bad.

maiden seal
wary harbor
#

peter

sinful locust
#

@rustic topaz

worn bear
#

hi

sinful locust
#

hey Mr google manifestation

#

💀

#

can you unblock my alt @ mods

#

i need my emotes

#

amazon closed

#

amama machine broke

oak drift
#

nah

#

hasn't helped me much tbh

#

I got resume rejected by so many places for quant kekwpain

#

and ghost as well

#

jane street imc optiver citadel sig hrt algo dev de shaw swe

jaunty cove
#

Amazon hiring strategy model is a queue using fixed size buffer

dense spear
#

i think they just paused interviews because they know they are overbooked and will likely fill up by the time they get through the backlog; not necessarily that they are full now

#

thats my guess

#

but they only paused interviews it seems; not offers so far

#

they are essentially a data company now a days so they know approx. how many offers they will give per amount of interviews

#

so

#

im sure they did the math

spark hearth
#

bro like srsly stop srsly

dense spear
#

if u ever figured that out lmk lol

jaunty cove
#

If amazon interview process was like invesmeng banking i wouldnt have passed resume screen

echo lynx
#

GOOLGOOLE - World's most famous company

#

How're you liking it there?

past comet
#

Anyone got this email from ziprecruiter ?

#

its not automated tho

proud whale
#

hows it goin

#

haven't checked in here for a while

past comet
#

Yo man, how are you doing ?

proud whale
#

p good, honestly life without constant stress of recruiting or leetcoding is pretty damn awesome

past comet
proud whale
#

bruh

#

no i didn't

glad garnet
#

can you choose which assessment you want to do first for roblox?

proud whale
#

lotta manifestation goin on here

proud whale
#

i just cold applied to the fall 22' app

#

applying online

#

w/ no referral or recruiter talk etc

#

there was a fall, then a winter, and now a summer

#

fall prolly closed

#

winter mighta closed

#

summer opened today if i heard correctly

true glade
#

ssi asks

proud whale
#

they have what for different seasons

#

one application?

#

yeah

#

but sometimes good recruiters will let you push to another season

true glade
#

gokugate12

maiden seal
#

Are you a witch

sinful locust
#

Yo considering the fact that I switched into cs last semester from biology

#

Thought I wouldn’t get shit

spark hearth
#

everyone's lying nowadays

hollow field
#

is hubspot oa automated

#

ats is not automated lol

#

no i mean like is there a resume screen later

#

cuz i kinda count ats as part of the screening

#

yubikey?

jaunty cove
#

i got rejected immediately

#

i forget

rapid swan
#

scheduling a. 30 min call with android hiring manager

#

omg didnt even recognize u

#

figma

#

hopium

#

kirby car new grad tc

robust bridge
#

Is there any hope for Capital One with 719 codesignal?

dense spear
#

remember

#

everything is full

wide socket
#

I kinda trolled and forgot to do the oa for capital one and another company

#

Do they let me reapply and get the oa or do I just make another email

#

Don’t have another phone WazowskiStare

#

Honestly I don’t think they would care tbh even if I apply with under same number

#

Since I didn’t write the oa

#

Ok

#

Also yo is meta open

#

I wanna apply there

old field
#

Anyone applied to Amazon and didn't get the OA for summer internship?

#

I applied on 27th Aug

wide socket
#

Bro i need amazon oa

old field
wide socket
#

Sept 2 or smth

#

Think they take 3-4 weeks tho

#

Heard they super slow sometimes

#

Gn

old field
#

One of my friend applied on 23 Aug and got OA within a week

#

Today he got interview call

wide socket
#

Dam idk

#

Seems to be rng to me

old field
#

Rng?? means?

dense spear
#

essentially means luck-based

woeful lynx
#

Wait is google application for US already open?

dense spear
#

i think just normal SWE is yea

woeful lynx
dense spear
#

mhm

woeful lynx
#

Because suddenly they are not shown anymore 😅 not even the EU positions 😅

Nevermind i had a filter on 😅😅😅😅

dense spear
#

it was visible to me but im US

#

i think it opened very recently

#

like todayish

past comet
#

where is ballr ?

#

I cant find him

#

did he block me ?

clever grail
past comet
#

where is he

#

i need to talk to himmm

clever grail
#

why are people up

#

@sinful locust

#

ball.

cyan garnet
#

i have a resume review with a google recruiter today

#

on a google meet

#

how do I “flex” I am a high schooler and let her give me a swe internship

#

bribe em

#

threaten their family

#

the usual

#

FAANG or bust in high school

ivory parrot
#

does anyone know if deepmind gives an oa/tech screens for research engineering internships?

#

process so far seems way more like interviewing for a lab

versed kestrel
ivory parrot
#

but ive also only worked at/interviewed for university labs

versed kestrel
#

No PepeHands

#

I got godaddy for some reasons

ivory parrot
versed kestrel
#

Supposed to if im in the us

#

But im in canada so they pay 🥜

#

Idts

#

35/h + 5k lump sum

cyan garnet
#

jk lol

#

fr

#

citadel ez

#

fr

#

idk what imma do

#

or where imma go

#

but doesnt matter

#

hrt or bust

#

mine isnt cracked

#

thats why i am asking G recruiter to review it

#

idt she knows i am hser

#

or he

#

idk havent met em

low delta
#

How bad is duolingo OA?

sinful locust
sinful locust
#

@plain egret

sinful locust
#

Anyone have ML experience with text classification?

low vale
low delta
#

Any DPs?

low vale
#

nah

low delta
#

I can handle everything but dynamic programming

#

Ah perfect

low vale
#

🙂 🔫

#

yeah its very bizarre that EVERYONE i know got the same cases wrong

stone echo
#

who took hubspot final this season

cyan garnet
#

doraemon >

frigid gate
#

really does anyone have interview of Amz can u share the question

warm valve
#

random on discord >>>> nda

undone river
#

What did I just even read

golden root
#

Atlassian recruiters are actually blazingly fast, it’s impressive

low vale
#

how fast did they get back to you?

golden root
spice edge
#

does anyone know if microsoft is done hiring interns in Canada(vancouver) for summer 23?

low vale
#

hopefully i get a response soon then

#

all cases

rapid swan
soft basin
#

the voices are in ur head again

hollow sorrel
#

wtf optiver sends a 3h auto oa

#

3 hours to get instantly resume rejected just after

#

yes

low vale
#

i applied for the sec engineer role by accident

#

maybe thats why'

final forumBOT
#

Unable to locate data on Altassian

elfin peak
#

Is HubSpot OA still the same like last year?

lofty bluff
#

Today I have to take Valkyrie OA

#

And watch as a they ghost me

low vale
#

i applied for both

#

oa was for software

glad garnet
#

is it possible to reuse general coding assessment score for roblox?

sinful locust
#

yes

glad garnet
#

but then

#

im on the rolbox website

#

I dont have time to take the exam rn

uneven sand
#

roblox oa has 3 parts

#

1st and 2nd are cognitive games

#

3rd just sends you to codesignal

jaunty cove
#

I failed after that shit

safe minnow
jaunty cove
#

didnt evdn make it to the probability

safe minnow
#

The timer won't count down

uneven sand
#

also you can do each part separately

#

the first 2 are only 30 minutes each i think

glad garnet
safe minnow
glad garnet
#

oh

#

how do I take the codesignal/ send my code over

#

I wanted to get task3 out of the way since I have 2 more days till my last score expires

jaunty cove
#

@hardy patrol is fidelity phone technical

hardy patrol
#

hr shit but they asked me about oop fundamentals

#

they have a hard on for that

safe minnow
#

What exactly are OOP fundamentals anyway

hardy patrol
#

the four fundamentals i forgor

#

i dont know what the fidelity final is like i heard its technical rapid fire

#

my hiring manager was like yea your resume is great then started talking about his bike shop for 30 minutes

uneven sand
#

and you can share your score like usual

hardy patrol
#

fidelity is a pretty good starting point imo like its easy interviews and they give you a shit ton of free food

safe minnow
#

Oh

jaunty cove
#

Nice

timid river
#

is the leetcode problem list for amazon accurate?

elder oar
#

Has anyone that’s applied for Lyft heard back?

buoyant basin
#

Anyone know how to properly use a google referral? Wanting to use it for STEP and want to make sure I do the process correctly

hollow sorrel
#

Is there a website that lists all the companies that give sponsorship for internship

jaunty cove
#

i dont remember what times i put for amazon final and now another company asks for times in the same time range

#

Idk what to tel them

soft basin
#

cuz they are so fucking overloaded rn

jaunty cove
#

Im scared they will both schedule at the same time

wooden shard
#

Has anyone that’s applied to asana heard back?

sinful locust
jaunty cove
#

asana is full

quaint bolt
elder oar
jaunty cove
#

companies that are full

buoyant basin
#

Source?

jaunty cove
buoyant basin
#

Mf im full at this point

#

What’s full for summer 2024 rn?

#

Shiiii

heavy magnet
#

Anyone did Goldman Sachs interview in the past? How do I know if I’ll be interviewing for swe or quant? Is it cool to ask the recruiter?

#

There’s like no indication on which one I’ll be interviewing for lol

sinful locust
pseudo shoal
#

can @wary whale get an internship already so he can stop asking questions like an AI everyday

pseudo shoal
pseudo shoal
soft basin
#

sushi coping by blocking us

heavy magnet
#

Got a rejection from data internship this morning after plum assessment lmao

#

Haven’t heard back about swe tho

#

🙏

quaint bolt
#

@golden tusk did your recruiter say anything about when they’d potentially schedule IMC final?

slow veldt
#

where was that list of full companies sourced 💀 or is it shitpost

jaunty cove
#

its common knowledge

#

check tram blind

#

Or reddit

slow veldt
#

im reluctant to believe intern info on blind

#

but sheiiii

#

bloodbath

heavy magnet
#

These can’t all be full for summer internships?!?

#

By someone who works at all companies or what? 😂

undone river
#

Tf

#

I just applied to LinkedIn yesterday

#

Rip

tired narwhal
#

Wait im not sure i believe this? Summer SDE for Amazon is full?

clear oxide
#

how full is riot PB_peepo_think

tired narwhal
#

Yeah, im not sure i believe it, knowing how many ppl are still being interviewed, else they would just shut the process down. In terms of a full list accuracy, doesnt seem right.

undone river
#

👀

oak kite
#

pretty sure that guy is trolling

heavy magnet
#

Ye why would the companies waste time with giving out assessments and interviewing?

oak kite
#

and wrote all the tech companies

soft basin
#

bro optiver is at 137.5 per hour now for interns wtf

oak kite
#

yeah wtf they should be paying at least 150

heavy magnet
#

In amerstadam too

#

Imagine how much weed that is 🤯

soft basin
#

grams

mellow robin
soft basin
#

dont listen to everything u hear lol

#

within a week of working you could buy like 3 macbook airs

heavy magnet
#

Imagine full time salary 💀

soft basin
#

the hft market is gonna get inflated from all this ngl

jaunty cove
#

what is the hft market

#

its the market itself

heavy magnet
#

They’ve always paid like this tho

soft basin
#

not interns

#

interns are at triple digits per hour which is insane

jaunty cove
#

bc they can afford to pay

heavy magnet
#

Cause smart ppl going to tech

jaunty cove
#

they have a really high bar

heavy magnet
#

They need incentives

soft basin
#

yeah but that could still lead to the inflation of that market but i could also care less abt that market

mellow robin
#

if amazon was full, why would they give out offers yesterday at 10 pm

soft basin
#

mfs are always trolling

oak kite
#

google finished hiring yesterday

#

my recruiter told me

tardy ridge
#

has anyone taken ocient OA

mellow robin
#

source: his ballsack

grave skiff
#

Anyone got any updates from salesforce after the OA yet?

keen phoenix
#

If anyone got rejected by Optiver after OA, can someone check if the email mentions the role it was for?

#

I applied for both QT and SWE but the email doesn’t mention what role it was for lmao

clear oxide
#

Not true ye

golden tusk
jaunty cove
#

Theyre testing your mental fortitude

versed kestrel
#

when were u rejected?

sinful locust
undone river
#

when did you applied?

sinful locust
jaunty cove
#

peanuts without sign on

#

only $117

versed kestrel
#

Oooo same day prayge copium

static spindle
#

same here 😳

quaint bolt
#

Dracos said he heard back after 2 weeks

jaunty cove
#

pinterest as a website sucks

#

how can they afford to pay 250k

#

huh arent these swe internships

golden tusk
jaunty cove
#

thats pretty interesting

#

are you interested in working there for ml @sinful locust

#

ah

quaint bolt
white zinc
#

oh i missed the discussion that it was troll

#

mb

jaunty cove
#

Professional Troll
I write of matters which I neither saw or suffered, nor heard by reports from people that I made up. Let no man therefore in any case believe my words.

white zinc
#

lemme just

hardy patrol
#

waiting for microsoft to get back to me so i can fail the first round

#

how hard is pinterest screen

jaunty cove
#

Thank you for your interest in Amazon and for taking the time to complete the online assessment. We would like to move on to the next step and schedule a virtual interview for the 2023 Software Development Engineer Internship position!
This is worded like they don't really even screen people out after OA

hardy patrol
#

trying to weigh my chances on passing microsofts screen

jaunty cove
#

am i wrong

hardy patrol
#

yea lmao

jaunty cove
#

i think the only people who havent gotten finals are people who got ghosted bc they are disorganized

hardy patrol
#

our resident AI got rejected after oa

jaunty cove
#

ive convinced 5 people this morning that amazon is full

undone river
#

why

jaunty cove
#

bc it looks organized

undone river
#

I trust strangers online too much

summer sequoia
#

😂

soft basin
#

effective gaslighting

pulsar quarry
#

anybody go through BoA quant analyst process for intern?

dark jungle
jaunty cove
#

hyea you got unlucky

dark jungle
#

How long it take u to get oa

pseudo shoal
#

AI bot rogue AI

dark jungle
#

My journey to never getting amazon oa:3

jaunty cove
#

more than 18 day and less than 24

hardy patrol
#

cap1 is unironically full rn that sucks

soft basin
#

they’ll eventually free up

#

every candidate

jaunty cove
#

ones that are lucky

hardy patrol
#

yea enough people are going to renege

soft basin
#

i alr reneged

#

hopefully i’ll be able to stay connected with the recruiter for next yr tho

jaunty cove
#

c1 does finance so if i get c1 next year jane street will not resume reject me kermit_think

soft basin
#

new grad 😩

hardy patrol
#

how many internships do you have colin

jaunty cove
#

zero

hardy patrol
#

dont you have 400 lc wtf

jaunty cove
#

yes

#

i didnt rly know what n internship was 5 months ago

#

i realized its a good thing to do

hardy patrol
#

you and every cs major

#

still know a handful that dont think internships are worth it

jaunty cove
#

what else would u do during the summer

#

why not make $60hr for answering lc easies and meds

#

lol

#

i just played video games the previous summers

#

🤡

hardy patrol
#

yea plus with a ng return offer you dont have to reinterview right

jaunty cove
#

sometimes you do

hardy patrol
#

dang

jaunty cove
#

i think google you have to do an interview ?