Merge pull request #2 from tobsan/choosing
add slides on choosing a license
This commit is contained in:
commit
b7d8501efb
5 changed files with 78 additions and 0 deletions
7
choosing-a-license/Makefile
Normal file
7
choosing-a-license/Makefile
Normal 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
|
BIN
choosing-a-license/choose-flow.dia
Normal file
BIN
choosing-a-license/choose-flow.dia
Normal file
Binary file not shown.
BIN
choosing-a-license/choose-flow.png
Normal file
BIN
choosing-a-license/choose-flow.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
BIN
choosing-a-license/choosing.pdf
Normal file
BIN
choosing-a-license/choosing.pdf
Normal file
Binary file not shown.
71
choosing-a-license/slides.md
Normal file
71
choosing-a-license/slides.md
Normal 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!
|
||||
|
||||
{ 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)
|
Loading…
Add table
Add a link
Reference in a new issue