Skip to content

Commit aafeaa1

Browse files
committed
add slides on choosing a license
1 parent aee5cc4 commit aafeaa1

File tree

5 files changed

+78
-0
lines changed

5 files changed

+78
-0
lines changed

choosing-a-license/Makefile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
all:
2+
pandoc slides.md -t beamer -o choosing.pdf --slide-level=2
3+
ppt:
4+
pandoc slides.md -o choosing.pptx --slide-level=2
5+
6+
clean:
7+
rm choosing.pdf choosing.pptx

choosing-a-license/choose-flow.dia

1.82 KB
Binary file not shown.

choosing-a-license/choose-flow.png

19.7 KB
Loading

choosing-a-license/choosing.pdf

82.8 KB
Binary file not shown.

choosing-a-license/slides.md

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
---
2+
title: Choosing a License
3+
subtitle: foss-north pod
4+
author: foss-north
5+
header-includes: |
6+
\usepackage{xcolor}
7+
\usepackage{svg}
8+
\definecolor{fossorange}{HTML}{ffcc33}
9+
\setbeamercolor{background canvas}{bg=black}
10+
\setbeamercolor{section in head/foot}{bg=black,fg=fossorange}
11+
\setbeamercolor{subsection in head/foot}{bg=fossorange,fg=black}
12+
\setbeamercolor{normal text}{fg=fossorange}
13+
\setbeamercolor{block title}{fg=black,bg=fossorange}
14+
\setbeamercolor{titlelike}{fg=fossorange}
15+
\setbeamercolor{itemize item}{fg=fossorange}
16+
\setbeamercolor{itemize subitem}{fg=fossorange}
17+
\setbeamerfont{caption}{size=\tiny}
18+
\setbeamerfont{footnote}{size=\tiny}
19+
\setbeamerfont{footnote mark}{size=\tiny}
20+
theme: Malmoe
21+
aspectratio: 169
22+
23+
---
24+
25+
## Things to consider
26+
- Is this code?
27+
- Permissive or Copyleft
28+
- Patents or not
29+
- Legal aspects
30+
31+
## Is this code?
32+
- We only talk about licenses for software.
33+
- These licenses are specifically written for software
34+
- Creative Commons
35+
36+
## License style
37+
:::::::::::::: {.columns}
38+
::: {.column width="45%"}
39+
### Permissive
40+
- Allows relicensing
41+
- Can make proprietary derived works
42+
- Allows flow in any direction
43+
:::
44+
::: {.column width="45%"}
45+
### Copyleft
46+
- Can't relicense
47+
- Share alike
48+
- Weak copyleft
49+
:::
50+
::::::::::::::
51+
52+
## Patents & Legal aspects
53+
- Do you care about patents?
54+
- You should!
55+
- Legal aspects
56+
- Talk to your company's lawyer
57+
- License policy
58+
- Predictability
59+
60+
## What to choose
61+
Always use a patent license!
62+
63+
![Flowchart for choosing license](choose-flow.png){ width=60% }
64+
65+
## Links
66+
- [https://choosealicense.com](https://choosealicense.com/)
67+
- [https://www.gnu.org/licenses/license-recommendations.html](https://www.gnu.org/licenses/license-recommendations.html)
68+
- [https://creativecommons.org/choose/](https://creativecommons.org/choose/)
69+
70+
71+
- [https://en.wikipedia.org/wiki/Mozilla_software_rebranded_by_Debian](https://en.wikipedia.org/wiki/Mozilla_software_rebranded_by_Debian)

0 commit comments

Comments
 (0)