Merge pull request #2 from tobsan/choosing

add slides on choosing a license
This commit is contained in:
Johan Thelin 2020-07-06 22:52:21 +02:00 committed by GitHub
commit b7d8501efb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 78 additions and 0 deletions

View file

@ -0,0 +1,7 @@
all:
pandoc slides.md -t beamer -o choosing.pdf --slide-level=2
ppt:
pandoc slides.md -o choosing.pptx --slide-level=2
clean:
rm choosing.pdf choosing.pptx

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

View file

@ -0,0 +1,71 @@
---
title: Choosing a License
subtitle: foss-north pod
author: foss-north
header-includes: |
\usepackage{xcolor}
\usepackage{svg}
\definecolor{fossorange}{HTML}{ffcc33}
\setbeamercolor{background canvas}{bg=black}
\setbeamercolor{section in head/foot}{bg=black,fg=fossorange}
\setbeamercolor{subsection in head/foot}{bg=fossorange,fg=black}
\setbeamercolor{normal text}{fg=fossorange}
\setbeamercolor{block title}{fg=black,bg=fossorange}
\setbeamercolor{titlelike}{fg=fossorange}
\setbeamercolor{itemize item}{fg=fossorange}
\setbeamercolor{itemize subitem}{fg=fossorange}
\setbeamerfont{caption}{size=\tiny}
\setbeamerfont{footnote}{size=\tiny}
\setbeamerfont{footnote mark}{size=\tiny}
theme: Malmoe
aspectratio: 169
---
## Things to consider
- Is this code?
- Permissive or Copyleft
- Patents or not
- Legal aspects
## Is this code?
- We only talk about licenses for software.
- These licenses are specifically written for software
- Creative Commons
## License style
:::::::::::::: {.columns}
::: {.column width="45%"}
### Permissive
- Allows relicensing
- Can make proprietary derived works
- Allows flow in any direction
:::
::: {.column width="45%"}
### Copyleft
- Can't relicense
- Share alike
- Weak copyleft
:::
::::::::::::::
## Patents & Legal aspects
- Do you care about patents?
- You should!
- Legal aspects
- Talk to your company's lawyer
- License policy
- Predictability
## What to choose
Always use a patent license!
![Flowchart for choosing license](choose-flow.png){ width=60% }
## Links
- [https://choosealicense.com](https://choosealicense.com/)
- [https://www.gnu.org/licenses/license-recommendations.html](https://www.gnu.org/licenses/license-recommendations.html)
- [https://creativecommons.org/choose/](https://creativecommons.org/choose/)
- [https://en.wikipedia.org/wiki/Mozilla_software_rebranded_by_Debian](https://en.wikipedia.org/wiki/Mozilla_software_rebranded_by_Debian)