Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Found your code on a business school website #8

Open
zantiu opened this issue Jul 30, 2021 · 7 comments
Open

Found your code on a business school website #8

zantiu opened this issue Jul 30, 2021 · 7 comments

Comments

@zantiu
Copy link

zantiu commented Jul 30, 2021

http://www.aspirebarcelona.eu/assets/short-term-brochures/basics%20of%20software%20engineering.pdf

And also on an banking & fintech event poster.

@fornof
Copy link
Owner

fornof commented Jul 31, 2021

nice! Thanks for letting me know :)

@tardyp
Copy link

tardyp commented Sep 8, 2021

@fornof are you the original author of the stock picture?
If not, then your code on Github does not show any software license, so it is all right reserved by default.

@tardyp
Copy link

tardyp commented Sep 8, 2021

are you the original author of the stock picture?

looks like you are not. The author of those visuals can be found via google reverse image.

https://www.dreamstime.com/stock-illustration-programming-code-abstract-technology-background-software-deve-developer-computer-script-image96434780

@fornof
Copy link
Owner

fornof commented Sep 8, 2021

I beg your pardon, but I am the author of the code base, and have git log dating back to 2014 (7 years ago) to prove it:
845ff94
There's no joy in suing, which is why I don't.

@tardyp
Copy link

tardyp commented Sep 9, 2021

Sorry, I didn't meant you weren't the author of the code, but you are not the author of the stock photo that are around (if you were then there would be no problem).

So that means that author is actually doing copyright infringement, probably not in bad faith.
I think this would be preferable if you put a liberal licence on this code so that people that use images from monsitj are not committing copyright infringement without realising.

You could put https://creativecommons.org/share-your-work/public-domain/cc0/ or even https://en.wikipedia.org/wiki/WTFPL those are very liberal and would reaffirm what I can see informally in all those issues, that you are pretty happy to see artists reuse your work as an example of beautiful code :)

@nanma80
Copy link

nanma80 commented Nov 4, 2021

I think that image is a built-in image of PowerPoint now. If I title a PowerPoint slide as "code", this image shows up as a suggested background image in "design ideas". I already see it several times from internal presentations by my coworkers. Congrats for the visibility!

I feel the following part can be simplified a bit.

if _operation == "MIRROR_X":
    mirror_mod.use_x = True
    mirror_mod.use_y = False
    mirror_mod.use_z = False
elif _operation == "MIRROR_Y":
    mirror_mod.use_x = False
    mirror_mod.use_y = True
    mirror_mod.use_z = False
elif _operation == "MIRROR_Z":
    mirror_mod.use_x = False
    mirror_mod.use_y = False
    mirror_mod.use_z = True

However, it won't change the stock image no matter how we improve it.

@ldo
Copy link

ldo commented Mar 14, 2023

Turned up here.

How about this:

mirror_mod.use_x = _operation == "MIRROR_X"
mirror_mod.use_y = _operation == "MIRROR_Y"
mirror_mod.use_z = _operation == "MIRROR_Z"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants