#2023_summer

1 messages · Page 15 of 1

sinful locust
#

rooster matati

#

@hearty river

spark hearth
past comet
#

Unfortunately, we are not able to sponsor student / intern visas at this time. You must already possess the legal right to work in the United States to be eligible for this opportunity
What does this mean ? I am a F1 student and have legal right to work using CPT for 40hrs/week in Summer

past comet
#

Disney

#

topo sort ?

devout jewel
#

u use topological sort since each course depends on other course

past comet
#
class Solution {
public:
    bool canFinish(int numCourses, vector<vector<int>>& preReq) {
        unordered_map<int, vector<int>> mp;
        vector<int> indegree(numCourses, 0);
        for(auto edge : preReq) {
            int u = edge[1], v = edge[0];
            mp[u].push_back(v);
            indegree[v]++;
        }
        
        queue<int> q;
        for(int i = 0; i < numCourses; i++)
            if(indegree[i] == 0) 
                q.push(i);
        
        int count = 0;
        while(q.size()) {
            int u = q.front();
            q.pop();
            
            for(int v : mp[u]) {
                if(--indegree[v] == 0) 
                    q.push(v);
            }
            
            count++;
        }
        
        return count == numCourses;
    }
};

This is my solution in cpp using in degree count for each node

devout jewel
#
from collections import deque 
class Solution:
    def canFinish(self, numCourses: int, prerequisites: List[List[int]]) -> bool:
        indegree = {} 
        adjMap = {} 
        
         # initial setup 
        for n in range(numCourses): 
            indegree[n] = 0 
            adjMap[n] = [] 
            
        # gathering the adjancency list and indegrees of each node 
        for edge in prerequisites: 
            s = edge[0]
            e = edge[1]
            
            indegree[e] += 1 
            adjMap[s].append(e) 
        
        queue = deque([])
        res = [] 
        
        # finding the start of the dependency list 
        for k in adjMap.keys(): 
            if indegree[k] == 0: 
                queue.append(k)
       
        # bfs 
        while queue: 
            # pop the children and process the current node 
            curr = queue.popleft() 
            res.append(curr) 
            
            # add it children and decrement its indegree 
            for c in adjMap[curr]: 
                indegree[c] -= 1 
                # if the indegree is equal to zero, it must be the next node in the dependency list
                if indegree[c] == 0: 
                    queue.append(c)
        
        # if the res list length isn't equal to the number of courses, it means that we didn't hit all of the courses during our bfs 
        return len(res) == numCourses 
            
            

#

@queen raven here's the solution

#

with comments

craggy verge
#

Why did Salesforce close their intern positions?

past comet
glad remnant
soft basin
#

idt i saw much with sales force offers

craggy verge
sand pendant
sand pendant
craggy verge
sand pendant
craggy verge
#

Nvidia is quiet for now, only openings in Asia

sand pendant
soft basin
#

can we apply again when they reopen?

craggy verge
#

Round 2 baby different email

hallow scroll
#

yeah the summit only hired like 20 people for salesforce, theyre gonna open again later

soft basin
#

im so excited yet nervous for my interview

craggy verge
#

Anybody get an apple interview for SWE intern and if so which team?

hallow scroll
#

last year yea

past comet
#

lol

hallow scroll
#

you can interview for more teams tho 👀

soft basin
#

i haven’t been rejected yet but it’s been quiet

craggy verge
past comet
hallow scroll
#

apple isnt reviewing most apps until august pretty sure

craggy verge
hallow scroll
past comet
#

I got rejected from Localization team after my phone interview (July 1st)

hallow scroll
past comet
#

Will be getting interview from another team based in Seattle prayge

craggy verge
#

Is there a way for apple to expedite the process if you have a return offer from a big tech company? I’m just not sure of the channel to communicate that.

hallow scroll
#

its pretty much all dependent on the team you interview with

#

some might be willing to work with it

past comet
craggy verge
#

Best way to land the apple interview? @hallow scroll I’m updating my resume rn

past comet
#

COLD EMAIL

craggy verge
hallow scroll
#

I cold applied and got lucky, but I heard emailing ems is the way to go

#

linkedin scrappers

craggy verge
hallow scroll
#

there are some extensions that you can use to view the email of a linkedin member, just search engineering managers, select current company as apple then get their emails

#

i use apollo

devout jewel
#

Trust me

#

They legit skipped my final round because I have offer

past comet
craggy verge
craggy verge
devout jewel
#

I was always pink smh

past comet
#

This server is filled with 🐐's I learned a lot from these guys peepolove

hallow scroll
#

pink -> hot pink pipeline prayge

devout jewel
devout jewel
#

u r too kind juda

#

juda will I become a g boi finally?

#

The interview is this Thursday

craggy verge
devout jewel
soft basin
#

i’m glad i have y’all to help with the interview process

craggy verge
craggy verge
clever grail
#

tf lc discuss is always goat

devout jewel
#

most of the time it's better than the actual solution tab

clever grail
#

i have prem but i never go solution tab lmao

devout jewel
#

can't think of one rn

#

it's prob because i didn't check all of the solution post lmao

#

im lazy man

clever grail
#

discuss titles are also good as hints

#

@devout jewel doing g tagged WazowskiStare

devout jewel
#

stressing for it

#

trying to switch to G for next yr

ember bison
#

this is the fakest post i have ever read

#

apple asking just HTML and CSS LMFAOOO

#

lets say this is true. the fact that she bombed the first interview and was still given chances says smth

#

imagine getting 10 chances to pass an interview and still getting rejected 😭

ember bison
#

in the same loop

#

different loop doesnt matter but ye

steady crow
ember bison
#

thats what im saying bro

#

it just reads like A. Fake or B. They deserved the L in the first round

steady crow
#

its literally some random node that points to something else lol thats all she needs to remember to recall time complexity for it too and with 9yoe she should be able to solve most linked list problems without needing to review too much (even if shes a front end dev..)

ember bison
#

lmfao fr

elfin peak
plain galleon
#

Hello! I have a question: What kind of questions Akuna Quant OA contains?

random apex
random apex
ivory ocean
#

Idk tbh quant is the only OA I didn’t get lmao

sinful locust
#

anyone wanna vc

past comet
past comet
lethal sand
#

Amazon cooldown is after OA or interview?

#

can we reapply if we do not pass OA

#

or need to wait 6 months?

fringe jolt
#

Anyone in Morgan Stanley???

sinful locust
#

any1 got amzn final confirmation after letting them know when ur avail?

ember bison
past comet
sinful locust
#

damn

past comet
#

yeah so we must be prepared prayge

sinful locust
#

what if u get some hard ass question that u dont know how to solve and u just tell the interviewer that yuve seen in before so they give u another question

past comet
#

thats a gamble you have to make lol

#

What will you do if they ask you to solve it in 10 mins 💀

#

so that we can go to next question KEKW

sinful locust
plain galleon
sinful locust
#

voice chat

ember bison
coarse sleet
#

^

soft basin
#

finished citadel oa

#

god i hate oas

crisp berry
#

"oh i misread, this is actually different than the problem i've seen haha"

#

it still looks terrible on you though WazowskiStare

stark basin
soft basin
#

nah i just hate oas in general

#

who tf cares that john ran three laps bro

stark basin
#

man

#

i hate OA's AND got fucked

soft basin
#

or robby wants 300000000000000 watermelons like die

stark basin
#

or that Koko wants to eat fucking bananas efficiently or some shit

hallow scroll
#

Koko eating bananas is an A tier binary search problem

stark basin
#

any binary search problem is automatically disqualified from A tier

#

hell they're disqualified from C tier

simple garden
#

I would finish LC if every problem was centered around koko and bananas

sinful locust
#

Yo I think I saw a couple weeks back someone had an issue logging into amazon university

#

It gave some site admin error

#

Do any of you know the email that u contact to resolve the issue

vestal hatch
#

do they ask LC questions in the 1x45 amazon final

#

i really dont want to start leetcoding for amazon

hallow scroll
#

1 lc med or easy

queen plover
#

just do it

soft basin
#

could be hard

queen plover
#

it's not gonna be that hard

soft basin
#

if interviewer feels like asshole

hallow scroll
#

lc hards are super rare for amazon final

#

like superrrr rare

soft basin
#

i cant believe im buying lc premium

queen plover
#

for amazon?

soft basin
#

ive almost spent all of my paycheck recently

queen plover
#

bro that's a waste of money

soft basin
queen plover
#

more waste of money

hallow scroll
queen plover
#

i spent 10000 within 2 months

soft basin
#

if i do get internship for summer im gonna save a good amt of my paycheck

hallow scroll
plush flume
#

10$ in smp 500 rest on ...

soft basin
#

imma need it for rent when i move back to uni 😔

astral dew
stark basin
#

I mean
I know hards that I would be happy as a pig in shit to get and mediums that I would convert to christianity to pray to jesus to not get

soft basin
#

me getting merge k sorted linked lists

stark basin
soft basin
#

my solution: minheap KEKW

stark basin
#

me getting Burst Balloons

#

there is
literally no reason to test on bit manipulation

#

unless you're doing hardware embedded

#

or cryptography i guess

clever grail
#

bit manip is fun

sinful locust
#

Word break is great

#

I love those bfs dfs word problems

#

Yeah

#

Sometimes

#

Top down >>>>

#

does it look back to extend internships into being 6 months

#

cause i might stay part time for the fall semester

clever grail
sinful locust
#

huh?

#

lol

clever grail
#

why would it look abd

sinful locust
#

no i mean

#

i would write it as the same thing

#

but 6 mos

#

instead of 2 separate?

#

@sinful locust has a really nice one

#

i made half of it

earnest hatch
#

I thought about it, I was excited to see GitHub provides a year free of domain through GitHub Student pack. But never got around to making anything. KEKW

sinful locust
#

lmao

#

github has free doamins

#

for a year

#

for students

sinful locust
#

what

crisp berry
#

its a long story

earnest hatch
elfin peak
#

They'll merge your accounts

#

It's kinda useless

fickle ivy
#

about to

#

do amzn OA

#

any tips?

#

warnings?

hallow scroll
earnest hatch
sinful locust
#

Don’t fail

fickle ivy
fickle ivy
sinful locust
#

Become bald like jeffrey

fickle ivy
#

👨‍🦲

#

holy shit that emoji is scary

earnest hatch
sinful locust
hallow scroll
sinful locust
fickle ivy
stark basin
fickle ivy
ember bison
#

i had new email, phone number and address but they still merged em

sinful locust
#

Did u have the same resume?

ember bison
#

different resume

#

but probably like 80% match in text

sinful locust
#

mf cant even solve linked list qs

#

LMAO OK BUDDY

ember bison
#

EXACTLY

#

This is so fucking fake

sinful locust
#

smh

devout jewel
#

bro I stg if u can’t do linked list as senior eng

#

U are not a senior engineer

sinful locust
#

ya i think she was just not prepared

#

like probs has to do nothing w her race

ember bison
#

yeah

slow veldt
#

did a lot more than that

ember bison
#

this post just undermines candidates who are actually getting discriminated due to race

random sonnet
#

anyone know if u need perfect on IMC OA to move on?

sinful locust
#

^ same question but for optiver

#

i got 100% but took my sweet ass time w it

ember bison
#

fuck i still havent gotten IMC OA and i applied like 2 weeks ago

coarse marten
#

@uneven sand bs in 1h?

#

@hallow scroll

#

@quaint bolt

still peak
#

Booggggg

coarse marten
#

Mr bravin

#

how is it going?

still peak
#

Good just grinding

#

How is JP Internship going

coarse marten
#

bad

#

my manager is always busy and it is taking too much time to request access

still peak
#

Bro how many weeks since you started

coarse marten
#

4

#

starting my 5th one

still peak
#

You are fine it took me 4 weeks to get access at Goldman

coarse marten
#

when did you write your first LOC?

still peak
#

My fifth week

coarse marten
still peak
#

In the meantime they had me reading logs for bugs

coarse marten
#

in the meantime I'm working with another intern

#

@sinful locust gladge

still peak
#

Take care though they will still want you to finish the project

coarse marten
#

I don't have a project

#

that's the problem

sinful locust
#

if you take a codesignal multiple times in one day will it not verify any

still peak
#

Then they will assign you tickets on Jira like me

sinful locust
#

some people told me that they did it and it got verified, but am not sure

coarse marten
#

I don't plan to work here again

still peak
#

Banks are slow af

#

Bureaucracy 101

still peak
coarse marten
#

I will grind that return offer

#

otherwise it will be a big L

still peak
#

Do you have a bunch of useless meetings like me

coarse marten
#

yes

#

on top of useless daily scrum and catch ups

#

do you have 1:1 with your manager?

still peak
#

Yeah every week on Friday

coarse marten
#

so lucky

hearty river
#

@coarse marten I take PTO Monday and Tuesday

coarse marten
#

cool

hearty river
coarse marten
#

I don't really care but cool for you

hearty river
#

so I can watch twitch all day

still peak
coarse marten
#

no

#

no daily scrum previous week

#

my team is realeasing something

still peak
#

I have daily scrum too

coarse marten
#

so all of them are busy

still peak
coarse marten
#

when I ask help to someone (P1), P1 redirects me to P2 and P2 to P1 sadge

#

a cycle

still peak
#

My manager sits next to me

fringe jolt
#

Anyone in Morgan Stanley, looking for referal 😅

sinful locust
#

Do u spam multiple in a day or nah

#

damn

#

should 837 be enough for 2s

#

Stop

spark hearth
#

suppose P(x) = true iff we can add blocks so that we get the sequence [x, x+1, x+2, etc]
P(x) is monotonic bc there's some critical value where all inputs greater than that P(x) is always true

#

man's deleted his msg

simple garden
#

Yo

coarse crane
ocean relic
sinful locust
#

Oh really

#

Nice

ocean relic
#

Yeah I don’t think it matters that much

sinful locust
#

It it wasnt for my shitty q3

ocean relic
#

They do resume screen after

sinful locust
#

Paragraph formatting

ember bison
#

damn how tf yall so good at codesig

sinful locust
#

my q4 was easy but i didnt realize it was heaps 😭 till like 8 mins in the ide

ocean relic
#

Codesignal actually so annoying for some reason on Java you can’t type on the first 4 lines and it took me 10 mins to realize I could write on the 5th line

sinful locust
#

Oh wtf

ocean relic
#

I was so sus was liek tf

sinful locust
#

I'm hoping that 2s cares most about getting all 4

#

and then doing resume screen

ember bison
#

like i swear codesig is all rng

#

sometimes ull get an ezpz q4

#

sometimes itll be hard as balls

sinful locust
#

shit was hard to figure out

#

I was thinking like prefix the whole time

ember bison
#

😭

#

u still got like 849 right

sinful locust
#

I got 837

#

😭

#

all I need is a doable q3 in like 15 mins and a q4 where all i have to do is throw a hashmap at it

ember bison
#

dude the practice codesignals are so much easier than the actual thing

sinful locust
#

Nah i find them harder

hallow scroll
#

how

sinful locust
#

I always have some tricky matrix shit

hallow scroll
sinful locust
#

True

#

I just dont find practice code signals to be representative

#

I had one 30 liner q2 once, that i dont think you can do without if statements

real idol
#

Is there anyway to merge codesignal accounts?

sinful locust
#

There should be something pinned about alternate emails and linking with codesignal in the archived 2022 - summer i think

real idol
#

Thanks

#

I'll take a look there

ember bison
fickle ivy
#

fucked up question 2 on amzn oa

#

got 11/15

#

but timed out on last few cases bc my sol was n^2 amortized

#

instead of n

#

😦

soft basin
#

was it the queries question?

fickle ivy
#

i couldnt python hrad enough

#

ah

#

nah

#

idk if i can say here

#

but am i fine if i solved first one in like

soft basin
#

or the greyness one?

fickle ivy
#

2 mins

#

15/15

#

and 2nd one took me whole time 11/15

#

or is it gg

soft basin
#

lolz

#

the greyness one should have O(m*n) solution

hallow scroll
fickle ivy
#

ok 😦

hallow scroll
#

I moved on with 15/15 on q1 7/15 on q2

fickle ivy
#

wait

#

fr

#

what was ur q2

hallow scroll
#

yea

#

a sliding window problem

fickle ivy
#

wait

#

was it

#

max sum of unique subarray

#

thats what i had

hallow scroll
#

yeah lol

fickle ivy
#

wait

#

then IM POGGING

hallow scroll
#

I tled the other cases

fickle ivy
#

yeah same

hallow scroll
#

I did way worse last year and got final too

fickle ivy
#

i did it in python

#

and i like

#

coudlnt figure out how to

#

hash map

#

lmao

soft basin
#

max of subarray is just maintaining a full sum

fickle ivy
#

or hash map with indices and shit and what not

hallow scroll
#

its rng tho, ik people who had perfect oa score but still got rejected

fickle ivy
#

oh fr

#

maybe the personality test

soft basin
#

maybe they take lp more seriously

fickle ivy
#

affects it

#

lp?

hallow scroll
#

probably yeah

soft basin
#

overtime overtime

#

leadership principle

fickle ivy
#

oh yeah

hallow scroll
fickle ivy
#

i mean i talked about

#

in personality test

#

i liked wokring with other ppl

#

i incorporated feedback tried out new things

soft basin
#

i answered anything amazon would want to hear

fickle ivy
#

and was optimistic mostly

fickle ivy
soft basin
#

overtime and luck 🤣

#

one of the leadership principles is based off of luck 😐

fickle ivy
#

bruh wtf

#

i said stuff is

#

somewhat luck

#

but not a lot of luck

#

thats so bullshit

#

idek

#

if i dont get a response

#

fuck amazon

#

do they want u

#

to be lucky

#

wait for the im lucky one i said yeah

#

im pretty lucky

soft basin
#

amazon can smd

fickle ivy
#

wtf 💀

#

hoping

coarse crane
#

amazon not even a faang

soft basin
#

they give the most opportunity to ppl without internships

#

😔

hallow scroll
#

isnt that like a good thing lol

fallen stratus
soft basin
#

yep it is a good thing

#

idrc if they are faang or not

thin prawn
#

Yo goldman sachs sent me that im not eligible for the program because of my grad date

#

but im graduating in 2024

#

wtf does that mean

lament magnet
#

Did anyone received amazon OA? Can you please tell me when did u submitted application and what position it was? for summer 2023

soft basin
#

submission time does not matter bro

#

apply and wait best u can do

#

amazon has a very rng system for oas

lament magnet
#

😫

white zinc
soft basin
#

seriously? 😐😐

#

i’m praying i get best time to buy and sell

hallow scroll
#

Has your final been scheduled yet

soft basin
#

i havent even gotten the final no

#

ive only finished oa

sinful locust
#

when does meta open?

soft basin
#

mid august maybe

sinful locust
#

thats if they open

#

@ember bison

hallow scroll
#

That’s probably gonna happen lol

ember bison
sinful locust
sinful locust
ember bison
#

LMAO

quaint bolt
#

I wonder where all the loo kids will go now that their safety net’s gone

zenith vortex
harsh jackal
#

Is there any deadline for completing Citadel OA?

fickle drift
#

ive never heard anyone say that before

ember bison
#

this economy actually has me depressed

sinful locust
elfin peak
#

0 offer till now

ember bison
#

well its not even august

elfin peak
#

Might as well just work at a bank at this point

ember bison
#

😭 fr

elfin peak
devout fractal
#

do those accounting firms still hire? PepeLaugh

elfin peak
#

I'm actually worried

stone echo
#

lol

ember bison
#

😭

#

fuck i gotta get spring, summer and fall internships 😭

hallow scroll
#

Spring prayge

quaint bolt
#

Winter* dogesmile

sharp yew
#

Which companies open for winter/spring?

sinful locust
#

Google

quaint bolt
#

Most of FAANG and some other companies, but for a couple of them it’s either for certain schools or coop schools

slow quarry
#

HOW TO GET INTO FAANG GUYS?

coarse crane
slow quarry
#

How to get an internship?

Hello! I turn 10 years old in September and I’m going into 4th grade. I was wondering how I can get an internship? I read that Google and Jane Street are great places to start. I’ve only been able to solve one leetcode easy with help from my dad, but my resume has many “kid of the week” awards and my very own Hello World project. I know those companies aren’t that hard to get into but I was wondering what else I can do.

sharp yew
hallow scroll
hallow scroll
quaint bolt
hearty river
#

mr wagon

sinful locust
soft mist
#

I think that’s another thing that can help jump start your career

slow quarry
spark hearth
#

gar damn ur gracked af

slow quarry
#

i fucking removed it bc i forgot to remove the location of college lmaocry

mystic depot
#

me reading the chat as every other message gets deleted KEKW

spark hearth
#

facebook after freshman yr and now rippling

#

how much does rippling pay

#

68/hr

slow quarry
#

9360/month

slow quarry
spark hearth
#

lmao

slow quarry
#

its like mid 50 usd

#

so 68 cad at the time?

spark hearth
#

lemme calc

#

exactly 54/hr damn

hallow scroll
#

Rippling madge

#

i'll never forget my interviewer

spark hearth
#

tbh ive never heard of rippling but they pay a lot

hallow scroll
#

👎

spark hearth
#

explain jack harlow

hallow scroll
#

just had a bad experience thats all

#

cool company tho

spark hearth
#

like with interviewer?

slow quarry
#

his interviewer was a dick lol

spark hearth
#

yeah it happens

hallow scroll
#

yeah basically

spark hearth
#

smoothie king

sinful locust
#

Sounds like quant interviewers

slow quarry
#

mine thought i was interviewing for ng/experienced role until I asked her what interns have done at rippling lmaocry

#

why do i look so old

hallow scroll
#

😭

sinful locust
#

:lmaocry:

soft mist
#

Anyone hear back from amazon oa?

spark hearth
#

lol

soft basin
#

gotta wait a few days

sinful locust
#

Platinum Bullet

hallow scroll
soft basin
#

i hope i dont get a dick interviewer for capitalone

sinful locust
#

Cap 1 lol

#

My expectations aren’t high

soft mist
#

Wait did anyone do capital one final yet

soft basin
#

i heard they were new grads

sinful locust
#

None of the recruiters showed up to the prep session

slow quarry
soft mist
#

For some reason my interviewer asked me to schedule it 1 month ahead of schedule

sinful locust
#

Mine is on the 11th

soft basin
#

im scheduled for the 18th

sinful locust
#

I think that was the first day they gave me

slow quarry
sinful locust
#

WazowskiStare why

slow quarry
hallow scroll
#

c1 ghost me Sadge

sinful locust
#

LC hard :kekw:

slow quarry
#

friend solved partially and still got offer

spark hearth
#

and then swap pairs of k-groups

sinful locust
#

I mean

#

The problem is conceptually easy

spark hearth
#

yeah

soft mist
#

First they let me is after august 24

spark hearth
#

it's conceptually easy

sinful locust
#

Implementation hard

spark hearth
#

but annoying

soft mist
#

Like bruh July isn’t even over

soft basin
mystic depot
sinful locust
#

Yeah its not like cap1 is quant where you need perfect

soft basin
#

these were the only slots i was given

sinful locust
#

Or smth

#

I only got 4 days of slots

#

Lmao

#

How you get like 15

soft basin
#

🤷‍♂️

sinful locust
#

Yeah if they give me an lc hard im screwed

hallow scroll
#

should I stay awake and leetcode or take a nap

#

nvm goodnight

sinful locust
#

Nap

soft basin
#

i just got lc premium but i need a lc break for today

simple garden
#

Legend

hallow scroll
#

power naps >

soft basin
#

its been destroying my mental health

sinful locust
#

Yes

spark hearth
sinful locust
soft basin
sinful locust
#

11

mystic depot
sinful locust
#

I have 3 phones that week

soft basin
#

i scheduled like 4 days ago

sinful locust
#

Yo

soft basin
#

i think like last wednesday i got that email

spark hearth
hallow scroll
#

vex 😩

slow quarry
#

man found my profile lmaocry

#

those two companies are a unique combo so it should have popped up easily lol

spark hearth
#

and ur personal webiste is sick thanospog

soft mist
#

Dracos getting quant this year for sure

spark hearth
#

yeah 100%

slow quarry
#

i cant wait for the dual rejection from imc/cit after oa

soft mist
spark hearth
#

how was meta interview

slow quarry
#

lc med tagged 3 interviews

spark hearth
#

3 interviews damn

ember bison
uneven sand
#

4.5

sinful locust
#

4.9

#

4.99

#

4.990

#

4.991

#

4.992

slow quarry
ember bison
#

LMDAOO

#

ULL BE FINE

sinful locust
#

TOO LOW

#

ULL DIE

slow quarry
#

cit recruiter reached out and responded when i asked her for oa so i have POC for that

#

imc tho prayge

sinful locust
#

anything below 4.0 is TRASH

soft basin
#

me with my 3.79 gpa 😔

slow quarry
sinful locust
#

proof of concept

soft basin
sinful locust
#

damn what startup are you doing

slow quarry
#

the one INNOVATING THE FUTURE of HR and IT with REACT DJANGO AND MONGO

sinful locust
slow quarry
#

sadly not

sinful locust
#

yo

#

youll need this

#

yahkuna told me

#

lol django

#

django kinda fell off

#

mvc in general fell off

#

everyone realized its a literal waste of time

warped daggerBOT
sinful locust
#

WHAT

#

@ mods @hearty river

soft basin
#

lmao

sinful locust
#

is shit posting again

sinful locust
#

amazon auto reject

#

imagine doe

#

i dont even meet my own standard

soft basin
#

bro id stop doing swe in general

#

if swe was being that picky id just quit

sinful locust
#

ya at that point we could just go into ib

soft basin
#

cant expect us to learn nothing and school and maintain a useless gpa

soft basin
sinful locust
#

investment banking

soft basin
#

nah i find bank shit boring

sinful locust
#

ya but ✨ money ✨

sinful locust
#

its so awfully obvious an academic came up w the idea for mvc

sand pendant
#

@spark hearth are you also processing places where you got ghosted not just rejected?

#

as some of them you listed haven't started hiring yetWazowskiStare

sinful locust
#

Stop

spark hearth
coarse marten
#

Yo spotify open

hallow scroll
#

yoo

ember bison
#

cant find

proud whale
#

Whack intern pay

#

Compared to other places

hallow scroll
hallow scroll
proud whale
#

I don’t even use Spotifydogesmile

hallow scroll
#

they also take like 2 interns so thats kinda a flex

proud whale
#

Oh interesting

#

Maybe if I used I’d find it cooler

hallow scroll
#

so I thought that was dope

hot venture
#

How much does Spotify pay for ng?

proud whale
#

That is dope

#

High impact

astral dew
proud whale
#

Yt music >>>

astral dew
#

Yeah, go home 😭

#

No way u just said that

proud whale
#

Hunnid percent

stark basin
proud whale
#

I’ve used all 3

coarse marten
#

@hallow scroll WazowskiStare

#

do you plan to renege?

proud whale
#

No he doesn’t

#

AFAIK

coarse marten
#

I meant his summer 2023 internship search will stop

#

cuz companies will look at his linkedin like WazowskiStare

hallow scroll
coarse marten
#

nice

fierce token
#

king shit juster

coarse marten
#

not worried by rescinded offers?

#

I would have tried to bag 2 offers

#

1 as a backup/security

hallow scroll
#

2 lazy to interview + I have one more internship left after

coarse marten
#

practice

#

no?

hallow scroll
#

Hm maybe but I don’t think slack will ever fumble

hearty river
#

that’s crazy mr bog

coarse marten
#

nice matuda

#

that's funny

hallow scroll
#

I don’t really think that’s copium practically every tech company uses slack lol

#

I’m trying to get amazon or asana for winter but if slack rescinds I’ll try to move them to summer idk we’ll see

coarse marten
#

but he removed it

hallow scroll
#

Yahkuna is troll madge

#

But yeah might be safe to apply to some other places just to be safe lol you never know

#

I’ve never had recruiters actually check my LinkedIn tho from a job app

coarse marten
#

I would remove the incoming from linkedin

hallow scroll
#

Too lazy

#

If they see oh well

coarse marten
slow quarry
hallow scroll
slow quarry
#

Go touch some grass u won the lotter lmaocry

coarse marten
#

what companies are you in process with mr dracos?

hallow scroll
#

After I get an offer I will

slow quarry
coarse marten
slow quarry
#

But rn instabase Palantir akuna

hallow scroll
#

I have a nice long vacation tripped before I start coinbase

earnest hatch
crisp berry
#

instabase didnt have public posting right?

astral dew
quaint chasm
#

Anyone know if the amazon cooldown applies if I applied to a subsidiary (amazon robotics)

proud whale
proud whale
proud whale
proud whale
#

i hope i bag cisco meraki tmrw

hallow scroll
proud whale
#

remote + the 7-10k sign on prayge

hallow scroll
#

you get decision tomorrow?

proud whale
#

final is tmrw

#

i feel like based on how final goes i'd know

hallow scroll
#

ez for you

#

yeah true

proud whale
#

hopefully man

weary totem
#

Gl

proud whale
#

gonna review leetcode tonight

hallow scroll
#

I want my amazon final to get scheduled already so I can get it over with

#

tech equality summit

#

they interviewed us during the event and handed out offers

fickle ivy
#

gl for cisco

#

how long does

#

amzn take to respond

#

after OA

willow canopy
#

2 days after for me

queen plover
#

that was my timeline

fickle ivy
#

holy

#

congrats dude

#

that also means i have like no time to prep for final if i do make it there

#

also how did my codesignal score get higher

#

it got verified and got increased

queen plover
#

no i just wanted to interview asap

pseudo orbit
fickle ivy
#

o

#

also @pseudo orbit who is ur pfp

quaint bolt
pseudo orbit
fickle ivy
#

😮

pseudo orbit
#

it's jeremy clarkson

fickle ivy
#

i couldnt even tell lmao

quaint bolt
#

jezza

fickle ivy
#

i only know him from the meme where hes in the car

pseudo orbit
#

jezz

fickle ivy
#

jizz

pseudo orbit
#

LOL ye a lot of ppl only know him from that

#

wagwan

#

grand tour and top gear are goated

fickle ivy
#

LOL

pseudo orbit
#

actually the trio is goated

quaint bolt
#

Still 816 WHYYY

fickle ivy
#

noo

pseudo orbit
fickle ivy
#

mine went up

#

6 points

#

somehow

pseudo orbit
#

poker player do we know each other

#

did you have any other usernames in the past

fickle ivy
#

wdym

#

maybe

pseudo orbit
#

i took like a solid 2 month break from this server so idk if things changed or not

quaint bolt
#

It’s basically a behavioural

fickle ivy
#

lmfao ive only been on here for 2 months

#

im a prefrosh

pseudo orbit
fickle ivy
#

yeah LOL

pseudo orbit
#

are you like MIT or smth

quaint bolt
#

I got final 3 mins after I hung up my phone PepeLaugh

fickle ivy
#

i am not MIT

#

i am brown

pseudo orbit
#

which uni

#

oooo nice i havent met a brown cs major yet

fickle ivy
#

yeah very few exist in the wild

ocean relic
#

😭

fickle ivy
#

endangered species

pseudo orbit
#

fr

#

URM

fickle ivy
#

LOL

quaint bolt
#

True I’m a cat

pseudo orbit
fickle ivy
#

pog

pseudo orbit
#

jezza moment

fickle ivy
#

jezza?

tough rain
fickle ivy
#

ah yes

queen plover
#

amazon

fickle ivy
#

jezza

#

wait which companies

#

use

#

codesig

pseudo orbit
#

C1

#

2sig

#

uhhh

fickle ivy
#

2sig codesig?

#

i think 2sig rejected me

#

for not being 2024

pseudo orbit
#

p sure no?

fickle ivy
#

gg

#

sig uses codesig but their own

pseudo orbit
fickle ivy
#

thank u

#

wait what do u need for

#

quora

#

on gca

quaint bolt
#

Prefrosh out here doing codesignals PepeLaugh

fickle ivy
topaz drum
#

I heard most of companies look at ur resume after u get 800

quaint bolt
#

I don’t plan on doing anymore

#

This is my codesignal for the rest of the season

topaz drum
#

I just got 800+ for the first time and i dont wanna do it again lool

#

Took me like 3 attemps to get it

fading lion
#

Looks like around 810 is the cap if you don't do question 3

fickle ivy
#

i see

fickle ivy
#

how much does

#

quora need

fading lion
#

yea sorry, that was the average

tacit citrus
#

Should i retake the gca if my speed on the test isnt the best? Especially q3

queen plover
stark basin
slow veldt
#

822 without solving 3 👬

ocean relic
#

I swear I’ve seen the same codesignal problem like 3 times once you do a couple times it gets easier

stark basin
#

good to know for when I need to do it again like 6 months later

ocean relic
#

If you can solve 3 that’s always helpful bc it doesn’t really matter how much time u take for it

#

You’ll more than likely get a higher score than without

stark basin
#

yeah I took like 30, 35 minutes total solving all and ended up with 845

ocean relic
#

Oh wait nvm tf u set then

#

Begone

stark basin
#

i'm set but only SIG is taking Codesignal

ocean relic
#

Nah there’s plenty

#

Two sigma, Robinhood, dtabtricks, asana blah blah

stark basin
ocean relic
#

Roblox

stark basin
#

oh right Roblox said they were gonna open their application up for real on August 1st didn't they

stark basin
sinful locust
stark basin
fickle ivy
random sonnet
stark basin
fickle ivy
#

😳 3 hours

#

until the big

#

wait sm1 plz tell emee

#

how much does

#

quora want on gca

#

am i fine with 800+?

#

ive heard some places want like

#

850 or w/e

stark basin
fickle ivy
#

@quoraman

ocean relic
stark basin
#

nobody's perfect

#

except for Ohtani

fickle ivy
#

😮

sinful locust
fickle ivy
#

i see

sinful locust
#

Even if you have 849 youre not safe

fickle ivy
#

jfc

slow quarry
#

quora has accepted 800+

fickle ivy
#

my score is good im p sure

sinful locust
#

Must ve been super cracked resume then

fickle ivy
#

but idk if good enough for the

#

850 startups

sinful locust
#

Idk what 850 startups are

slow quarry
fickle ivy
#

like startups that req 850

sinful locust
#

Huh

slow quarry
#

no company restricts to 825+

fickle ivy
#

i heard some random ass companies

#

require 850

sinful locust
#

Thats interesting

fickle ivy
sinful locust
#

Not roblox?

slow quarry
#

all 800+

sinful locust
#

Damn wtf

slow quarry
#

asana has done 750+

fickle ivy
#

what

sinful locust
#

Well yeah ik about asana

fickle ivy
#

fr

#

can't even apply to asana

stark basin
#

cause they hate your resume

ember bison
#

🙏 that databricks accepts my 730

sinful locust
#

Damn i thought you needed like 845+ for those companies

slow quarry
#

not sure where the rumor of 825+/840+ or gtfo came from lol

ember bison
#

jkjk

sinful locust
#

Probably from this server

#

@ dracos

slow quarry
#

800+ is instabase just for a reference

stark basin
sinful locust
#

And attribution of rejecting to score, not resume screen

stark basin
slow quarry
#

and their oa anaally penetrated many last year

fickle ivy
#

also has anyone had this happen

#

where

#

after gca verification

sinful locust
#

Yes score incrases

fickle ivy
#

eah

sinful locust
#

It is normalized

fickle ivy
#

yea

sinful locust
#

What you get

fickle ivy
#

mine increased by 6 lmao

#

i went 841 -> 847

sinful locust
#

nice

#

you pretty much dont need to take it again

fickle ivy
#

so i hope im good

sinful locust
#

for 6 months

fickle ivy
#

🤞 yea

#

why 6 months

#

does it expire

sinful locust
#

yes

fickle ivy
#

motherfuckers

sinful locust
#

pray you get the same rng in 6 months