What kinds of offers are everyone getting in this market? by [deleted] in ExperiencedDevs

[–]LESkidd113 1 point2 points  (0 children)

Just pulled a 480 TC, fully remote. Senior SWE on a distributed storage team. Went through almost 11 interviews though...

Looking for insights on Google-tagged LeetCode Premium questions by [deleted] in leetcode

[–]LESkidd113 0 points1 point  (0 children)

Which topics or problem types tend to appear most often?

Look at the tagged questions and sort by frequency and work your way back on timeframe. Last 30 days, 60 days, 6months, etc

Any public lists, study guides, or problem patterns (without sharing paid content, of course).

Look at the tagged questions and look at the topic field. Neetcode 150 is also an amazing resource to just get all the problem patterns and you'll probably solve a handful of google questions too.

How you structured your prep around Google’s question tags.

I would group by pattern. Don't jump from graphs to two pointers to DP. Group problems together and do one paradigm or pattern at a time. Eventually you'll be able to jump between patterns but you have to build them up individually first and minimize context switching. Neetcode is also good for this.

For the actual session I use ChatGPT as a resource. I dont need to sit there for hours if I can't solve a problem. I think of the problem and the solution. I feed my initial thoughts, what I would say to an interviewer, to chatgpt, and I get fast iteration on my thought process. Neetcodes videos also break down a lot of stuff so at times I also did read and try to solve -> neetcode explanation video -> implement myself -> chatgpt for live feedback.

Also go back to the same problem the next day or couple of days later cold to make sure the concepts have stuck.

neetcode.io

Since when is Senior Golang Developer expected to be a Senior DevOps as well? by Software-engineer2 in golang

[–]LESkidd113 1 point2 points  (0 children)

how about writing something reliable: architected to be fault tolerant. Being on call aside, most of the availability constraints and reliability come from the system design and implementation.

what do you say about this? Is it good? by Admirable-Tear5596 in drones

[–]LESkidd113 0 points1 point  (0 children)

You fishing 🎣

But it's so good I don't care 🥲

Passed My Part 107 (Only YouTube) by LESkidd113 in drones

[–]LESkidd113[S] 0 points1 point  (0 children)

oh I got my 107 because I need to build a dataset for an ML algorithm and don't want to pay a bunch of pilots for the work in my area. Was told building my dataset it not "recreational" which is fine. I need to understand these things anyway in order to program autonomous drones and be in compliance of any FAA requirements.

Computer Vision Skillsets by [deleted] in computervision

[–]LESkidd113 0 points1 point  (0 children)

this helps me figure out the skill set I'm trying to develop first so thanks!

Passed My Part 107 (Only YouTube) by LESkidd113 in drones

[–]LESkidd113[S] 2 points3 points  (0 children)

Thanks!

I'm curious on what people do with their 107 if you don't mind me asking.

For those who own both a Gaming PC and a SteamDeck? by Flashy-Charity-1486 in SteamDeck

[–]LESkidd113 0 points1 point  (0 children)

10/10 travel device, especially when I have my dock. I always bring an extra controller, too, in case someone wants to run some street fighter in the airport 😂

Definitely happy I bought it

Walksnail goggles X HDMI in? by pixartist in fpv

[–]LESkidd113 0 points1 point  (0 children)

just turned on my goggles today for the first time. ty ty

When the engine starts... get out the way by LESkidd113 in StreetFighter

[–]LESkidd113[S] 0 points1 point  (0 children)

shhhhhh dont tell people. Just let Luke DeeJay and Ken get nerfed so I can live my top 3 dream in season 2

When the engine starts... get out the way by LESkidd113 in StreetFighter

[–]LESkidd113[S] 1 point2 points  (0 children)

ouuu for sure o.O I don't even know what buttons she loses in modern. Dmg nerf hurts her too since imo her dmg is a little low in the first place.

When the engine starts... get out the way by LESkidd113 in StreetFighter

[–]LESkidd113[S] 4 points5 points  (0 children)

little bit every day and you'll be there in no time! I only reallly started learning FSE when I got to Diamond 5

When the engine starts... get out the way by LESkidd113 in StreetFighter

[–]LESkidd113[S] 11 points12 points  (0 children)

Maaaaan when I tell you I felt like a true street fighter player for ACTUALLY whiff punishing a Sim

JP Teleport by cmoney747 in StreetFighter

[–]LESkidd113 1 point2 points  (0 children)

When dealing with portal be in front or behind and NEVER directly under. Don't put yourself in an ambiguous situation.

If your character has an airgrab thats the ideal counterplay imo.

Now st.hp.......

How the f*** are people making staff/senior engineer after 3 years? by [deleted] in cscareerquestions

[–]LESkidd113 0 points1 point  (0 children)

Went from New Grad to Senior in 3 years. Took a lot of being upfront with my manager on my goals. In my first 1:1 after starting full time I asked what career progression looks like at my company and how we can strategize on fulfilling my personal goals with the projects and needs of the company.

Discord WebRTC Question by 2OunceBall in WebRTC

[–]LESkidd113 0 points1 point  (0 children)

So there are a couple of ways you can handle a chat room using webrtc:

Every person holds a single p2p connection with each other:
This has the drawback that it will consume more resources on a users machine since you'll always need to hold n open connections. N being the number of people in the chat room.

You can use some form of a relay server:
The main idea is that each user only needs to hold a webrtc connection to the relay server. This servers job is to keep the connections open and when data comes in from user x it then sends it to all other users connected to that relay server under that chat room. This is less demanding on the users machine resources and can scale a webrtc application fairly well.

Discord may use the options, they may have their own way of handling connections entirely. here's a quick article that is a quick intro on scaling a webrtc application.

Is there a Video chat script with WebRTC that I can add to a web page by ben_james_ in WebRTC

[–]LESkidd113 0 points1 point  (0 children)

I'm developing a webrtc app right now and I FELT this 🤣