Initial commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
# ll-comme-outils-pour-apprendre-le-code
|
||||
|
||||
Pour lire cette présentation, clonez ce dépot et lancez votre navigateur :
|
||||
|
||||
```
|
||||
$ git clone https://github.com/yaf/ll-comme-outils-pour-apprendre-le-code
|
||||
$ firefox ll-comme-outils-pour-apprendre-le-code/index.html
|
||||
```
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 71 KiB |
+117
@@ -0,0 +1,117 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||||
<meta name="keywords" content="remark,remarkjs,markdown,slideshow,presentation" />
|
||||
<meta name="description" content="A simple, in-browser, markdown-driven slideshow tool." />
|
||||
<title>Le logiciel libre comme outil pour apprendre la programmation</title>
|
||||
<link rel="stylesheet" type="text/css" href="theme.css">
|
||||
</head>
|
||||
<body>
|
||||
<textarea id="source">
|
||||
|
||||
name: inverse
|
||||
layout: true
|
||||
class: center, middle, inverse
|
||||
|
||||
---
|
||||
# Le logiciel libre comme outil pour apprendre la programmation
|
||||
## Yannick François / @ya_f
|
||||
|
||||
### https://github.com/ya_f/ll-comme-outils-pour-apprendre-le-code
|
||||
|
||||
---
|
||||
.left-column[
|
||||
## Qui suis je ?
|
||||
]
|
||||
.right-column[
|
||||
- Geek depuis 1984
|
||||
|
||||
- Fan de Logiciels Libres depuis 1995
|
||||
]
|
||||
|
||||
---
|
||||
template: inverse
|
||||
|
||||
# Activités du développeur
|
||||
|
||||
---
|
||||
template: inverse
|
||||
|
||||
# Lire du code
|
||||
|
||||
---
|
||||
template: inverse
|
||||
|
||||
# Trouver une solution
|
||||
|
||||
---
|
||||
template: inverse
|
||||
|
||||
# Taper du code
|
||||
|
||||
---
|
||||
template: inverse
|
||||
|
||||
# Participer à quelque chose
|
||||
|
||||
---
|
||||
template: inverse
|
||||
|
||||
# Être dans un contexte plus proche du réèl
|
||||
|
||||
---
|
||||
template: inverse
|
||||
|
||||
# Expérimentation
|
||||
|
||||
---
|
||||
template: inverse
|
||||
|
||||
# Travaux en goupe: echec
|
||||
|
||||
---
|
||||
template: inverse
|
||||
|
||||
# Problème existant: Trouver les bons projets
|
||||
|
||||
---
|
||||
template: inverse
|
||||
|
||||
# C'est quoi ?
|
||||
|
||||
---
|
||||
template: inverse
|
||||
|
||||
# Des tickets actionnable
|
||||
|
||||
---
|
||||
template: inverse
|
||||
|
||||
# Compréhensible
|
||||
|
||||
---
|
||||
template: inverse
|
||||
|
||||
# Une communauté accueillante
|
||||
|
||||
---
|
||||
name: last-page
|
||||
template: inverse
|
||||
|
||||
## That's all folks!
|
||||
|
||||
</textarea>
|
||||
<script src="remark-0.10.2.min.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
var hljs = remark.highlighter.engine;
|
||||
</script>
|
||||
<script src="remark.language.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
var slideshow = remark.create({
|
||||
highlightStyle: 'sunburst',
|
||||
highlightLanguage: 'remark'
|
||||
}) ;
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Vendored
+6
File diff suppressed because one or more lines are too long
@@ -0,0 +1,128 @@
|
||||
@font-face {
|
||||
font-family: 'Droid Serif';
|
||||
src: url('font/DroidSerif.ttf');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Yanone Kaffeesatz';
|
||||
src: url('font/YanoneKaffeesatz-Regular.otf');
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Droid Serif';
|
||||
font-size: 20px;
|
||||
}
|
||||
h1, h2, h3 {
|
||||
font-family: 'Yanone Kaffeesatz';
|
||||
font-weight: 400;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
h1 { font-size: 4em; }
|
||||
h2 { font-size: 2em; }
|
||||
h3 { font-size: 1.6em; }
|
||||
.footnote {
|
||||
position: absolute;
|
||||
bottom: 3em;
|
||||
}
|
||||
li p { line-height: 1.25em; }
|
||||
.red { color: red; }
|
||||
.blue { color: #1437AD; }
|
||||
.large { font-size: 2em; }
|
||||
a, a > code {
|
||||
color: rgb(249, 38, 114);
|
||||
text-decoration: none;
|
||||
}
|
||||
code {
|
||||
-moz-border-radius: 5px;
|
||||
-web-border-radius: 5px;
|
||||
background: #e7e8e2;
|
||||
border-radius: 5px;
|
||||
font-size: 16px;
|
||||
}
|
||||
.pull-left {
|
||||
float: left;
|
||||
width: 47%;
|
||||
}
|
||||
.pull-right {
|
||||
float: right;
|
||||
width: 47%;
|
||||
}
|
||||
.pull-right ~ p {
|
||||
clear: both;
|
||||
}
|
||||
#slideshow .slide .content code {
|
||||
font-size: 0.8em;
|
||||
}
|
||||
#slideshow .slide .content pre code {
|
||||
font-size: 0.9em;
|
||||
padding: 15px;
|
||||
}
|
||||
.inverse {
|
||||
background: #272822;
|
||||
color: #777872;
|
||||
text-shadow: 0 0 20px #333;
|
||||
}
|
||||
.inverse h1, .inverse h2 {
|
||||
color: #f3f3f3;
|
||||
line-height: 0.8em;
|
||||
}
|
||||
.beauty {
|
||||
background: #234504;
|
||||
color: white;
|
||||
text-shadow: 0 0 20px #333;
|
||||
}
|
||||
.inverse h1, .inverse h2 {
|
||||
color: #f3f3f3;
|
||||
line-height: 0.8em;
|
||||
}
|
||||
|
||||
/* Slide-specific styling */
|
||||
#slide-inverse .footnote {
|
||||
bottom: 12px;
|
||||
left: 20px;
|
||||
}
|
||||
#slide-how .slides {
|
||||
font-size: 0.9em;
|
||||
position: absolute;
|
||||
top: 151px;
|
||||
right: 140px;
|
||||
}
|
||||
#slide-how .slides h3 {
|
||||
margin-top: 0.2em;
|
||||
}
|
||||
#slide-how .slides .first, #slide-how .slides .second {
|
||||
padding: 1px 20px;
|
||||
height: 90px;
|
||||
width: 120px;
|
||||
-moz-box-shadow: 0 0 10px #777;
|
||||
-webkit-box-shadow: 0 0 10px #777;
|
||||
box-shadow: 0 0 10px #777;
|
||||
}
|
||||
#slide-how .slides .first {
|
||||
background: #fff;
|
||||
position: absolute;
|
||||
top: 20%;
|
||||
left: 20%;
|
||||
z-index: 1;
|
||||
}
|
||||
#slide-how .slides .second {
|
||||
position: relative;
|
||||
background: #fff;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
/* Two-column layout */
|
||||
.left-column {
|
||||
color: #777;
|
||||
width: 20%;
|
||||
height: 92%;
|
||||
float: left;
|
||||
}
|
||||
.left-column h2:last-of-type, .left-column h3:last-child {
|
||||
color: #000;
|
||||
}
|
||||
.right-column {
|
||||
width: 75%;
|
||||
float: right;
|
||||
padding-top: 2em;
|
||||
}
|
||||
Reference in New Issue
Block a user