-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.html
69 lines (69 loc) · 3.01 KB
/
library.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<html lang="en">
<head>
<meta name="viewport" content="width=device-width,initial-scale=1"\>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"\>
<title>About me</title>
</head>
<body>
<div class="jumbotron">
<div class="container">
<h1>My humble library</h1>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-xs-12">
<h2>Lightweight Django - 2015</h2>
<p>
Really a great book. I heart so many times that django is too heavy for small projects, and at some point I thought that way too. But this book makes me appreciate Django again even for small project.
I also appreciated the implementations details of the javascripts frameworks (bootstrap and backbone). It's a very complete lecture for any web developper.
</p>
<div class="text-center">
<a href="#"><span class="glyphicon glyphicon-plus"></span> Full Story</a>
</div>
</div>
</div>
<hr></hr>
<div class="row">
<div class="col-xs-12">
<h2>Effective Python - 2015</h2>
<p>
Thank you Brett Slatkin, this book is a perfect reminder for so many design patterns in python, it never leaves my desk.
It would be great if a new edition of this book could include asyncio tips and tricks... (just a wish).
</p>
<div class="text-center">
<a href="#"><span class="glyphicon glyphicon-plus"></span> Full Story</a>
</div>
</div>
</div>
<hr></hr>
<div class="row">
<div class="col-xs-12">
<h2>Black Hat Python - 2015</h2>
<p>
It contains a lot of practicle cases and very good explanations, very clear, very handful.
</p>
</div>
</div>
<hr></hr>
<div class="row">
<div class="col-xs-6">
<h2>Articles and links</h2>
<ul class="nav">
<li><a href="http://protopage.com/karmaguedon">Welcome</a></li>
<li><a href="https://atosworldline.com/">atosworldline.com</a></li>
<li><a href="https://docs.python.org/3.5/library/logging.handlers.html">python-logging handlers</a></li>
</ul>
</div>
</div>
</div>
<hr></hr>
<footer>
<div class="container">
<p>© nde inc. 2016</p>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</body>
</html>