I told my boss I had an idea for a program that could improve efficiency across much of the business, and he let me build it on company time. In the long term, he wanted to be able to sell it to other companies. However, the program never got implemented due to personnel mismanagement, and I’d rather be able to post it on my github under a free licence so I can use it as a resume item, and at least someone would have the chance to actually use it. It’s all still in my head, and I could write it again if I wanted. If I do, is it illegal to publish it? What if I write it in a different language? Do I need to change the variable names? I did plenty of research and planning on company time to build it, and it’s not like I can research it again, it’s all still in my head.

  • BB_C@programming.dev
    link
    fedilink
    arrow-up
    1
    ·
    8 months ago

    Meh, everyone scaring you into thinking you don’t own your own mind.

    Assuming your boss is not the dangerous kind (beyond legal threats), and if the goal is to make it FOSS, then do it using an alias first. Do it differently. Use components/libs/algos from other people at first, even if they are not perfect. Make those parts easily pluggable/replaceable which would be good design anyway. The code then wouldn’t be wholly yours, not even your alias self.

    You can join the project later with your real identity as an interested domain expert (maybe a bit after not working for the same boss). Start contributing. Become a maintainer. And maybe take over after a while. You can start replacing non-optimal components/libs/algos with better ones piecemeal.

    Oh, and if Rust wasn’t the choice of implementation, use it this time.

      • MachineFab812@discuss.tchncs.de
        link
        fedilink
        arrow-up
        2
        ·
        edit-2
        4 months ago

        “Make those parts pluggable/replaceable which would be a good design anyways”.

        Following best practices = Morally Wrong?
        Sure, fren, whatever you say.

        The only reason OP might not have done it this way in the first place would have been to save the company worrying about licensing, or getting shitty with OP about not using enough orignal/proprietary code to ensure lock-in with future clients … is THAT somehow morally superior in your book?

        • lemmyvore@feddit.nl
          link
          fedilink
          English
          arrow-up
          0
          arrow-down
          1
          ·
          8 months ago

          I just mean that the amount of subterfuge that’s been suggested in this thread suggests these people feel that something’s wrong. You don’t normally have to go to such lengths to hide your identity on GitHub.

          Let’s be honest, deciding later that code they wrote for someone should be repurposed behind their back is rather underhanded. And making it open source rather than spinning their own company doesn’t make it more palatable.

  • scorpionix@feddit.de
    link
    fedilink
    arrow-up
    1
    ·
    8 months ago

    Not a lawyer but from my understanding of intellectual property: You wrote it on company time, so it is the companies code. Publishing it without explicit approval would be copyright infringement.

    • DroneRights [it/its]@lemm.eeOP
      link
      fedilink
      English
      arrow-up
      0
      ·
      8 months ago

      The code on the computer isn’t what I would be publishing. I would be publishing the memories in my head, which I had written down again

      • remotelove@lemmy.ca
        link
        fedilink
        arrow-up
        4
        ·
        edit-2
        8 months ago

        Don’t copy the code directly from any company assets. There are plenty of ways to track code and data theft these days, so don’t even attempt it. I am just saying that as a friendly reminder.

        Honestly, there is not much that a company can do unless they specially own the business logic of what you are doing. Are there aspects to the code that apply to internal proprietary software? That probably isn’t wise to share.

        While I am not a lawyer, a general rule of thumb is that if you think you might be stealing something, you probably are. Anything you do on company time, is technically owned by that company.

        If your previous work gets discarded by that company, never talk about it again. Never code it again for that company and just let the idea die, as far as that company is concerned. Independently resurrect the idea at a later date.

        Nobody here can really tell you what to do, btw. Quite honestly, if you think that you can claim ownership of what you have, pay a few hundred bucks for a consultation with a lawyer.

      • lemmyvore@feddit.nl
        link
        fedilink
        English
        arrow-up
        0
        ·
        8 months ago

        If you rewrite it in a clean-room approach and another language it will most likely not be in breach of copyright.

        But there are many other aspects where you may be at fault: breaking confidentiality, using trade secrets, non-disclosure, non-compete etc.

        My advice would be to have an honest discussion with the company owner and ask for the permission to open the code under a permissive license. Be prepared to explain what the advantages would be for the company, beyond “the code is just sitting there”. Be prepared to drop it if they say no.

        If you go ahead it is quite possible you will be sued. Make sure you’re willing to risk it and spend time and money defending your project.

        • alonely0@programming.dev
          link
          fedilink
          arrow-up
          2
          ·
          edit-2
          8 months ago

          –Not legal advice-- Except they can’t do clean-room development because copyright is viral. If they had access to the copyrighted source, any code they write on the matter, if it coincides with the copyrighted one to some extent, can be pursued for copyright claims (IBM v. Microsoft). For example, when there’s a leak of Windows source, ReactOS devs get super scared, because it really puts them on the line. Another example is Nouveau, which can’t accept anyone who has worked at NVIDIA. That being said, the company was not intending to do anything with it, so they can’t claim damages; ergo, OP is completely safe.

      • scorpionix@feddit.de
        link
        fedilink
        arrow-up
        0
        ·
        8 months ago

        Doesn’t matter if you write it in code or chisel it on a stone tablet. It is still the companies intellectual property.

        Think of it this way: You film a movie which for whatever reason doesn’t get published. This doesn’t give you the permission to write a book containing the same story, just in writing. The story is still owned by the film studio. The same reason applies to published material: You are not allowed to write a Star Wars story without approval from Disney, the copyright holder. Fan fiction exists in a gray zone for exact this reason.

        • Beej Jorgensen@lemmy.sdf.org
          link
          fedilink
          arrow-up
          1
          ·
          8 months ago

          You can absolutely write a Star Wars knockoff, though. You just can’t call it that. There’s some gray line in there somewhere.

        • Bipta@kbin.social
          link
          fedilink
          arrow-up
          1
          arrow-down
          1
          ·
          8 months ago

          You’re sort of missing the point. Two programming implementations are never the same if you rewrite them from scratch for anything but the most trivial program. It wouldn’t be a copy of the original and it would have a unique, if similar, implementation. It’s not as clear cut as you suggest (at least not for the reasons you suggest, but IANAL.)

          • scorpionix@feddit.de
            link
            fedilink
            arrow-up
            1
            ·
            8 months ago

            It is not about the code line by line, but the functionality that OP created for their employer. And yes it is not clear-cut in the sense that in Oracle vs. Google it was AFAIK decided that the idea of the toString Method does not fall under copyright. However, a software that fills a specific need for a company and is then re-implemented/released by an employee? You can bet your ass you are in for at least a lengthy battle in court.

  • foo@withachanceof.com
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    8 months ago

    The only real answer here is talk to an actual lawyer rather than a bunch of Joe Blows on the internet. Case in point: Laws will vary depending on country and you haven’t specified what country you’re in. The set of laws you’re subject to are possibly entirely different than the set of laws each commenter here is familiar with. Never take legal advice from the internet.

    But if you’re only looking to publish the source code as a resume item, it’s not worth the legal exposure or time/money to talk to a lawyer. Find something else to write and put on your resume.

  • hascat@programming.dev
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    8 months ago

    Check your employment contract. If that includes an NDA or a confidentiality agreement, the company may own your design as well as any code produced. Writing the program from scratch a second time may still end up being company property.

    Given that they didn’t put your program into production, it’s unlikely they would pursue you legally for releasing a new version on your own.

    • thisisnotgoingwell@programming.dev
      link
      fedilink
      arrow-up
      0
      arrow-down
      1
      ·
      8 months ago

      IANAL but i’m pretty sure that even without an NDA anything you develop on the job is considered IP of the company. However, as long as it’s not a blatant copy paste(a rewrite), it’s hard to legally enforce that because they have to prove damages. Meaning that if they shelfed the idea/program, even if it’s a blatant copy paste they can’t do anything.

      • Sigmatics@lemmy.ca
        cake
        link
        fedilink
        arrow-up
        0
        arrow-down
        1
        ·
        8 months ago

        Basically, they won’t bother sueing you unless you end up making millions off it

        But at that point the program will likely not even be reminiscent of its original form

    • adr1an@programming.dev
      link
      fedilink
      arrow-up
      0
      ·
      8 months ago

      That’s practical, but not so sound, advice. IANAL, yet… I remember when Julia lang was gaining traction that many R lang programmers wanted to port their favorite packages. If they were to look at the R sources (under GPL) to write the Julia version to be released under MIT license, they would be violating the GPL. Or there was a risk, at least. Of course, this case is different because the first and original version is not GPL. But this came to mind. Anyway, I suppose that it all boils down to how much OP feels like their employer (boss or anyone with power in the company) will be a son-of-a-cop and really come forward to court against him… I mean, that’s in the first place. Then, comes the legal advice, as to how much of a case can be made, and what do we expect a judge would see it…

    • homoludens@feddit.de
      link
      fedilink
      arrow-up
      1
      ·
      8 months ago

      I would never rely on the opinion of my boss when the question is what my rights are. They’re usually not a lawyer and their interests are often contrary to mine.

  • TheFrirish@jlai.lu
    link
    fedilink
    arrow-up
    0
    arrow-down
    1
    ·
    8 months ago

    Just rewrite it with different lines but same result fuck em. Down votes incoming