#Recovered Burnt out Senior Eng w ADHD looking for a job
428 messages Β· Page 1 of 1 (latest)
Ugh it's been such a blessing for me to be able to take an extended break
Gonna work on my resume this morning π finally getting into the groove, just needed 7.5 weeks to recoop from 8+ years of working
Already feeling stuck (again) but for now i think i might just focus on building my resume "from scratch"... my old resume feels so π€’
shoutout to @upper marsh for this reference https://the-engineers-checklist.notion.site/The-Resume-Checklist-ca732fd2aec64548b6638f11a952bfa2
I saved that from someone else, I think vcarl
thinking of going with myperfectresume.com
its really helpful!! i love the filtering ability
so smart
thanks, these links are helpful. I have been getting interviews. but not doing too well in them. some of my past work experience isn't what my title says. lol.
Ah, bummer. I'm trying to come up with solid bullet points and can't muster the ability to brag about my accomplishments π
Still struggling
same but, trying to stay motivated.
What tips n tricks u got
If you have a routine its makes it easier stay on top of things. and journaling, nothing long, just what did you do today and what you plan to do tomorrow.
Yeah I dont really have a routine
Morning sunlight is good
Unless you live in Vancouver or Seattle sigh but definitely try to get it, itβs proven to boost mood attention etc
I'll try tomorrow for sure
Got derailed from making any progress today
Longer is better but at least 20 minutes
Helps improve sleep quality as well
One the few things Iβve got going
Well done
For an added boost you can slowly start jogging but best to start small imo
Trying to get back into it
XD
Last few weeks have been focused on some other things. (shit happens ig). I think I might have one bullet point of my resume solidified.
I find it extremely difficult to quantity impact when I've made so much of it I can't quantify it ...
Like whenever I go to list the projects I've delivered I get knots in my stomach because idk how to summarize
I want to stick to a one page resume so bad so I feel I must get extremely creative and concise about demonstrating my experience in resume bullets
Recovered Burnt out Senior Eng w ADHD looking for a job
Btw 3 months vacation and spiritual reset did the trick and I feel "normal" again
I do miss writing code...
π
Built sign-up, landing, and checkout for internet, insurance, moving, and utility products
I wrote this because i want to convey the number of products and verticals i was responsible for shipping. but ive rethought it a bit
Delivered bid-winning demo for <redacted> alliance contract using NodeJS, Docker, Apollo GraphQL Subscriptions, React and CSS Modules (?)
Lead fullstack team of 4 engineers to deliver new integration between newly acquired <Redacted> product which realized 1 M In revenue
i am bad at wording things and i remember the highlights but
that was in Docker NodeJS, Apollo, React, CSS Modules as wel
hi
Job Search Progress 
Day 1
π Calls scheduled: 16
π§‘ Calls completed: 1
π Interview Rounds Passed: 0
π Offers: 0
π Rejections: 0
Omg 16 calls scheduled this is so many!
I highly recommend keeping notes so you can keep track of which company said what
I only did that this last time, and it helped tremendously. I basically can't keep track if it's more than 3 companies at a time
gl semi
and i agree defo keep notes, i also interview in batches and by the end of the week i cant remember anything from the first half of the job batch
Got you both!!! I took some notes for sure
Ugh, it's been crazy @upper marsh @proud tide
It feels like a Friday
wow that's a lot 
I'll post my updates today, crushed a few rounds. Came up with a technique with leetcode that helps me (but mostly because I've done all these problems before whethe it be in college or my last interview loop , and I don't have the patience, time or energy to grind)
I gotta workout π
Stupid physical body
Alright wow, damn, this is crazy!
I can cover which leetcode questions I got asked so far if anyone is curious.
I did NOT study leetcode really prior to jumping in just because I couldn't will myself to care about leetcode without being in the interview loop during the peak of summer in the north east.
Now, I'm doing grind 75 and it's going well .but honestly... I know this stuff already. I did these algorithms in an upper glad class years ago, like, a decade... I've solved them in other interviews, I've found them while needing to implement an algo at work while googling. I don't feel I really need to redo the act of learning how these algos work. Instead I'm working on admiring and reviewing the typescript submissions and finding one that speaks to me, clean it up, and then I try to see if I can remember it intuitively and put together the problem and solution. If I get stuck, I go back to thinking, and then write some comments. For my 30 year old mush brain..this is awesome., Fun, and not painful
If I do or don't do well in a LC style interview is no consequence to me as I can find a place I love without that practice.
And yes, I reference the prior written solution and think through it myself as well. This is pretty straight forward to me as it helps me quickly build the ability to pattern match against different variations of the same basic problem
Might be an unconventional approach to LC but doing them on interviews is hard and stressful enough as it is. I can't also break my brain in my down time. This is fun and even relaxing for me.
Okay so, onto the interview I was most excited about in this loop so far -
This company is small but growing, already has a career ladder defined (something I sorely missed at my last two companies but it was late) , fits nearly all my preferences, has great funding, great team, I vibe with the interviewer, I LIKED the interview , I like that they hire college grads, I like that they have women on their team.. I don't think the work life balance sounded to crazy and no orange flags like other interviewers..ahhh
And I looooove and would totally dog food the product
And one of the engineers, I believe, was a founding engineer at one of my favorite tech service companies ...and built over half of this ginormous product there
It's really exciting to envision myself at another startup. I just hope they don't work me too hard!!
The carrot is sooo compelling
If I do or don't do well in a LC style interview is no consequence to me as I can find a place I love without that practice.
you dropped this π
this is all really great to hear though; im hopeful you'll find a company and team that truly values your experience and what you can bring to the table
that's also a very interesting LC method 
makes sense considering you've already, well, done them in some capacity lol
what are some basics/pre requisite to know, so as to make it easer to do the grind 75.
Having flash backs to this upper graduate class is a nice feeling. I still recall what it was like to learn these things in depth. I learned about how to create linear time functions from n2 algos in my early career days, someone literally taught me how to optimize that in an interview when I was still in college. Then when I did the interview grind in 2018, I encountered a lot of these issues. I did a lot of interviews and I had gotten exposed.
Since my brain can always come up with a brute force solution, I skip that because the brute force is often, ugly, not elegant, not performant, etc. I start trying to think of techniques.
Firstly, it's important to know the basic structures, complexity of some things. I can spend time outlining what those things are, over next few days.
Secondly, it's important to ask yourself, what does the brute force solution do, what's the complexity of it etc
Obviously, o(1) is ideal, with o(log n) second and o(n) third. Even o(n log n) is better than o(n2).
Recall that some data structures, you can create or use (and the trade off to using additional space)...most of them have a space complexity of O(n) and a look up or operation time of O(1) depending on the structure. That means you can ask yourself, ok, what type of structure can I use to optimize this algo. If you need a straight up look up, a hashtable is great, but also, don't forget stacks, queue, linked lists, and doubly linked lists. I've been asked to implement LRU cache in two interviews, one in this round and one 4 years ago for data dog, and one didn't ask me to do it but asked me how to optimize a situation where we could use too much in memory space and I picked LRU from memory.
Another great technique, is pointers. If you're being asked to optimize without a hash table or creating non constant space, it's a hint towards using one or more pointers to help. A lot of times, two pointers coming from multiple directions in an array can be used.
Another common thing to know is basic math and how it can be utilized to answer some more obvious questions (like two sum)
Obviously know your trees, especially binary trees. I did trees up and down college. Know how to write a binary search algo , and when you can use that (if the input is a sorted array and you're being asked to find something, this is one method to use.). Know a few things you can do with trees, like how to check if they're balanced, how to rebalance then, how to logically deduce how fo traverse them if they're being used to represent a structure of data, what the relationship between that data is and how it's represented in the tree so you can write recursive functions that traverse finding things like the lowest common ancestor
Graph problems is , know DFS and BFS and roughly how to implement them on demand. This is most common in matrix questions.
Another thing is understanding dynamic programming is nothing but caching / memoization. In any algorithm that is recursive you might realize it's possible that many operations would be repeated, you can create a memo, or hash table structure, to store the answers to previous questions , and just pass the memo by reference everywhere
Right so, that's a good over view so far of what I've noticed especially on the easies.
There's some stuff I forgot but when I'm doing leet code practice I'll return here
I forgot to mention, I also did things backwards this time around. Easies I've done before so I jumped into mediums. Since I couldn't solve them too well by myself, I found YouTube videos. I began to understand in depth what the ideas were behind the thinking through these algos. Often I would look for videos that white board the algo visually. Although I have gotten tripped up on easy in an interview, but mediums are really almost variations of easies with extra twists.
Then, id try to find a similar leetcode as the one I just watched and solve it without referencing the video, to see if I remember the thinking.
Lastly, I practice trying to write some of the code from memory. Your memory helps when you want to use array prototypes,...if you don't remember the nuances you can be in for a bad time. Taking time to Google in an interview for me can often feel uncomfortable especially if I know I should know it. But the pressure of being watched makes it worse. Frankly I look up .sort every time I use it in work - and I do not store things in my brain memory where it would make more sense to reference docs or ide hints. But definitely understand syntax enough to not need these, as some environments I've been given specifically lack ide context.
So I know the following by heart:
Map, filter, reduce, forEach, some, every, flat..
Those are good to know for white boarding
.sort is alphabetical in TS which is an annoying gotcha
And in place.
-_-
But these were minor trip ups for me..but if I didn't solve it in the moment I'd be embarrassed (I did and made it to the next round)
Remember when you're asked a question that's difficult to answer with practical experience they're testing your mental framework how you deal with unknowns
The interview I'm referring to had me do a small react program and answer a trick question about API latency
wow, semi, you unpacked lot a stuff here. I got interview in month or so with google. I m hope I can get up-to speed in month or so.
I have their material too
Did you contact them yet ?
I did, atleast the recruiter promised me an interview.
π
Nice, did they send you interview material!
all those painful lines
Progression
Ghosted dang.
they came back today with the actual rejection!
but its okay, like, if i get rejected it might mean it wasnt a good fit for me anyway.
I definitely docked points for trying to solve a leetcode problem in a leetcode way instead of a practical way.
either way the convo with the EM was enlightening, and valuable imho
ahh.. I get so many calls, half the time just goes into talking to recruiters. do you only do one position at a time.
What do you mean?
By one position at a time?
Today I'm talking to only 3 companies because I wanted to leave a big gap in mid day to utilize the last summer days for my pool
But every day I'm talking to upwards of 4-5 companies, today I got some later rounds so they're a big longer and more intense. Scheduling less of those in a single day, and I can usually do a lot of intro calls on a day where I'm not doing lots of tech screens or second rounds
sheesh
i think i have that energy for 1 week max... enviable
recruiting needs an overhaul
I recently just got off my bipolar meds so I'm back to having super powers
But ugh
I'm tired xD
I feel not confident about the last interview because the format was super confusing for me
Like they wanted me to describe a complex problem while they drew what I was explaining
Like
???
I have never had a situation like that even at work. If I'm talking you're listening, trying to understand,and ask questions
I should be the one drawing if I need to demonstrate something
-_-
Which I did, eventually then felt confident while doing that, but then when they asked me if I had any questions I felt really not confident and struggled
Because in my head I just thought I failed
So idk
Anyways it's a bit too early stage for my liking so
If they pas it's ok. I just hate interviews
I do the foot in mouth thing when I'm nervous
out of curiosity, what are you using to track them?
Notion
Alright so, I got some constructive feedback from one of the interviewers

Want to learn more about me and how I work? I took Tealβs Work Style personality test and discovered Iβm a 1243. Read more about my Work Style and then discover yours by using this link: https://workstyles.service.tealhq.com/summary/c7727d08-2dc3-4d5c-890c-2f359cb489b7
Basically this summary hits the nail on the head with regard to my weaknesses
Overall, I'm glad I was passed, because, I want to work in an environment that wants me
But I can't help but wish I didn't fail the interview and I didn't have these weaknesses.
wow that work style thing is very interesting
that's really good feedback btw, though "leave space and play ball" is a bit ambiguous
"TAKES EFFORT
Being able to think about the needs of themselves and others at the same time."
What I'm understanding is the prompt uniquely had me suffering in this way. I was asked to discuss an extremely complex project I worked on while the interviewer drew what I was describing. Truth be told I panicked and just went on rambling while not even looking at the diagram he was drawing because every time I did I got confused. The format was supposed to test my collaboration skills, but I thought it was testing my presentation skills, for some reason, because I was to be going deep on a project from my past.
So instead of hitting the ball, waiting for the response, hitting it back, etc, I just kept swinging my bat hitting ball after ball
Clearly just a bad time
I know now more for future interviews and situations to never assume it's one sided presentation. If I'm panicked, I should try to figure out something to do except immediately tackle the problem head on
ahh i see
If I had been prepared knowing the goal was for me to actually work with the interviewer to get some naive version of my complex project down on paper
And not "I talk you draw"
I think I would have mentally prepped myself to be okay with all that
I got confused on goals.
Always align on goals.
But now I really want to practice my "I talk you draw" skills because that was eye opening
@cunning spoke would you be willing to practice that with me?
Maybe after we're both done interviewing in general...I just want more practice "thinking about me and the other person at the same time" practice
- Avoid using pronouns when people ask you a question, you want to draw attention to something. Also dont use a relative indicator either; use a noun.
- Count to 5 after finishing a thought/communication. People are socially conditioned to respond to different levels of pause.
- When explaining something have someone parrot back their understanding before moving on.
If people are talking, they arent judging you. Keep that in mind. People like talking.
You're not understanding
This was the interview
"hey semi, come prepared to talk about a complex project you worked on in detail. Btw, last minute, I am also gonna draw what you're saying."
...
So I wasn't aware there was this implicit expectation for me to like, check in with the person who is drawing ?
I believe we spoke at length about this yesterday.
I don't remember
Nothing you're saying is making sense to me
It's not like people asked me a question
They just said, talk about x
And I did
And I thought the goal was for me to describe the whole project
And they did parrot their understanding back in ways, I saw no problems there
I dont want to have to be in the position to defend a jerk.
Then why are you?
I asked you a clear question
Would you be willing to do an exercise with me while I talk and you draw what I'm talking
I care about you, we are friends, and you keep asking me about this so Im responding.
Sure.
But seriously, as your friend all that feedback was upseting.
I see that.
I know logically what my issues are
I just havent practiced solutions enough
Key word being practice
I'm very rarely in a situation where I can practice that
Like I can do the back and forth thing
At the same time? It's currently unfathomable
I know it's just micro context switching
I need practice
Having to be attentive to my words and someone else's drawing at the same exact time requires a level of focus, attention, presence, and intention I just have simply no mastery of.
Not at all.
(For kicks, I took that and got basically the exact opposite results as you, lol)
What do you think of the assessment?
It seems reasonably ok for something short and free. I've done a much longer paid one before that was better, but not like, that much better
Right? It was surprising
The trick with these is architecting the test so that you don't bias things towards how you view yourself versus what you actually do
I answered in the frame of mind after having received some form of objective feedback on my outward behavior I couldn't disagree with.
The fancy one I took did some magic to return two sets of data, "what your natural set is" and "what you've adapted to in your workplace"
Oo nice
I'm all annoyed because it's like I can't fix myself unless I fuck up first it feels like
Like I just lack some ability
To just become this new person
Anyway, when I read the interview feedback you got, it feels... iffy to me. Like, those things are important, but often it can be thrown off entirely by being in an interview and miscommunication on what's expected. As you said.
He's not entirely wrong that it's my weakness.
If I was seeing that in our hiring committee, I'd argue for a second conversation with someone else, probably
However I do agree in another context , I would not struggle with the same exact type of prompt
Because I can play ball.. I know I can. It's just hard. It's not my native strength. I've put in a ton of practice and reading into switching attention
I really appreciate it frankly !
I do want to do better in general. Like when I get panicked, confused, unclear, etc
I wish I could just become grounded
Well, adhd certainly doesn't help with the things they had problems with
XD that's exactly what went through my head as I pushed down all my pride and smiled through a thank you
My inner critic was full on "your brain is broken lol"
It's not broken. It's just different than that person was expecting.
Yeah I hear you. I will try to stop wishing I was different and invest some future energy into practicing this kind of thing because unfortunately it does come bite me at work, though it's far less often than whatever I do that makes me shine I guess
not sure if this is helpful, but i had to explicitly learn and practice controlling ramble as part of CBT *for adhd
so it's not your fault, but unfortunately something expected of neurotypical people
at least with this feedback it's clearer that it's something to be practiced and something you can accomplish with practice
I did a lot of DBT for emotional regulation, but I thought with this guy it was ok bc he had a rambly style of talking
Honestly rambling is ok
The worry is when rambling becomes steamrolling
That when you lose touch with your audience
Thinking out loud...can't really get away from that. But I can take more breaks.
And because of the format I unfortunately remained completely disconnected from the audience
I became one minded
On what I was trying to remember about the details of this complex project I worked on like, 6 months ago
So I know I have vulnerability to become single minded but not like anyone stopped me to say "hey, you're going too fast. Can we slow down" etc
I've practiced the art of interrupting when I lose connection with the speaker, I think it's more respectful than letting them talk while you can no longer give them your full attention
I'll Google CBT for rambling too, just to see if there's more there for me to benefit from. But I honestly feel it's an issue with how I get when I'm not grounded if that makes any sense.
Hard to remain in touch with your audience when you can't see them because they are thumbnails next to a miro board with a picture that was supposed to be representation of what I was saying 
All I saw was "okay, so he's hearing and connecting with what I'm saying, but I'm not getting any clarity by looking at what he drew..." <Cue panic>
i had an interview like that where they were anticipating me to interrupt them, without giving a signal that this was an expectation
it's entirely possible they were not an optimal interviewer
but at the same time, the willingness to provide feedback here makes it worth at least considering what their expectations were
just in case you encounter that sorta thing again
Exactly!! That's why I wanted the feedback
I really appreciated it
Even if it's hard to swallow π
I think he should have interrupted me (,I was the one talking a lot) but regardless expecting one to do something specific instead of just speaking their mind and preferences grinds my gears
Yeah it's why I spent so much time trying to practice mindfulness
But I still struggle π
Thanks to you all for supporting me
If only everyone who had a negative impression of me could inform me of that in a candid, non judgemental, timely, and actionable way. Interviewer had no obligation to do this and I had no obligation to listen, but he saw something in me that was fierce and wanted to continue to striving, the grit, and that was enough for him to want to provide me with this feedback as well. On my side I was so close to just effing off, but I knew that I couldn't waste the opportunity
If you have ADHD or know someone who does you might relate!
How often have we (those with ADHD) been in trouble for over sharing, interrupting, interjecting, dominating conversations and one-uping! You know youβre not, yet, youβre often accused of doing it on purpose!
We arenβt assholes, weβre just enthusiastic!π
I understand and have some ...
absolutely, this is exactly it. also i love their glasses
a big part of managing the interjection and oversharing and "always talking about themselves" thing is understanding that a more neurotypical person may not perceive your means of relating with them (sharing or contributing a personal experience or thought that immediately comes to mind) as a means of engagement, but instead a form of competition or absorption of the focus
my strategy for managing this, when i really need to, is to go out of my way to minimize the amount i share (or do not share) and wait as long as possible until the other party is done
but this can be rough in interviews where you're expected to interrupt or catch a cue to stop them midway
works the other way around tooβyou're prompted to share something and so you do share. you might stop to get some feedback and there is no explicit prompt to stop or change gears or engage in their side, so you begin to feel anxious or worry about whether to continue sharing, until being given a signal that it's their turn
with this i try to ask whether or not they understand me or if they have any thoughts or questions
it takes a lot of practice and is not a perfect science. it's really easy to interject or accidentally go over, but i think as long as you make it clear to the other party what your intentions are, it works out ok.
@sterile dome dang you have ADHD like me lol but you already got so many great coping strategies that's amazing
π»
Idea: If i dont present perfectly in my interview, the likelihood that they will come to understand how i think / work / function will be higher. Thus, reducing the risk if accepting the job if i get an offer, and also, helping filter out companies who might not be okay with my non-strengths
That is more or less my philosophy with not doing any leetcode (but also, different). I find it makes sense, but also don't advise it to others because I think you have to come to your own decision about it.
aah interesting
Graphs are one of my favorite data structures because you can model many real-life situations with them. Such problems involve finding the shortest paths between 2 or more locations, scheduling courses, finding relationships in family trees, solving mazes, and many more! As a result, itβs ubiquitous in tech interview questions. In this article, ...
Leetcode trips me up the most.
No offers in hand yet.
But heavily leaning towards a Founding Engineer opportunity.
Becoming the 4th engineer / employee at a startup seems like a legit situation ngl
I don't recall, have you done a small company before?
Small company but not startup. Consulting firm for banks and hedgefunds.
semi what are you up to now?
I did a few final rounds, I haven't gotten any offers yet but I think I'll get the first two tomorrow.
I know all these other companies are gonna be much more competitive on the base pay, but the idea of 0.75% of a company i really believe in, well, i cant help myself
why should i be the breadwinner in this couple, and not the risk taker? π
I'll push my hubby to go apply to google when he gets bored enough
Gonna get ready to hit it out of the park with a huge upside once again, but this time, its mine
I half wanna accept it right now so i can avoid paying my cobra premium next month but alas
i wanna get those market-rate offer(s) too so I can have some established base pay for the adjustment after seed funding
but I feel like I can definitely say i feel like this matches my vibe especially.
okay got a second offer!!!
This one is actually exceeding my expectations for base pay!
Yay
Well now idk what to do
congrats, semi
for me, I feel i need to put breaks on interviewing and get good at doing leetcode first.
j1 & j2 
LMAO I really felt like considering it but I want a work life balance not a work work balance
How many YOE?
3 ish
Ahh makes sense
I spent so much time for one problem it takes like all day to make sense of it. Feels like i m missing something.
What problem was it
trying to revers the linked list, or adding node to end of list.
if you were to do the blind 75, is there an efficient way to do it. or just go one by one. I am doing it by the categories.
Reversing a linked list, did that stuff in college, upper grad classes...I haven't had to do that in a leet code yet. I guess with my yoe I didn't have to expend as much time with leetcode. The hardest problem I had to work through was implementing a circular queue in an upper grad algos class, as well as some of the graph and tree problems. Honestly I guess I haven't considered how hard it would be to leet code without a background in it.. so I'd recommend by combining working through problems on your own with setting a time limit and looking at and understanding other solutions out there..
Like I distinctively don't understand the point of some leetcode besides brute force memorization of countless tricks and techniques.
hmm.. true, its really hard to come with novel solution. if i were to just look up the solution and understand I can do 3 or 4 problems a day.
Once you have a preference in style, novel solutions come in the form of not writing code that looks like it was written by a college grad π
I used YouTube videos to walk through solutions rather just looking at the solution
Going to likely accept my asap without further negotiation and when it's all said and done notify the other company that ive accepted.
I cancelled the remainder of my inflight and unfinished interview processes.
I'm way too burnt out to care about them when I have my dream offer in hand already
There are only two downsides
- time difference. They're in CA and I'm in NJ. I know it'll be necessary for me to practice self restraint when I need to prioritize my life while work is ongoing
- super deep frontend problems, which means less ability to work on backend problems. I wanted my next position to let me flex between FE and BE but if I was choosing between Staff Frontend and Senior Fullstack, I knew I would be picking staff
I do not think I can achieve a staff fullstack at my current level of experience and expertise
But I do believe I can maybe even progress to principal engineer with the current trajectory, and take as much or as little time as I need to explore all the edges of the stack
did you negotiate salary yet?
at 220k i dont see the need tbf
its already 20k over my target. I'm happy to move forward with it.
over 30% increase from my position as a senior engineer in my last, similarly sized, but dissimilarly managed company.
I just cant conceptualize why I'd negotiate a high ball offer
Maybe I tend to be complacent but I don't need to negotiate for the sake of it. If I'm happy I'm happy.
If it was like, lower than target I would
But I think it's generous and exactly what I desired
@austere cobalt where did you end up accepting and what location?
I got convinced to do one more Interview
so I'll be doing that today
π€
but regardless, the offer i want to accept is in California
the deadline to accept is tomorrow but I'm going to write back today and ask for another offer letter that has my start date bumped up and the deadline pushed to monday so i can confirm more things
I wanted to start sooner than the 25th and my prospective manager was very ok with that
what are you using to make this
I used notion to track my whole job search
Where is it
Here's a screenshot
Obviously don't wanna doxx myself so I'm tryna not to share all the details but yeah
how many leetcode problems did you practice so far?
I brushed up on leetcode.
I have 8-10 yoe so I'm being tested on skills that show I can build products and make them come to life
You have to be careful because some companies don't want you to parrot back leetcode answers
The interviews I did best on were intentionally designed to test for my relevant skills only. And that's why I got them offers
hmm.. I guess at my level (2-3 year exp) thats all they care about
It's weird to me tbh
Good luck on your search buddy
Okay final update for all here!!
I got one more offer. The offer was for a smaller startup. 200k base, 30k sign on. They tried to aslo gift me a large tub of cold brew...still haven't decided if I'm going to accept that..haha
I told the other company's recruiter the situation and they bumped up my base and my stock a bit so I accepted. I start on Monday!
Congrats, happy for you buddy
Thank you!
To complicate the matters my husband and I wanna fly to Florida and crash at our in-laws for the week ...I'm trying to figure out how to do it so it doesn't interfere with my work !! I could have pushed back the start date but I wanna start now ;_;
I'm thinking a 7 pm fly out on Tuesday and come back on Sunday. And then explain to a lot of people "yeah I'm working from Florida this week! I'll be in my home office next week"
But idk if that is kewl
Should be okay as it's mostly induction stuff, best to let them know I reckon
We were gonna plan this trip weeks ago but after the hurricane it was unclear
Yeah , lemme ask
Alright email sent
I feel good about being open and honest about stuff out the gate π
I would normally encourage you to just take that time, but I know how exciting it can be to start a new job, and with a long search like this one. Remember to take care of yourself: it'll be a lot, mentally, to take in as you're getting used to new things, and I personally have a hard time not just burning myself to the ground trying to do everything immediately when I'm excited. Pace yourself π
And congratulations! I'm happy to see this, and I hope you enjoy it
I got the OK to work from Florida!! I don't want to take the extra time because I already signed it with the start on date as Monday xD
I think I'd be too bored and I kinda love the idea of taking my first work week in a location with a beach to go relax at ...
I feel like by default I'ma have to take the first week a little bit easy cuz I'll be traveling and in Florida. It might set me up on a good pace then because I won't be grinding from the start!
Basically it will set me on the right foot because I think if it wasn't for Florida I'd want to spend my first week working 9-9 out of excitement.
Glad I have something that will help me divide my attention and then I won't have the inertia of overwork
Thank you;!!
gz
congratulations π
i have adhd too!
glad it worked out
I am 2 weeks into my unemployment. I have paperwork i need to do, things i need to figure out, projects i want to work on, studying I need to do. Part of my brain wants to procrastinate forever. I'm not sure if this is relevant to this sub but there is so much emotional onboarding for me to do this...I could use some support!
I'm primarily a Frontend Engineer but I have Fullstack experience as well. I'll be preparing to get an L5/L6 level role. I have 8YOE of FTE experience and 2 full additional years of co-ops. I have not updated my resume...I'm recovering from burnt out and mental health issues. I'm getting cold feet on starting my search.
I have a lot of paperwork I need to do...and once it's done and all my stuff is figured out for unemployment/insurance/payments etc...I'll need to hit this hard i guess?
But i also want to develop a side project (social media site) to build my ideal arhcitecture/stack for fun, and i have a friend's startup im working on too...so i dk how to manage my time.
And it is summer and i want to utilize my pool a ton. Anyway, please join my post if you can relate and help support me in my search! I will post any and all updates I come across here.
@barren chasm figured i ping u here too
What are you energized by most right now? Thereβs no need to immediate hop back into the train, especially if you feel like one of the first things youβd want to do is take vacation anyway. Itβs ok to be lazy for a while, itβll let you unwind, reset, and youβve earned it
people...sigh
I'm now at the end of a more than 1 year long break, similar ideas to yours, though not as much paperwork. Ended up not doing any of the projects, but I don't feel bad for that.
oh wow! 1 year break that sounds nice.
@static orbit im still early, so once i figure out my insurance, getting paid back for various benefits / my FSA, and unemployment im a free woman haha
i wanna do projects but if i dont i wont feel bad either....
im trying to do what gives me energy as @barren chasm said
beginning to read thru https://www.techinterviewhandbook.org/software-engineering-interview-guide/
well I wouldn't mind if it were shorter. It was very nice to ramp things down all the way, but I feel staying there for quite a while was kind of a waste of time.
I'm trying to make it 3 months max for similar reasons
Day 11...trying to keep myself accountable
do note that even if you have a specific timeline in mind, the job hunting part can take a very random amount of time
I'm just going to think positively about landing a job in that timeframe
But I want to go to big N
The 3 months is the max amount of time I'd spend before I make looking for a new job my full time job hahaha
It starts being my part time job this week tho
Is there a timeline where you want to be in a job? Do you want to go full remote now or back to the city?
Full remote with hybrid option / office in NYC (I will eventually be able to do more in person when I want to level up, but I have too much of my own medical stuff going on to give up remote first)
Timeline is by or around Fall because I'll get into seasonal depression if I don't have a job by then likely. I do like working, I just need a break.
Today's update
- Talked to some folks from various companies. The goal is to land a Senior or Staff Frontend role for high TC. Ideally top company for the experience boost but I'm seeing some attractive emails in my inbox for staff roles at startups. It's unlikely for me to be able to get a staff level at a top N company.
I have to finalize some of my paperwork from my old employer ,..and the next step for me is resume .. hopefully will make progress on the resume tomorrow π€
Today's update
I found a job posting for Google I want to shoot for & worked on self care
Today's update
I started thinking about my resume and found some resources. I'm confused about some of the finer details of how to write my resume.
Career cup has good resume info
Post a redacted version in #973598253620789308 and we can provide some advice around your resume
Gonna make my resume Monday! I have a few job postings I'm interested in applying to from FAANG
How did you get on? Also got ADHD @austere cobalt
I decided to put the whole job search on hold to prioritize getting a startup off the ground! I had to get back on medication, frankly. The first 3.5 weeks i couldnt bring myself to do anything useful. But my friend has been pushing himself for months to get this product done and its on the last leg now. Once it's flying, my focus shifts. I also was able to agree with my husband to extend my break through September if i need to. This relieved a lot of pressure as my top priority is recooping and rebuilding a life i can enjoy
lets support and motivate eachother π
Oh wow its u Semi !!! Keep going ur a role model ππΌ
Different semi I think lols
I definitely have many recruiters in my inbox I want to start replying to!! Tomorrow I will create my resume and come up with some kind of a plan and timeline for studying
I screwed up with my insurance sadly so I have to look into that
@austere cobalt I was in similar situation. I am leading a big team of 20 people as a Technical Lead/EM and I was burning out. On top of that I wanted to work on my own side project and other shiny things. I also suspect I have ADHD but not sure yet. The good thing is my job doesn't suck and I'm proud of the things I do at my job. I might quit the job sometime later, but at least I'm not suffocating here.
What helped me:
I took a month long break and went deep into the Himalaya. Staying away from the world gave me some clarity and helped me understand what matters and what doesn't. I started writing a journal and changed my environment to make it easier me to break bad habits. E.g. I use a eInk tablet to write my thoughts and use my computer only to work. I also go to the office to work and disconnect when I'm done at the end of the day. Finally I also told the CTO that I can't manage these many people and they'll find another lead to reduce the load. I'm also planning to join the Tibetan meditation group and I hope it helps.
I find this really helpful. I'm too fearful to do a big trip like that and I feel pretty addicted to the internet. It's 10:35 and I have no intention to stop scrolling TikTok hahahah -_-
I would totally go on a beautiful trip like that with my husband perhaps.
But how would I keep myself away from my phone
I feel you, the dopamine kick is a terrible addiction. I sometimes hate what we've created. I wish there was a easier way to kick it. One thing I tried was to use an old phone with only iMessages in it so that my spouse can reach me. I would then go for a walk at a lake nearby to clear my thoughts.
Why get out of bed when the bed has everything lol so true.
I have a gorgeous pool, I will go outside and sit beside it and enjoy breakfast and clear my head.
You need to make an effort, you need to take a call on continuing with TikTok and other dopamine sinks.
Maybe I could get one of those apps that tracks my time and puts limits on things ?
Also useful: Kitchen Safe Time Locking Container (Medium), Timed Lock Box for Cell Phones, Snacks, and other unwanted temptations (White Lid + 5.5β Clear Base) https://a.co/4b3JVnD
The kitchen safe is the time-lock container designed to help us fight temptations. USA today and time magazine call it "brilliant!" here's how it works: 1) place an item in the kitchen safe 2) rotate the button to set the timer (from 1 minute to 10 days) 3) press the button to activate the lock o...
iPhones have this inbuilt. I get a weekly report and can block/limit anything I want
Unfortunately I'm using an android
There's this great book from Cal Newport called Digital Minimalism. It talks about some strategies on dealing with this
Part of me wants to go in the opposite direction and become some kind of productivity steamer lol
I'm so extroverted -_-
then do it, what's stopping you?
Mostly just lack of know how and confidence
Schwesti, just record a few videos for your self and see if you like it. I just heard today "If you want to be good at something, be bad at it first"
True .. hehe I like the ideas π‘
Today im just coping by journaling
I made it off TikTok and finally ready to like eat and make a to-do list
But today's most important task is sorting out cobra why my insurance isn't working
I'm out of a bunch of meds and I think that's causing my additional stress bc I caused this to myself haha
that could be the case. Take it easy it'll be fine
Hopefully I can get cobra sorted! Slowly start to make progress on other things too
what's Cobra?
It's the health insurance continuation thingy
I have a lot of medical conditions so I thought it would be best to continue my coverage with cobra
Ah ok
Ofc nothing can ever be seamless
I'm also reading the book @upper marsh recommended on non violent communication bc I sadly have seen myself fall pray to violent communication all too frequently and I'm tired of the toll it's taken on me and my relationships
I try to read / focus on self development more than the quick dopamine hits
which book?
This one
Ah this one, I got in my library already π
im finding it very helpful
unfortunately, i believe im a violent communicator.
Android had the same as well check ur settings
oh wow this is so awesome! ty
OK so all the places i was eyeing are in hiring freezes LOL...
Ima pivot. Good news: That means i can avoid Leetcode! bad news: TC wont be as high. Will aim for similar base (190+)
I am so stressed abt making a resume but the emails rolling in show me the market is still hot. I dk if its worth the headache to shoot for FAANG when they are slowing down their hiring.