diff --git a/choosing-a-license/Makefile b/choosing-a-license/Makefile new file mode 100644 index 0000000..d7ed5c0 --- /dev/null +++ b/choosing-a-license/Makefile @@ -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 diff --git a/choosing-a-license/choose-flow.dia b/choosing-a-license/choose-flow.dia new file mode 100644 index 0000000..2d6909e Binary files /dev/null and b/choosing-a-license/choose-flow.dia differ diff --git a/choosing-a-license/choose-flow.png b/choosing-a-license/choose-flow.png new file mode 100644 index 0000000..ce6a600 Binary files /dev/null and b/choosing-a-license/choose-flow.png differ diff --git a/choosing-a-license/choosing.pdf b/choosing-a-license/choosing.pdf new file mode 100644 index 0000000..b61e3a9 Binary files /dev/null and b/choosing-a-license/choosing.pdf differ diff --git a/choosing-a-license/slides.md b/choosing-a-license/slides.md new file mode 100644 index 0000000..57a5821 --- /dev/null +++ b/choosing-a-license/slides.md @@ -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)