Open Side Menu Go to the Top
Register
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** ** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD **

07-25-2019 , 01:03 AM
I can not wait to sign the offer tomorrow morning and then give notice in my 1-1 tomorrow. We are having a going away lunch for the 3rd co-worker who is leaving this Friday. After I put in my notice and leave, there will only be one engineer on the team.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
07-25-2019 , 01:19 AM
Lol i know your manager is a dickhead but i feel so bad for him. Hes ****ed.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
07-25-2019 , 01:25 AM
Just don't give your notice at the beginning of a long excruciatingly awkward car ride like I did. Do not recommend.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
07-25-2019 , 01:48 AM
Quote:
Originally Posted by Barrin6
Haha yea 4% above my initial offer.

Company B’s offer wasn’t strong enough for me to convince the recruiter that I would take it.

Overall the new job will be a 32% pay increase. It’s one of most solid tech companies wth top talent so I’m overall happy.
Haha gotcha. I thought you said at one point pay would be near equivalent and was like whattt.

Nice work
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
07-25-2019 , 05:44 PM
Quote:
Originally Posted by Barrin6
I can not wait to sign the offer tomorrow morning and then give notice in my 1-1 tomorrow. We are having a going away lunch for the 3rd co-worker who is leaving this Friday. After I put in my notice and leave, there will only be one engineer on the team.
Congrats! It's a sinking ship and great timing it get out.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
07-25-2019 , 11:35 PM
Quote:
Originally Posted by Barrin6
I can not wait to sign the offer tomorrow morning and then give notice in my 1-1 tomorrow. We are having a going away lunch for the 3rd co-worker who is leaving this Friday. After I put in my notice and leave, there will only be one engineer on the team.
Yeah I understand. Be a pro, stay classy.

Congrats!
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
07-26-2019 , 06:28 AM
Congrats!
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
08-01-2019 , 01:57 AM
Thanks ya'll!

I gave notice last week and my last day is next Wednesday. My boss asked not to tell anyone yet but it is now a week away from my last day. Practically all the managers know and most of my team members know but it still isn't "officially announced" yet. So it's really awkward at the office since most of my team members know that I am leaving but at the same time they are pretending not to know. A couple of the managers and a director are both surprised that my boss hasn't officially shared the news with the team.

I'll need to talk to my boss tomorrow to see if I can announce it now. Though it is kind of funny to keep it awkward up until the day I leave.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
08-01-2019 , 02:02 AM
When do you start your new job?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
08-01-2019 , 02:27 AM
Quote:
Originally Posted by goofyballer
When do you start your new job?
In September, so I'm taking a long break in between jobs.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
08-11-2019 , 01:02 PM
Bump
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
08-11-2019 , 01:38 PM
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
08-11-2019 , 07:07 PM
There's not even a programming thread on the new place oh well.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
08-11-2019 , 09:33 PM
What is "the new place"?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
08-11-2019 , 10:17 PM
https://unstuckpolitics.com/

Not very friendly to non progressives btw (I am a progressive).
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
08-11-2019 , 10:44 PM
wtf is that lol
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
08-11-2019 , 11:30 PM
The forum software is awesome. No pages, live updates w/o refresh, you can paste images right in the post (= WITCHCRAFT!!!). It automatically embeds all kinds of stuff - it previews links. Makes 2p2 feel super clunky.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
08-12-2019 , 12:31 AM
Lol at "non progressives" at this point.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
08-20-2019 , 03:59 PM
Does anyone know a non-brute-force, non-typescript way to do a merge which only keeps properties that already existed on the target object?

IE:

Code:
const targetObj = {a:1, b:2, c:3};
const newObj = {a:4, d:9};

// mergedObj should be {a:4, b:2, c:3} - d property isn't carried over
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
08-20-2019 , 09:11 PM
Code:
const suzzerMerge = (targetObj, newObj) => Object.keys(targetObj).reduce((acc, curr) => {
	acc[curr] = newObj[curr] || targetObj[curr]

	return acc
}, {})
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
08-20-2019 , 09:13 PM
Quote:
Originally Posted by Grue
Code:
const suzzerMerge = (targetObj, newObj) => Object.keys(targetObj).reduce((acc, curr) => {

acc[curr] = newObj[curr] || targetObj[curr]



return acc

}, {})
Yup. Does anyone ever use object entries? I always see keys like this
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
08-20-2019 , 09:32 PM
Nah I barely use any object method other than keys. Though took a little bit and came up with this and its probably more of what suzzer was looking for but still O(n) aka brute force right.

Code:
const suzzerMerge2 = (targetObj, newObj) => Object.fromEntries(Object.keys(targetObj).map(targetKeyName => [targetKeyName, newObj[targetKeyName] || targetObj[targetKeyName]]))
There's probably something super clever using Sets to filter out unique key names but um I'm a couple drinks in.

Last edited by Grue; 08-20-2019 at 09:56 PM.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
08-20-2019 , 09:38 PM
Your original I assume is the best. Converting to a set of some sort surely has to have a worse time complexity in implementation right?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
08-20-2019 , 09:39 PM
I'm considering hitting the old interview trail so I should probably learn all this again
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
08-20-2019 , 09:47 PM
You have never been more wrong.



or something.

Its semi interesting yeah should look at the Set approach as its a good use case for Set for sure, maybe tomorrow.

Last edited by Grue; 08-20-2019 at 09:57 PM.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote

      
m