• 0 Posts
  • 21 Comments
Joined 1 year ago
cake
Cake day: July 2nd, 2023

help-circle

  • It can be difficult and uncomfortable to tell someone you don’t like them. For women, it can also be dangerous because some men get very aggressive when they’re turned down. You don’t know her experiences and why she chose to make those statements. I don’t think what she did was wrong.

    I’ve been in similar shoes. It’s really hard to notice the cues. Neurotypical people also don’t understand how we think. Since they don’t know what to expect they get scared. They don’t know what other boundaries we’re not aware of.












  • Not a lawyer, but worked closely with them in the past. It REALLY depends on your employment contract. Changing variable names and language still makes it a derivative work, so it would depend on the original license. I’m assuming it doesn’t have a license which would mean either you or the company owns the copyright: depends on your employment contract. Whether you’re a contractor or full time also affects ownership.

    Without ownership or a license, you do not have the legal right to copy the work or make a derivative of it.

    I’m not clear on whether you actually wrote any code though. If that’s the case (that no code was written) then I’m not really sure how that works out. If you do post it and they find out, AND they’re mad about it, you could definitely get fired. I’m not sure if there could also be legal trouble or not.

    If you need it for a resume item, you can just list it on your resume and talk about it. You could also implement it on your own time (but not share it until you’re sure you’re safe from legal action), that way you could talk about tradeoffs you’ve made, etc. in the real implementation.

    In general, if you’re not sure and you’re worried about getting sued, you should ask a lawyer.








  • Another option is assigning an id per user that’s only used for tracking votes. Only the user’s server would know who did the voting, but you still get moderation where you could block votes from a certain id on another server if you believe it’s being abusive in some form.

    As long as you don’t delete the voting id when the user’s account is deleted, you can avoid the votes ever being associated with the user on another server. (Since a snooping party could correlate the timing of the two deletion requests and associate the user with the votes at that time). If you did want to delete them, you could say voting id deletion happens in batches. So accounts get deleted immediately, but votes only get deleted when there’s some group size N available for deletion.