Earlier quoted context omitted.
And if you can't resist using a work device for something non-work-related, please restrict your use to things you wouldn't mind having printed out and sitting on your boss's desk.
Or read out loud and passed around in court. See the parent of the linked tweet.
Apple explicitly asks employees to merge their personal and work accounts
141–150 of 361 posts
Re: Apple explicitly asks employees to merge their personal and work accounts
#142Earlier quoted context omitted.
"jptech used 6.8 gb last month, must be watching Youtube all day"
It’s not infrequent I’ll leave YouTube videos playing while I work on my actual work machine so I don’t think they need to do that much sleuth work if they want to accuse me of using YouTube on the clock.
Re: Apple explicitly asks employees to merge their personal and work accounts
#143Earlier quoted context omitted.
Because GitHub makes it hard (i.e. impossible) to manage multiple accounts. No account switching on the website, no easy way to use multiple SSH keys to access multiple accounts when using Git.
Shouldn't you mostly be using them on separate computers though? The rare times I need my personal one at work (to view how I solved something before), I just open Incognito.
Re: Apple explicitly asks employees to merge their personal and work accounts
#144Re: Apple explicitly asks employees to merge their personal and work accounts
#145Earlier quoted context omitted.
I don't ger this either. With TLS/SSL , how is it different than connecting to any public wifi?
The workplace admin can see which domains you visit when you use the work wifi.
I've seen people fired for watching DVDs at work. Conversly people watching youtube a lot and nothing happening. Early in the web days an admin assistant came to me because they clicked on something on the web and a bunch of pron windows started popping up. She panicked and turned off her computer and was wondering if it was safe to turn back on or would she be fired. It was safe, and nothing happened to her.
Someone at a job complained I was reading the news on the web to my boss, when that was my habit at lunch. That was fun.
Re: Apple explicitly asks employees to merge their personal and work accounts
#146Create a firewall between your personal and professional time. Another name for this is “setting healthy boundaries”. Always create new accounts for anything work related -- GitHub, Apple ID, whatever. Don’t install work apps on your personal phone. Don’t enrol your personal phone in corporate MDM. If they want you to use a device for work, ask them to give you one. Don’t do personal stuff on your work devices. Don’t…
I agree with most of this, but I'm curious about the specific case of Github. If I join a company, are there any big dangers to just having them add my personal GH account to their organizations or private repos, and then if I leave the company they can remove me again? This seems to be how a lot of developers in my orbit do things. (I mean any dangers at the account/permissions/privacy level - separate from "having…
Re: Apple explicitly asks employees to merge their personal and work accounts
#147Create a firewall between your personal and professional time. Another name for this is “setting healthy boundaries”. Always create new accounts for anything work related -- GitHub, Apple ID, whatever. Don’t install work apps on your personal phone. Don’t enrol your personal phone in corporate MDM. If they want you to use a device for work, ask them to give you one. Don’t do personal stuff on your work devices. Don’t…
I don't follow ANY of this advice and am unlikely to do so anytime soon.
Re: Apple explicitly asks employees to merge their personal and work accounts
#148Create a firewall between your personal and professional time. Another name for this is “setting healthy boundaries”. Always create new accounts for anything work related -- GitHub, Apple ID, whatever. Don’t install work apps on your personal phone. Don’t enrol your personal phone in corporate MDM. If they want you to use a device for work, ask them to give you one. Don’t do personal stuff on your work devices. Don’t…
I don't want to carry two phones. I'm part of a team that owns some responsibility for fixing things that break in the night. I find it freeing to be able to reply to a Slack or Outlook email while I'm with my kids at the playground.
I see the above advice all the time, but I can't help but think it only relates to an IC with no career ambition, no outside responsibility distractions (kids schedules), that's 100% committed to 9-5 life and has little opportunity for big promotion based on being part of a chain of ownership for things that are customer facing.
Personally, I've mostly worked at small companies (my preference), and have ambitions. I have a healthy work/life balance, but also don't want my products to fail and occasionally want the flexibility to help my colleagues while AFK.
In the end, the above advice is very popular, but I just see a jaded burnout mercenary in a company with tens or hundreds of thousand employees.
Re: Apple explicitly asks employees to merge their personal and work accounts
#149Earlier quoted context omitted.
put this in your ~/.ssh/config Host personal.github.com HostName github.com User git IdentityFile ~/.ssh/id_rsa_personal then clone from git@personal.github.com/x.git for personal stuff
The host also doesn’t have to be a “real” host. You could do something like github-personal for example. Thanks for the assist fnord77!