#2023_summer

1 messages · Page 114 of 1

rustic topaz
#

I got resume rejected

long jasper
#

anyone knows if gusto codesignal is gca or custom?

muted summit
#

isnt intuit 50/hr?

#

im p sure thats good

white urchin
#

i think they are talking about ft

steady crow
spark hearth
#

did china make a citadel knock off?

jaunty cove
#

Xane street

hardy patrol
#

theres got to be a hidden agenda among all the users with female kpop pfps theres no way its a coincidence

rustic topaz
#

Guys can you try hard LC for a year and get quant?

#

🤔😁

spark hearth
#

no

#

and networks

rustic topaz
#

For quant?

#

I just gotta be as knowledgeable as n3 right

#

What’s concurrency

spark hearth
#

coding

rustic topaz
#

Bro

#

It was a genuine question

#

It’s not supposed to be funny

#

😞

spark hearth
#

ur joking right

rustic topaz
#

No

spark hearth
#

how did u not learn concurrency in school

rustic topaz
#

Idk bro

spark hearth
#

it was taught in lower level cs courses

jaunty cove
#

how do i learn concurrency without taking classes

rustic topaz
jaunty cove
#

i cant take them

spark hearth
#

online class

rustic topaz
#

Wtf is it tho

jaunty cove
#

its concurrency bro

spark hearth
#

^

rustic topaz
#

Bruh

jaunty cove
#

like

#

you can put on your resume that you understand concurrency

rustic topaz
jaunty cove
#

since you grind LC and tpye on discord at the same time

#

👍

rustic topaz
#

So it’s a linkedlist

jaunty cove
#

yea

spark hearth
#

yes

jaunty cove
#

just tell them that

spark hearth
#

it's a linkedlist

jaunty cove
#

sometimes its a doubly linkde list though

#

be careful

spark hearth
#

somtime its a triple

jaunty cove
spark hearth
#

but rarely

rustic topaz
#

So I need to be cracked at LC, and good at this

#

???

sinful locust
#

Yes

jaunty cove
#

i remember when akuna asked me to implement a triply linked concurrency in python and i folded

spark hearth
#

?

#

why are u folding paper? u making origami?

jaunty cove
#

do i look like a nerd to you?

jaunty cove
rustic topaz
#

you're not n3

#

you're not him

#

🤷‍♀️

jaunty cove
#

look at the adv solutions on the solution

#

they r weird

rustic topaz
#

did you finish neetcode 150?

#

did you just do recursion on that question

#

is that how you're suppose to solve it?

jaunty cove
#
class Solution {
public:
    double myPow(double x, int n) {
        long long N = n;
        if (N < 0) {
            x = 1 / x;
            N = -N;
        }
        double ans = 1;
        double current_product = x;
        for (long long i = N; i ; i /= 2) {
            if ((i % 2) == 1) {
                ans = ans * current_product;
            }
            current_product = current_product * current_product;
        }
        return ans;
    }
};
#

idk what that is

rustic topaz
#

did mf just use long long

#

is that C++?

jaunty cove
#

the trick of this problem is remembering (x^n == 2 * x^(n/2))

#

wrong thing

#

a^m^2 = a^2m

#

or smothg

onyx bloom
#

what's n & 1? does that just check if n is odd?

jaunty cove
#

it checks the last bit which is the bit that determines if a number is even or odd

#

bc 1 in binary representation is 1

safe minnow
#

Wait, I'm confused. I got a different format for my karat interview and my retake

#

The first one was to solve as many as possible

#

The second was to solve a single question

#

Is that normal?

heavy magnet
#

anyone interviewed with gap for data science?

#

for some reason i got matched with gap for data science but not swe through codepath

safe minnow
#

Thanks for the response

placid pelican
#

anyone know how the akuna data infra oa is?

jaunty cove
#

its prefix suffix

#

go each row, each col, in two directions

#

its just 2 dimensional of what uve done before

#

yes

#

lintcode

#

ill write a sol in python

#
#

can you see flowers through flowers

low vale
#

2nd gap question was p easy for me and not dp

#

So it they give all the same questions

#

Idt*

jaunty cove
#

gimme a second

#

if youre standing on a flower does it count as seeing a flower

#

can you stand on a wall

#

@sinful locust

#

yea

#

pog

rustic topaz
#
jaunty cove
#
class Solution
    def seeFlowers(self, grid) -> int:

        dp = [[0 for j in range(len(grid[0]))] for i in range(len(grid))]

        # Flowers you can see from left
        for i in range(len(grid)):
            flowers = 0
            for j in range(len(grid[0])):
                if grid[i][j] == 'W':
                    flowers = 0
                elif grid[i][j] == 'F':
                    flowers += 1
                else:
                    dp[i][j] += flowers

        # Flowers you can see from right
        for i in range(len(grid)):
            flowers = 0
            for j in reversed(range(len(grid[0]))):
                if grid[i][j] == 'W':
                    flowers = 0
                elif grid[i][j] == 'F':
                    flowers += 1
                else:
                    dp[i][j] += flowers
        
        # Flowers you can see from above
        for j in range(len(grid[0])):
            flowers = 0
            for i in range(len(grid)):
                if grid[i][j] == 'W':
                    flowers = 0
                elif grid[i][j] == 'F':
                    flowers += 1
                else:
                    dp[i][j] += flowers
        
        # Flowers you can see from below
        for j in range(len(grid[0])):
            flowers = 0
            for i in reversed(range(len(grid))):
                if grid[i][j] == 'W':
                    flowers = 0
                elif grid[i][j] == 'F':
                    flowers += 1
                else:
                    dp[i][j] += flowers
        
        # Iterate over cache to find most flowers viewable
        best = 0
        for i in range(len(dp)):
            for j in range(len(dp[0])):
                best = max(best, dp[i][j])

        return best
#

i havent tested tis

#

mine is O(m*n) but 5 times

#

u can probably optimize

#

optimal TC is O(m*n)

#

i think considering this a dp problem makes it harder than it is

low vale
#

What company is that question for?

jaunty cove
#

im trying to think of how to optimize memor

glacial lance
#

Is a 25/30 enough for the Amazon OA

jaunty cove
#

its not consistent

glacial lance
#

Tf

late terrace
#

not heuristic it’s rng

#

definitely not being salty

jaunty cove
#

how does o1 solution work kermit_think

#

o1 memory

#

sometimes u run python and it gets 5% faster and then next time u will get 95% faster

#

oh

#

well

#

thats kinda

#

cheating

#

not cheating but i thought it would be something more creative lol

#

i gotta read the solution

#

i dont get how u can replace the values without ruining the data

quaint bolt
#

When stripe PepeHands

rustic topaz
#

don't you have

#

hrt

#

😭

quaint bolt
#

Ty

quaint bolt
rustic topaz
#

bruh

#

AKUNA PALANTIR AND AMAZON

#

😐

#

WTF

jaunty cove
quaint bolt
#

Did you work at Amazon mr fox

#

Oh yeah prolly

rustic topaz
#

why do you need stripe?

quaint bolt
#

Stripe’s infra roles are v cool

rustic topaz
#

which season?

jaunty cove
#

stripe looks like a sexy company based on their website ui

#

thats all i know about that

rustic topaz
#

jesus

#

300k

#

what

jaunty cove
#

htats even better

rustic topaz
#

wtf does that mean

jaunty cove
#

cash ?

#

but idk how they would pay cash

rustic topaz
#

cash?

#

how are they gonna pay you 300k in cash

#

💀

cyan garnet
#

just a couple 100k bills

#

its fine

quaint bolt
#

Just applying to companies I like in the meantime

jaunty cove
#

how do they pay you in cash

#

tho

quaint bolt
#

See how many offers I can get

jaunty cove
#

is that under the table

golden tusk
cyan garnet
#

apple is gonna ding stripe's stock

jaunty cove
#

oh

#

i assumed paper money meant paper bills 💀

cyan garnet
#

apple tryna do everything

jaunty cove
#

how do u guys learn this shit

quaint bolt
#

Next year prayge

quaint bolt
cyan garnet
#

I agree

#

apple is gonna ding its evaluation

steady crow
#

payment services

cyan garnet
#

with apple pay later

#

apple got cash

#

they can do everything

golden tusk
cyan garnet
#

they got a platform

quaint bolt
#

No hopefully an off-season internship

#

JS does fall so Mayhaps dogesmile

uneven sand
#

I got JS rejection offer

quaint bolt
#

Prolly Amazon or google FT

uneven sand
#

^

quaint bolt
#

Maple syrup

ivory ocean
#

Loo

#

Loo

#

Loo

#

Loo

#

Loo

quaint bolt
#

Yes

#

International yeah

#

That’s why I want IMC so much LOL

ivory ocean
#

Sounds like a virus

uneven sand
#

get TN

quaint bolt
#

I need to be a Canadian citizen for that

ivory ocean
#

Tennessee?

uneven sand
#

oh

ivory ocean
#

I want Tennessee

uneven sand
#

TN == These Nuts

quaint bolt
#

Lots of money

ivory ocean
#

Amazon Nashville FT return is the goal this year

quaint bolt
#

For an internship

mystic depot
#

dont think so they instantly rejected me

quaint bolt
#

Help pay tuition

mystic depot
#

prolly cause visa

#

bruh then i just got rejected then KEKW KEKW KEKW KEKW KEKW

quaint bolt
#

Almost all big companies and HFTs sponsor tho?

cyan garnet
uneven sand
#

cap one has Toronto role

quaint bolt
#

That I’m not quite sure about, like 5 or so years or more?

jaunty cove
#

easy problem im an idiot

mystic depot
#

how so, cause of the lottery?

quaint bolt
#

Yes go to the US as a senior swe for a bit

#

HFT senior swe pay dogesmile

mystic depot
#

also that KEKW

quaint bolt
#

Jump paid a friend’s friend 750k for senior last year

cyan garnet
#

H1-b is dogshit

jaunty cove
#

how do you advance past senior dev

cyan garnet
#

if I was gonna make a smart move I would try to start my own company and then go as an investor in the US

uneven sand
#

get gud

jaunty cove
#

do you need a degre in business management or smth

uneven sand
#

no

mystic depot
uneven sand
#

mba is dogshit

cyan garnet
#

and go in the EB-1 category for greencard

mystic depot
cyan garnet
#

which takes like 2-3 years

jaunty cove
#

yea a lot of people say that

#

but do hiring managers believe it too

quaint bolt
#

After senior swe it’s a matter of how long you’re at the company tbh from what I’ve seen

jaunty cove
#

is it just a matter of consistently proving you know how to get things done and lead a team with a little bit of luck

quaint bolt
#

I have seen a grand total of 0 staff swe’s who’ve jumped around from company to company

uneven sand
#

you can def jump for staff

#

beyond that is probably tricky

quaint bolt
#

Like all the principals I’ve seen at Amazon in my org have been around for years

mystic depot
#

there is also eb-5 for those mfs who work at HFT firms or as senior SWE KEKW

cyan garnet
#

H1-B go into Eb-2

#

the wait is like 20 years skull4k

uneven sand
#

I’m an EB-1 recipient btw

cyan garnet
#

L1 go into EB-1

cyan garnet
quaint bolt
#

I’ve got plenty of time to find another one

cyan garnet
#

like 2 - 3 years

jaunty cove
#

making a good start up obviously is a tough thing to do, and im not discrediting how much work goes into that, but its not exactly something you can reliably do by following a process

cyan garnet
#

for EB-1

mystic depot
#

hence for HFT employees and senior swe

cyan garnet
mystic depot
quaint bolt
#

Idk I just know it’s way less stressful

mystic depot
quaint bolt
#

Also if I’m at goog I won’t have to worry about that anyways

cyan garnet
#

then I would start a company

#

get it decent sized

#

invest in a branch thats in the US

#

1 million dollars

uneven sand
#

wagon would you be ROW

cyan garnet
#

and get EB-5

quaint bolt
#

You forget H1-B is a lottery lol

cyan garnet
quaint bolt
#

And every time I have to renew it I go thru the lottery again

#

I’m not tryna take any chances lol

cyan garnet
#

I am not sure if the renewal is lottery system

uneven sand
#

or just join WITCH where they enter you multiple times

quaint bolt
#

.

cyan garnet
#

its not even 10 years

#

15 years minimum

uneven sand
#

depends on country

quaint bolt
#

Bro my friend’s sister is staff swe at meta

cyan garnet
#

yeah thats what I thought

quaint bolt
#

Stanford masters

cyan garnet
#

unless u leave the US u dont need H1-B renewal

quaint bolt
#

Her wait time for green card said 95 years KEKW

uneven sand
#

what country

mystic depot
quaint bolt
devout fractal
#

u just need to get us job and stay there first time through lottery

uneven sand
#

ok that makes sense

mystic depot
#

u have to get an investment from a fund

cyan garnet
#

visa is ur permit to enter the country if you have a valid i-94 and i-47 (I think?) then u can stay in the country

quaint bolt
#

And yeah I know it’s abnormally high for india and China(?) I think?

uneven sand
#

outside india and china, wait times aren’t too bad

mystic depot
#

like y combinator or somethin

quaint bolt
#

The wait times

uneven sand
#

it’s capped per country

cyan garnet
devout fractal
#

it's capped by place of birth not nationality 😭

cyan garnet
#

business is the way to go

mystic depot
cyan garnet
#

but I wasnt

#

smh

#

I would have US citizenship

#

would be OP

#

I will thanks for lmk

#

Canada citizenship is mid

quaint bolt
#

Unless I’ve settled down in Canada by then

#

Then I’ll stay prolly

mystic depot
mystic depot
#

TN visa i think

#

ngl i dont know anything about it tho

devout fractal
#

bruh what is this, leapfrogging citizenships KEKW

quaint bolt
uneven sand
#

TN is for Canada and Mexico

quaint bolt
mystic depot
devout fractal
cyan garnet
quaint bolt
#

What

devout fractal
#

i am british citizen in US

quaint bolt
#

How you not think of this then

cyan garnet
#

u could be told any moment by the government to pack ur bags

rustic topaz
devout fractal
#

cuz i'd rather go back to the UK than go to Canada lol

cyan garnet
#

nope

uneven sand
cyan garnet
#

I am gonna apply for PR in Canada soon

devout fractal
#

I shall

rustic topaz
quaint bolt
#

The only thing good about the UK are the sidemen

cyan garnet
#

I dont have US greencard either

#

healthcare dogesmile

cyan garnet
uneven sand
#

caste?

#

oh

mystic depot
devout fractal
#

what uk jobs

mystic depot
#

this fr

uneven sand
#

Canadians still kiss the queens ass

mystic depot
cyan garnet
#

no

#

u need visa

#

they can visit

#

did they?

#

ic

jaunty cove
#

i struggle way too much with binary search problems

devout fractal
#

interesting

cyan garnet
jaunty cove
#

i always am off by one

cyan garnet
mystic depot
#

smh they always changing everything up here KEKW

cyan garnet
#

Canada is lowkey mid

#

compared to america

#

canada is discount version of the US

uneven sand
#

^

fathom hazel
#

i got kicked by a pegasus, what a coincidence

cyan garnet
#

UK isnt bad

#

if u are documented u get citizenship / PR

#

after 5 years

#

bro canada is overcrowded as hell

#

like GTA

#

overcrowded

#

if u go outside no jobs

#

overcrowded to me at least

devout fractal
#

no jobs anywhere these days lol

uneven sand
#

just publish in some joke journal

cyan garnet
#

canada has no jobs in general

cyan garnet
#

and "free" healthcare

#

but its cold

#

UK weather isnt too cold too hot

#

not many corporate jobs there either

#

cold enough to snow

#

harsh weather

#

I am from bay area

#

its cold to me

#

bay is burning rn

#

💀

#

114

#

no

#

I live in mississauga

#

winters are a big turn off

#

u saw last winter?

#

💀

#

no it wasnt

#

so much snow

#

maybe for u

#

ik

#

I am not saying u arent

#

maybe by ur standards

#

yea

#

I hope it isnt as harsh this time

#

🙏

#

no

#

I think

#

antartica would be the place to be

jaunty cove
#
        while (lo <= hi):
            m = (lo + hi) // 2
            if nums[m] <= last:
                hi = m-1
            else:
                lo = m+1

Why is it working with <= but not < im so fried

cyan garnet
jaunty cove
cyan garnet
#

idk

#

I am dumb

#

goodbye I am done here now

jaunty cove
#

how else would you do it

#

im doing rotated sorted array and i passed after switching < to <= but idk why

fathom hazel
jaunty cove
#

yes

#

this is the part where i find the rotate index

crisp berry
fathom hazel
jaunty cove
#

there is no base case , it just stops after finding the right index

#

idk how it works but it does

#

💀

jaunty cove
#

did u do the clever one where u only have oen binary search

#

yea i will try to do that now

#

yea

#

i didnt do that cause the bounds arent that big

#

o ur talking about something else

#

ok

#

does this work for if it might not be in the array

#

so after it exits while loop you can just check if nums[lo] == target

#

to check if its there

fathom hazel
#

but python doesn't have it right ? only java
i never have problem with thatn in python

(lo + hi )// 2

jaunty cove
#

its so confusing to me whyh its lo-1

#

how do u know that its lo-1

#

💀

#

hhuh

#

what if the loop exits when you update hi not lo

#

nvm

#

i see

#

good idea

#

i dont have a standard so i just try to wing it every time which is confusing

#

why not len(nums)-1

#

yea i see

#

cause then we would not get the right answer for array = [1]

#

it would exit

#

befoer checking anything

#

then lo increments to 1

#

and we return lo -1 which is 0

sinful locust
#

Money

jaunty cove
#

thats why i would do the naive solution on an interview

#

its same time complexity

#

but a lot easier to not fuck pu

#

really

#

nice

#

sexy

golden tusk
scarlet pike
#

does uber send oas? Im seeing some people get gca and some direct to phone

rustic topaz
#

mfs talk more than they leetcode on this chat

jaunty cove
rustic topaz
#

🙄 you got a point, I've made significant progress within a month

#

tho 😛

#

bro can you stop being cringy with the "nah jit trippin"

#

that's a good thing

#

"naaah jit trippin" 🤓

dusk kayak
#

LMAOOO

warped daggerBOT
#

ssi asks: ban goku

cyan garnet
#

yall just hatin on goku

thick bane
#

21k messages in one month?

cyan garnet
#

who

sinful locust
#

stop

celest bane
#

try hards

#

🙂

sinful locust
#

stop

#

time to touch grass

celest bane
#

go have sex

#

more relaxation

#

and fun

#

ngl

sinful locust
#

peter whats up

worn bear
#

nothin

sinful locust
#

lurking is the best

warped daggerBOT
#

ssi asks: ban peter smith

worn bear
celest bane
#

its a legitamte message

worn bear
#

cool

celest bane
#

peter smith

#

where do u work

worn bear
#

i am neet

celest bane
#

neetcode

worn bear
#

school rn

celest bane
#

ur neetcode?

#

oh

#

how r u an admin then

worn bear
#

huh

#

idk

cyan garnet
#

@worn bear can u give me referral to googke

#

google

worn bear
#

wot

#

no

spark hearth
#

why not

worn bear
#

you assume i work at google

cyan garnet
#

u have cscd on ur resume

#

u alr cracked

spark hearth
#

can i have one of ur quant offers?

sinful locust
#

money

spark hearth
#

please andy jassy

#

it's not fair that u have so many offers

clever grail
#

skissue

#

yes

#

yes

#

yobro

uneven sand
#

the implementation isn't very tricky

#

only thing to watch out for is ||floating point imprecision||

#

but yea it only takes about 10 loc

sinful locust
#

Thanks

#

very helpful

sinful locust
#

very helpful

uneven sand
#

np

ivory ocean
#

@fossil junco

#

In here

jaunty cove
#

which problem

#

citadel lol

#

and im trying to learn binary serach really well

#

but by telling you super egg drop is a bsearch problem its kind of spoiled

#

still hard i havent figured it out

ivory ocean
#

Hey can u guys

#

Once you finish the topic at hand

#

Can we all spam that @ that I linked

#

Spam @fossil junco if u would

jaunty cove
#

no

#

i got resume rejected by them

#

still i respect the company so i figure they ask cool questions

#

its def a part of it

ivory ocean
#

@fossil junco

uneven sand
#

for rotated sorted array?

#

oh

ivory ocean
#

@fossil junco

#

Supa egg

uneven sand
#

you could also just binary search for the first value <= nums[0]

ivory ocean
#

This sound like search in rotated array

#

Fuck search in rotated array

#

Jk once you get that one it’s like “duh”

#

But before then it’s like huh

#

No Amazon doesn’t track them for interns

#

Only FT

#

No

#

I always heard they don’t do you have a source

#

Omg Amazon recruiter

#

Confirmed

jaunty cove
#

i feel like its use one egg from the top and decrementing by 1 until the search window is searchable with k-1 eggs then use bsearch

#

im having trouble articulting that

ivory ocean
#

Wait guys

#

Sushi isn’t in Amazon discord server can we really trust them

safe minnow
#

:susge:

ivory ocean
#

Uhhh sure

#

You can’t access much without an Amazon offer tho

safe minnow
ivory ocean
#

For sure

safe minnow
#

Nice

ivory ocean
#

But you can’t access most channels without proof you accepted it

safe minnow
#

Oh

#

Nvm

ivory ocean
#

You’ll just be in the unconfirmed channels

#

@fossil junco

fossil junco
#

bruh im here

#

wheres the damn template

ivory ocean
#

Oh

#

It’s some recording of a lecture

#

It’s funny

#

Not really any point to it

#

It’s gone now tho cuz I got self conscious

celest bane
jaunty cove
#

@woven quest Check this out

#

class Solution:
def peakIndexInMountainArray(self, arr: List[int]) -> int:
lo = 1
hi = len(arr)
while lo < hi:
m = lo + (hi - lo) // 2
if arr[m-1] <= arr[m] and arr[m] <= arr[m+1]:
lo = m + 1
else:
hi = m

    return lo
#

We return lo for the soloution not lo-1

#

does that pass

#

💀

#

im curious if you

#

understand why we return lo and not lo-1

#

like your pattern suggests

spark hearth
#

it needs to be O(logn)

#

O(n) is trivial

#

lol

#

u should

jaunty cove
#

but whats the intutiotn behind returning lo and not lo-1

spark hearth
#

it's a bin search problem

#

ISNT

jaunty cove
#

but in this template for bsearch we always do this, where we dont explicitly check if we're at the solution, rather, have some conditions to adjust the left and right bounds and let the end of the while loop deliver us the soolution

#

whats different about this

#

thats so confusing to me

#

damn

#

jane street?

#

👍

#

not really but i think its my fault

#

is bisect module acceptable in an interview

#

index out of range error

#

🤔

#

i tried it earlier

#
    def peakIndexInMountainArray(self, arr: List[int]) -> int:
        lo = 1
        hi = len(arr)
        while lo < hi:
            m = lo + (hi - lo) // 2
            if arr[m-1] > arr[m] and arr[m] > arr[m+1]:
                hi = m
            else:
                lo = m+1

        return lo```
#

how does two pointer work here

#

lol

#

i kind of see it now

#

cause if the condition holds there is a peak to the left

#

to the right

#

its like the original

#

it returns lo PepeLaugh

lavish portal
#

has Meta posted intern postings

#

lmaoooo got referred and it asks for what postion

#

rip

jaunty cove
#

janitor

spark hearth
#

what is bisect?

#

wtf

#

that's so op

lavish portal
jaunty cove
#

yea

#

it gets rid of headache

spark hearth
#

im going to start using that for all bin serach problems during interviews

#

go

#

cheese it

#

mr cheese

jaunty cove
#

what does tuples have to do with bsearch

#

maybe u can do something with lambda functions

#

how

#

log(n) is op

#

O(log(n))

#

oh

#

"now i will download and import my bsearch module that includes a function that solves this exact problem"

#

an interviewer could argue that using bisect in a bsearch problem is like using sort in an implement sorting algorithm problem no?

#

even if its standard

#

it is for me 💀

#

i guess im in luck

thick atlas
#

yall I have a quick question

#

I've matched with 7 companies for an internship in summer 2023 and I'm not sure which to choose if I get offers from multiple

#

not yet, but matched

jaunty cove
#

matched?

sinful locust
#

STOP

jaunty cove
#

what is this kermit_think

ivory ocean
#

Wtf

thick atlas
#

No it was through CodePath, I was in the advanced software engineering prep course

ivory ocean
#

Where’d ash go

fleet sapphire
#

anyone know anything about IMC's phone behavioural screen?

ivory ocean
#

High school dude

golden tusk
#

You’re not even guaranteed to get interviewed by all of them depending on how they do the career fair

thick atlas
#

I have interview times with all of them, they are not in the screenshot

sick oar
#

I think SAP is the biggest name

golden tusk
#

Big group and small group can be info sessions essentially

sinful locust
golden tusk
#

Really depends

thick atlas
#

These are all 1-1s, versik legit only had three 1-1 slot options and I got the last

sinful locust
#

harvard

golden tusk
thick atlas
#

CodePath is very good, I highly highly recommend. just becasue I completed 1 course I can apply to all career fairs

ivory ocean
#

Why do u ask

sick oar
thick atlas
#

no info sessions have been underway, these are 1-1's I think to start the multi step process

#

no free

#

LOL

warped daggerBOT
#

ssi asks: ban sushi

golden tusk
thick atlas
#

I got declined by intuit qq

#

no lol

golden tusk
#

Not really, just more chances

thick atlas
#

more chances yeah

#

True sounds good, I just wanted to order the interviews so I have my top priority last

#

Google hasn't touched matching yet but I've made sure to save my last day for them

#

urms?

golden tusk
thick atlas
#

I was thinking Mathworks also because they are super well known, but isn't health like huge in swe?

#

last year, I'm a double major, I've already done one other technical internship and currently a temp full stack dev

near swallow
#

The mission statement encourages it but tbh in practice it didnt feel like it. My friends and i were in tech prep classes and it was…usual CS distribution

spark hearth
#

#freeEndorsi

thick atlas
#

yes

near swallow
#

Like i’ve seen URM programs and stuff, and codepath is on the lower end of that lol

#

They should just drop it from their mission

golden tusk
near swallow
#

no, i had an offer but i reneged

warped daggerBOT
#

ssi asks: ban kirb

near swallow
#

Very doable

thick atlas
#

@woven quest I'll take your advise and wait for offers then I'll prob come back if I have more than 1 lol

near swallow
#

Who knows. Companies will target diversity events yeah, idk if codepath is good for that

thick atlas
#

I'm a double major so this is like my 5th or 6th year lmao

near swallow
#

I would imagine yes

thick atlas
#

year like junior/senior?

#

oh cs fuck idk

#

too many years

#

2023

#

december

#

I've applied to plenty others but this is just through codepath

sick oar
hardy patrol
#

based

golden tusk
dusk kayak
#

URM buff goated

sick oar
golden tusk
tepid moat
#

Is it ok to do DRW OA after more than 3 days?

#

3 days is too short

sinful locust
#

lol i took a oa 2 weeks after i got it once and got phone

golden tusk
uneven sand
sick oar
sinful locust
oblique sonnet
#

Does apple post 2023 summer internship for software engineer?

golden tusk
# sick oar For where

Intuit mainly since that’s the only one I have right now lol, but general works too

sick oar
#

associate product manager

sick oar
golden tusk
tepid moat
#

@quaint bolt have you done IMC recruiter call?

rapid swan
#

u got? POGPLUS

low vale
#

Roblox interview tmw

#

Hopefully I don't fumble

#

If I do I never wanted Roblox

#

🙃

spark hearth
#

how was the technical interview?

#

ur school

#

wtf

jaunty cove
gleaming tangle
# jaunty cove

how long will it be like that ? mine's been like 3 weeks

spark hearth
#

a week

rapid swan
#

Im waiting for my final to be scheduled

#

recruiter on pto

#

gl to us both cheers

echo lynx
#

Does anyone know if you get to keep your work laptop at companies if they send you a brand new laptop?

rustic topaz
#

Does anyone know if you get to keep your work laptop at companies if they send you a brand new laptop?

spark hearth
#

LMAO

jaunty cove
#

yes if you dont return it

rustic topaz
jaunty cove
#

she doesnt look like a real person 💀

warped daggerBOT
#

ssi asks: ban goku

rustic topaz
#

What? I’m asking mr juda a question

rustic topaz
jaunty cove
#

filter motivated

rustic topaz
#

Just asking

#

🙏

#

I don’t post but sure

#

😁

#

Send send

celest bane
#

Add me

#

@glass streamheart

#

That’s my Instagram

#

I’m Kevin heart

#

Irl

rustic topaz
#

Alt account where I talk comment and argue on comment section

spark hearth
#

can u send me his insta

rustic topaz
#

I know

#

It’s really funny when you troll

spark hearth
#

u know, I bought gamer girl bathwater from belle delphine once

#

and drank it

sinful locust
spark hearth
#

luckily I didn't get herpes like other ppl did

celest bane
#

Ur like

#

Not good in the head bro

rustic topaz
#

@ember bison

#

My main

#

😎

jaunty cove
#

Nice

rustic topaz
#

Nice what

#

Pfp?

spark hearth
rustic topaz
#

🐒

clever grail
#

real

jaunty cove
#

nice main

rustic topaz
#

Bro

#

Main??

#

I was mentioning my pfp

#

Not the girl in the video

spark hearth
#

@ember bison does talk aot like goku

#

I'm starting to think they're the same person

#

@ember bison is my bitch dw

#

if there's a hole, there's a goal

rustic topaz
#

Tobro please stop

#

😭😭😞😭😭

spark hearth
#

@rustic topaz what's ur favorite anime

rustic topaz
spark hearth
#

u like

#

I touch more grass than u

#

I literally go outside my backyard and roll on the grass everyday for 3 hrs

rustic topaz
#

I like 177013

spark hearth
#

need to get my daily chlorophyll and photosynthesis

#

wtf I'd 177013

rustic topaz
#

I wanna give her a big hug

#

She needs it Fr

spark hearth
rustic topaz
#

🙏

rustic topaz
spark hearth
#

I rejected ur hug

rustic topaz
#

??

spark hearth
#

stop sexyally assulting me

rustic topaz
#

🤓

spark hearth
#

I have 3

rustic topaz
jaunty cove
#

i have 4

spark hearth
#

I'm not

#

I wouldn't say it's a flex

spark hearth
#

my 3 gfs aren't 3d tho

jaunty cove
#

i have 4 3d gfs which makes a total of 12 gf dimensions

spark hearth
#

I can show u one kf them

jaunty cove
#

idk loooks 3d to me

spark hearth
#

look low lovey dovey she is aww

jaunty cove
#

are you sure

#

she is 2d

spark hearth
#

yeah she's 2d

#

dw I've tried

static spindle
#

cs majors be like ^

spark hearth
#

and confirm she is 2d

spark hearth
static spindle
#

NOOOOOO IM NOT MOTHER

rustic topaz
#

Heck what are your pronouns

spark hearth
#

that's enuf discord for today, too much weird shit

static spindle
#

c/++

spark hearth
#

deman/demon are my actual pronouns like no joke

rustic topaz
#

😁😭😭😭😭😭

spark hearth
#

if u use other pronouns, u are discriminatory

spark hearth
#

that's like kinda mean

jaunty cove
spark hearth
#

low key

#

I'm gonna go cry my self to sleep now

#

stop reacting nerd to every msg I send

#

I'm not a nerd!

#

damn

#

goku really bullying me

#

I'll email my recruiter to rescind ur offer

static spindle
#

proceeds to self react to own messages

spark hearth
#

why are u reacting to the nerd

static spindle
spark hearth
#

yoo man's being racist, just bc I'm brown doesn't mean I'm a monke

rustic topaz
#

🦮🚶‍♂️

spark hearth
#

yoo

#

just bc I'm brown doesn't mean I'm a dog

rustic topaz
#

Kyoyo go make a project that saves the world or something

spark hearth
#

y'all weird af, I need to leave this server before I get consumed by y'all's weirdness

jaunty cove
#

if this project works out it will be awesome

jaunty cove
#

if it doesnt i will waste a fck ton of time

rustic topaz
spark hearth
#

but I didn't think @static spindle would know

static spindle
spark hearth
#

lol

#

time to sleep

#

I gotta wakevup in 3 hrs 30 min

jaunty cove
#

for amazon offer

#

12 hours until amazon offer

#

when does my recruiter wake up kermit_think

rustic topaz
#

🦮🚶‍♂️

jaunty cove
#

you should dm them

static spindle
rustic topaz
#

Guys

#

I got a question

jaunty cove
rustic topaz
#

Nvm

static spindle
#

the dude who was trying to recruit me to manage a warehouse responded to me within 3 minutes

spark hearth
#

it's a good school

static spindle
spark hearth
#

guys stop waking me up

#

I have to sleep

#

pls go to sleep

naive kayak
#

For the people go gave the Amazon OA. I just spoke to a senior SDE. He said should hear back within 3 days after giving the OA

jaunty cove
#

whats up with people giving the OA

rustic topaz
#

For the people go gave the Amazon OA. I just spoke to a senior SDE. He said should hear back within 3 days after giving the OA

static spindle
#

For the people go gave the Amazon OA. I am a Amazon. Should hear back within 24 hours of applying

naive kayak
#

LMAO

rustic topaz
spark hearth
#

@rustic topaz

#

@rustic topaz I'm going to sleep now

#

what does the dog mean?

jaunty cove
#

datadog offer

spark hearth
#

ahh

#

thank you goku

jaunty cove
#

you got 3

spark hearth
#

why monkey?

rustic topaz
#

Bro

#

Go to sleep

static spindle
#

i take it back i need the 24 hour delivery for my 27th copy of "heard on the street"

#

thank you father 🙏

rustic topaz
#

@solar osprey where are you from

glacial sail
#

does anyone know if bloomberg apps are closed or were they ever out?

spark hearth
#

never out

rustic topaz
#

Ohio

#

Mfs live in Ohio

#

🤔

#

Like Jake Paul

#

😁

#

I’m from Zimbabwe 😎

#

Based on Jake Paul or Logan Paul?

static spindle
#

sounds exciting!

sick oar
#

yeah

#

most places ask for it back

#

except maybe cit

jaunty cove
#

we arent man

coarse marten
#

You will get a Chromebook when you will join Google

slow quarry
#

or windows?

jaunty cove
#

no you have to code on google docs

#

why do u think they do the interviews in google docs

rapid swan
earnest hatch
sick oar
#

go to msft. you can use them there

quaint bolt
#

Whenever you’re working you’ll be ssh-ing into their servers anyways so it doesn’t matter

rapid swan
sick oar
#

True…

rapid swan
#

I love being able to use github

#

allowed to use anything POGPLUS

#

no software restrictions

#

jira poop

#

first thing I downloaded was discord

#

I mean I downloaded firefox

#

and opened tor thru firefox

#

so ig yes

#

idr if I opened it

#

but u can

#

kermit_think no

#

what u doing on tor WazowskiStare

sinful locust
woeful lynx
#

Getting an email that starts with “no-reply” days after you submitted your application 😍😂

sinful locust
#

😍

woeful lynx
#

They only use the no reply for offers so you can’t say “no” 😉

clever grail
rapid swan
sinful locust
#

^

sinful locust
#

Nice inbox incoming

woeful lynx
#

Rejection emails containing: “While your skills and credentials are impressive” 😍😂

jaunty cove
#

seggw

fringe crest
#

how screwed am i jp morgan OA without taking a dsa course yet

jaunty cove
#

samw

static spindle
#

Jpmorgan OA is pretty easy

jaunty cove
#

yea and thenthey ghost you

quaint bolt
#

You use whatever

#

If you’re working with Java you’ll most likely use IntelliJ tho

#

And for webdev stuff it’ll be vscode

#

I just write code I don’t really have a preference

#

IntelliJ has a useful internal plugin that integrates with Amazon’s build system

#

So that’s nice - I think vscode has an equivalent but the IntelliJ one’s been around longer

#

Yes

#

Why would they not WazowskiStare

#

4th

rustic topaz
#

@quaint bolt you go to waterloo?

#

understandable

#

i hope sushi doesn't get amazon 🙏

quaint bolt
#

Unless you’re an icpc chad yes

rustic topaz
#

for blocking me

quaint bolt
#

Or you lie about grad date

rustic topaz
#

Imagine Wagons

#

how do you prepare for quant?

#

like akuna, imc, and etc?

quaint bolt
#

No?

rustic topaz
#

yea?

#

I think

#

that's why I am asking

quaint bolt
#

Lots of icpc kids at loo

rustic topaz
#

@quaint bolt do u ?

jaunty cove
rustic topaz
quaint bolt
#

Man really is a gpt instance

rustic topaz
#

@quaint bolt you never answered

#

I always asked