-
Notifications
You must be signed in to change notification settings - Fork 0
/
books.html
90 lines (87 loc) · 4.93 KB
/
books.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<html>
<head>
<title>Recommended Software Books from The Data Dump</title>
<link rel='stylesheet' href='/assets/stylesheets/estilo.css'>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<meta charset='UTF-8'>
</head>
<body>
<div class='main'>
<h1>Books recommended in The Data Dump</h1>
<div>
<h2>4 Recommendations!</h2>
<ul>
<li><a href="https://amzn.to/2YGlgNN">The Pragmatic Programmer: From Journeyman to Master</a> - Andrew Hunt & David Thomas</li>
</ul>
<h2>3 Recommendations!</h2>
<ul>
<li><a href="https://amzn.to/2KeeQRY">Code Complete: A Practical Handbook of Software Construction, Second Edition</a> - Steve McConnell</li>
<li><a href="https://amzn.to/2GLTNnE">Clean Code: A Handbook of Agile Software Craftsmanship</a> - Robert C. Martin</li>
<li><a href="https://amzn.to/2GNNiAy" target="_blank">Practical Object-Oriented Design: An Agile Primer Using Ruby</a> - Sandi Metz</li>
</ul>
<h2>2 Recommendations!</h2>
<ul>
<li><a href="https://amzn.to/2YIQPGu" target="_blank">The Structure and Interpretation of Computer Programs</a> - Hal Abelson, Jerry Sussman, and Julie Sussman</li>
<li><a href="https://amzn.to/2KolKml" target="_blank">The Mythical Man-Month: Essays on Software Engineering</a> - Fred Brooks</li>
</ul>
<h2>Recommended</h2>
<ul>
<li><a href="https://amzn.to/2MChtP2" target="_blank">Don't Make Me Think: A Common Sense Approach to Web Usability</a> - Steve Krug</li>
<li><a href="https://amzn.to/2MHLcpX" target="_blank">Code Simplicity</a> - Max Kanat-Alexander</li>
<li><a href="https://amzn.to/2YHk3pd" target="_blank">Gödel, Escher, Bach: An Eternal Golden Braid</a> - Douglas Hofstadter</li>
<li><a href="https://amzn.to/31c1NGa" target="_blank">JavaScript and jQuery: Interactive Front-End Web Development</a> - Jon Duckett</li>
<li><a href="https://amzn.to/2YqAL0X" target="_blank">The New Turing Omnibus: Sixty-Six Excursions in Computer Science</a> - A. K. Dewdney</li>
<li><a href="https://amzn.to/33bomfZ" target="_blank">The Effective Engineer: How to Leverage Your Efforts In Software Engineering to Make a Disproportionate and Meaningful Impact</a> - Edmond Lau</li>
<li><a href="https://amzn.to/2T9oQP9" target="_blank">The Timeless Way of Building</a> - Christopher Alexander</li>
<li>The Data Dump - Joe Peck</li>
<li><a href="https://amzn.to/2GKe4tO" target="_blank">The Senior Software Engineer: 11 Practices of an Effective Technical Leader</a> - David Copeland</li>
<li><a href="https://amzn.to/2KdMhUy" target="_blank">The C Programming Language</a> - Dennis Ritchie and Brian Kernighan</li>
<li><a href="https://amzn.to/2GL4dEa" target="_blank">The Little Schemer</a> - Daniel P. Friedman and Matthias Felleisen</li>
<li><a href="https://amzn.to/2GL4nLM" target="_blank">JavaScript: The Good Parts</a> - Douglas Crockford</li>
<li><a href="https://amzn.to/2YG4AG3" target="_blank">Land of Lisp: Learn to Program in Lisp, One Game at a Time!</a> - Conrad Barski</li>
<li><a href="https://amzn.to/2GM34fc" target="_blank">Domain Driven Design</a> - Eric J. Evans</li>
</ul>
</div>
</div>
<aside class='sidebar'>
<h1><a href="index.html">Joe Peck</a></h1>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSdSHAza-dYgLOqR20o_hwcTtbd1o4d2d5-0wM8Ssadpnh7hBQ/viewform">
<div class="blinky">
<i class="fas fa-book blinky"></i>Book News!
</div>
</a>
<nav>
<ul>
<li>
<i class="fas fa-file-pdf"></i><a href='./resume'>Resumé</a>
</li>
<li>
<i class="fab fa-linkedin"></i><a href='https://www.linkedin.com/in/joepeck/'>LinkedIn</a>
</li>
<li>
<i class="fab fa-github"></i><a href='https://github.com/fatcatt316'>GitHub</a>
</li>
<li>
<i class="fab fa-gitlab"></i><a href='https://gitlab.com/fatcatt316'>GitLab</a>
</li>
<li>
<i class="fas fa-leaf"></i><a href='http://www.ecojoes.com/'>EcoJoes</a>
</li>
<li>
<i class="fab fa-twitter"></i><a href='https://twitter.com/fatcatt316'>Twitter</a>
</li>
<li>
<script language="JavaScript">
var name1 = 't316';
var name2 = 'fatcat';
var yay = 'yahoo.com';
document.write('<i class="fas fa-paper-plane"></i>')
document.write('<a href=\"mailto:' + name2 + name1 + '@' + yay + '\">');
document.write('Email</a>');
</script>
</li>
</ul>
</nav>
</aside>
</body>
</html>