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

02-09-2020 , 12:08 PM
Do they have to include equity/bonus?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-09-2020 , 04:50 PM
No they don’t have to include equity and bonus in their range. I asked for a range for base and the base salary they ended up giving me was higher than what they originally quoted. What they quoted was also lower than what I saw on levels.fyi so I would just assume anything a recruiter says is bs.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-09-2020 , 04:57 PM
Quote:
Originally Posted by Barrin6
I asked for a range for base and the base salary they ended up giving me was higher than what they originally quoted.
How is this compatible with the law? Especially at a large company with very defined pay bands!

(I would guess it is not)
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-09-2020 , 04:59 PM
Unless you mean an internal recruiter, I just assume anything a recruiter says is either an outright lie, or if you want to be charitable, merely mistaken.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-11-2020 , 04:30 PM
It's 2020 and googling a lodash command still takes you to the lodash home page where you have to drill down all over again to find the command you want.



Clicks link:

** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-11-2020 , 11:27 PM
just had company give me a survey with 500 words on it and asked me to check the words that described me.

kill

me

now
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-12-2020 , 12:50 AM
that might be one of those BS tests. like they want you to think outside the box and tell them to **** off bc this is some BS. I dunno, proly your best shot.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-12-2020 , 11:20 AM
Quote:
Originally Posted by Victor
that might be one of those BS tests. like they want you to think outside the box and tell them to **** off bc this is some BS. I dunno, proly your best shot.
This is actually the right move either way:
* test is fake to see if you'll (correctly) put up a fight: win
* test is real and they think it's important: win because **** these guys
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-12-2020 , 09:21 PM
lol ya thats the other thing. you proly dont want to work there.

anyway, heres a really weird message I just got on ****ing LinkedIn.

Quote:
Victor, I work directly on the data management for {my company name redacted} over at Oracle. I haven't made my way to {my state} yet, hopefully, I will soon! Anyways, I was wanting to contact you to talk about some test/dev environments. A lot of clients don't realize they are free and available, so I wanted to reach out to see if you had time to talk on it.

Let me know if we can do that, I won't waste any of your time.

Thanks in advance,
Nick
like wtf, I should proly report this dude to linkedIn right? this is def a scammer phishing thing. I guess I will jsut report it to my company. eh, proly just do nothing. but this is a scam of some sort right? note that I work a really big company whos data would be like super mega important.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-13-2020 , 01:34 AM
Quote:
Originally Posted by Victor
anyway, heres a really weird message I just got on ****ing LinkedIn
I've gotten similar messages via email a couple times, but for AWS or Azure instead of Oracle. Usually it's a super green sales guy who's basically doing cold calls to (apparently) try to drum up cloud spending. I just ignore them.

Quote:
Hi (me),

I’m reaching out as part of your account team for (my company's name, misspelled) at AWS.

We’re being proactive in keeping an open dialogue with our customers and it looks like nobody’s been in contact for quite some time!

It looks like someone at your company was interested in learning more about AWS and I can be your point of contact to provide assistance and resources regarding AWS projects.

Just curious, did you have a project you’re working on that you’re planning to leverage AWS for?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-13-2020 , 02:20 PM
i asked for feedback for a final interview i did a month ago and then got ghosted on and they are now like "ACTUALLY, WE HAVE NOT OFFERED THE JOB TO ANYONE BUT WE WANT YOU. CAN YOU SIGN THE CONTRACT TODAY? WHY WON'T YOU SIGN THE CONTRACT TODAY? SIGN THE CONTRACT, MOTHER ****ER".
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-13-2020 , 02:40 PM
any place willing to hire me seems to be basically insane.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-14-2020 , 01:29 AM
Yeah probably wouldn’t go there tbh
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-18-2020 , 09:24 PM
https://twitter.com/foone/status/122...370355200?s=12

Pretty funny bug that came from multiple people copying an incorrect solution from Stack Overflow.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-18-2020 , 10:21 PM


Crazy how often that's the case.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-19-2020 , 12:51 AM
Still butthurt eh?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-19-2020 , 11:10 PM
SQL question: when using the REPLACE() function, is there a way to count how many replacements are made? Or even just to determine if any replacements were made at all?

For context, I have to write a script to anonymize personal data. This is straightforward enough in most cases. We also store several “comments” fields in our database, though. Those could also contain data I have to anonymize, so I basically just have to parse them and remove information when applicable.

The thing is, these columns rarely have a value. When they do, they rarely have any information I have to worry about. This will be rarely used and doesn’t really have to be performant, but it just bothers me on principal how inefficient it is. Right now I basically “update” the field by using the REPLACE() function to remove what I want. At the same time, I update some columns used for tracking purposes, so I’d also like to avoid making “fake” updates to those columns; that is also a pretty minor concern though, and I doubt anyone cares about it except me.

Anyway, if there’s a simple answer to my question at the top I’d love to hear it! Any other ideas are also welcome.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-19-2020 , 11:31 PM
I don't think "replace()" is part of the SQL standard so the answer is probably dependent on what database you're using.

Is this a one time thing? Like you're anonymizing it once? Or something you run on some kind of interval?

If it's not a one time thing:
Why not anonymize the data on the way in, i.e. never store sensitive data in the first place?

If it is and you care: make use of whatever internal programming language your database has. I have found that usually the built in functions are awful and if you don't want to use the built in language then you're going to do a lot of redundant stuff. Like... do a replace on one column but also do a find on the same column to deduce if the replace did anything, etc. It's super common.

Do you need to update the tracking columns anyway? Anonymizing a column doesn't really count as a real update in my book.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-20-2020 , 12:58 AM
Quote:
Originally Posted by PJo336
Still butthurt eh?
Just happy to share the hate.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-20-2020 , 03:26 PM
I'm overhearing my coworkers struggle mightily to get a docker-image-hosted web app working on a second dev's machine. But it works on the first dev's, so weird! I hear stuff about port 8080 and a lot of the same issues that always seem to come up with running a web app locally in docker.

I can't decide if I should get involved. But I'd lay odds this is a problem that doesn't need docker at all.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-20-2020 , 04:45 PM
Even for stuff that doesn't "need" docker I still prefer docker. It is really nice not to have to maintain all the node nonsense and npm modules for our website's front end on my machine just so I can run it locally. Even more so because there is more than one UI that I might want to run.

If they're muttering about port 8080 then it's probably just the standard conflict that something else is using the port they want to use. You'd have the same problem without docker.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-20-2020 , 06:18 PM
I'm sure it's great if you use docker all the time. But when you hand a docker-based app over to some shop where no one uses docker, it can be a pain for them to get working. Generally the instructions tend to leave out some steps and assume a medium-level working knowledge of docker concepts. It either works immediately or you're in for some googling.

My coworker found some instructions for deploying a node app to Elastic Beanstalk via a docker container. So now we have (what seem to me) unnecessary docker steps in our build process - all because the person who wrote the example he found loves docker. But I'm not going to go in and try to rework it to remove docker.

Last edited by suzzer99; 02-20-2020 at 06:23 PM.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-20-2020 , 06:47 PM
It really kind of depends on how well it's architected too - most of our stuff you literally just need to install docker and then run a command, and it will do the rest. In some cases you will need to do a "docker login" if you need to pull something from our private repo. But that's pretty much it. We recently hired someone and I led him through getting a dev env set up - it used to be a full day job with a wiki that was pretty much always wrong, and now it's a 10 minute deal.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-21-2020 , 12:05 AM
Quote:
Originally Posted by RustyBrooks
Even for stuff that doesn't "need" docker I still prefer docker. It is really nice not to have to maintain all the node nonsense and npm modules for our website's front end on my machine just so I can run it locally. Even more so because there is more than one UI that I might want to run.

If they're muttering about port 8080 then it's probably just the standard conflict that something else is using the port they want to use. You'd have the same problem without docker.
Do you run docker commands locally like docker-compose run app npm test, or whatever, or do you go into a terminal inside the container to do everything? I find the lag annoyingly slow between running a docker command and getting it to execute, otherwise i would use it for everything
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
02-21-2020 , 01:13 AM
Quote:
Originally Posted by PJo336
Do you run docker commands locally like docker-compose run app npm test, or whatever, or do you go into a terminal inside the container to do everything? I find the lag annoyingly slow between running a docker command and getting it to execute, otherwise i would use it for everything
docker-compose run would spin up a container from scratch and then run your thing - that's going to be slow, yeah. I generally do docker-compose up to get whatever containers I want going up, and then "docker run" to run something inside the containers. If I want to do something more interactive then I run "docker run IMAGENAME bash". For stuff I do fairly often I have a bunch of bash aliases.

The other major use case is that I started distributing tools via docker containers. I can't link to any of our stuff because you need to be docker-logined to our artifactory, but as an example

docker run --rm=true eclecticiq/cabby:latest taxii-discovery --path https://otx.alienvault.com/taxii/discovery

This will run "cabby" from a docker image. Yes, you can pip install cabby and then run it, but the chance of it working first time from docker is basically 100%, and the chance of it working universally as a python package is high, but maybe only 80% - competing package versions, maybe needing to set up a virtualenv, issues installing or not having root permission to install packages, etc. It's guaranteed not to cause any problems or clashes pretty much.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote

      
m