• 0 Posts
  • 51 Comments
Joined 10 months ago
cake
Cake day: January 14th, 2024

help-circle


  • Imo skip the open source license. You’re wanting to give this specific organization access to your work. If you follow the suggestions here and license it under creative commons or some other open source license then you’re also opening the door for others to use that work. It would be better to give the organization use of your work in its current form but otherwise reserve all rights for yourself, via a custom (non open source) license. This way in the future you can continue doing whatever you want with it, and maybe that means open sourcing when you’re ready to do so.

    Ofc if you’re ready to open source now then go for it.



  • Idk about the meeting thing but do not disturb can do this already. Can set up a multiple schedules to auto turn on/off do not disturb and then allow exceptions from favorite (starred) contacts. You can also allow an exception from someone who calls you 3 times back to back in case they’re calling you from someone else’s phone. And can also allow some apps as exceptions in case you use a 3rd party alarm app or something else that you want to be able to make noise.



  • Here are some good rule of thumbs for work and schools:

    • do not connect to their networks with your personal devices, ever.

    • Only use work/ school devices on their own network.

    • Do not do anything personal on those networks. only do work/school related tasks. This means don’t log into any non school/work accounts.

    • If for some reason they don’t have a device for you but require you to use their network, then leave your personal devices at home claiming you don’t own one and make them accommodate you.

    You cannot expect privacy in these situations, and by going to the extreme lengths to try to get it then you will ironically just paint a bigger target on your back if any network admin cares. In some cases this can cost you your job or get you in trouble with the school.





  • ResoluteCatnap@lemmy.mltoPrivacy@lemmy.ml*Permanently Deleted*
    link
    fedilink
    English
    arrow-up
    21
    ·
    3 months ago

    let me ask this: what is your threat model? Don’t tell me, ask yourself that and work through it if you haven’t already.

    Going full 100% and trying to become a shadow overnight if a great recipe for burning yourself out and not trying. Instead look at your specific threat model and work on the biggest things one step at a time. Make it a journey and only take a new step once you’re comfortable with the last.



  • What advantage is there is changing nameservers? Is it just the centrally manage DNS or something else? I’m fairly new to self hosting and only serving locally for now.

    I do know cloudflare uses the same nameservers PER ACCOUNT so if you’re wanting to have multiple domains but keep one or more connections separated from you then this does draw a minor connection to a subset of Cloudflare accounts with the same two nameservers



  • ResoluteCatnap@lemmy.mltoLinkedinLunatics@sh.itjust.worksBelching
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    4 months ago

    I think wed just need the following

    • rel.id (primary key)
    • rel.user_id (foreign key to person.id)
    • rel.user_id2 (foreign key to person.id)
    • rel.type (type of relationship)
    • rel.start (non null)
    • rel.end

    From there you don’t need a rel.status because you’re not updating this rel.id entry except for the rel.end. if they started dating again later it would be a whole new entry, and then you could query their entire dating history to see if they keep coming back to the same person, dating around, playing the field, etc. Separately there could be a friendship relationship that is tracked so you could if they ended being friends after a breakup.


  • To that point a person table with a relationship table. So this way you can reference relationship between two or more persons within the relationship table and that could be joined to the person table if needed. I don’t think you’d really be able to keep it within one table while exploring multiple relationships unless you’re storing a list of ids that is interpreted outside of sql. Also a relationship table would allow exploring other types of relationships such as exes, love interests, coworkers, family, friends, etc