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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Having fun with computers!</title>
<link rel="shortcut icon" type="image/gif" href="/favicon.ico" />
<style type="text/css">
body {
margin: auto;
max-width: 900px;
background-color: #FFFFEF;
border: 1px dashed #880000;
border-radius: 8px;
padding: 5px;
}
img {
display:block;
max-width: 90%;
}
p.quote:before {
content: " | ";
padding-left: 2px;
}
a.textlink:before {
content: " ⇒ ";
padding-left: 2px;
}
a.textlink {
text-decoration: none;
color: #FF0000;
}
a.textlink:hover {
text-decoration: underline;
}
pre {
background-color: #F1F8E9;
border: 1px dashed #BB0000;
border-radius: 8px;
padding: 5px;
}
h1 {
text-align: center;
color: #880000;
}
h2, h3 {
color: #BB0000;
}
</style>
</head>
<body>
<a class="textlink" href="./">Go back to the main site</a><br />
<h1>Resources</h1>
<p>This is a list of resources I found useful. I am not an expert in all of these topics but all the resources listed here made an impact on me. I've read some of the books quite a long time ago, so there might be newer editions out there already and I might need to refresh some of the knowledge.</p>
<p>The list may not be exhaustive but I will be adding more in the future. I strongly believe that educating yourself further is one of the most important things you should do in order to advance. The lists are in random order and reshuffled every time (via *sort -R*) when updates are made.</p>
<p>You won't find any links on this site because over time the links will break. Please use your favorite search engine when you are interested in one of the resources...</p>
<pre>
.--. .---. .-.
.---|--| .-. | A | .---. |~| .--.
.--|===|Ch|---|_|--.__| S |--|:::| |~|-==-|==|---.
|%%|NT2|oc|===| |~~|%%| C |--| |_|~|CATS| |___|-.
| | |ah|===| |==| | I | |:::|=| | |GB|---|=|
| | |ol| |_|__| | I |__| | | | | |___| |
|~~|===|--|===|~|~~|%%|~~~|--|:::|=|~|----|==|---|=|
^--^---'--^---^-^--^--^---'--^---^-^-^-==-^--^---^-'hjw
</pre>
<h2>Technical books</h2>
<ul>
<li>C++ Programming Language; Bjarne Stroustrup; (I've to admit that was a long time ago I've read this book)</li>
<li>Learn You Some Erlang for Great Good; Fred Herbert; No Starch Press</li>
<li>Pro Git; Scott Chacon, Ben Straub; Apress</li>
<li>Systemprogrammierung in Go; Frank Müller; dpunkt</li>
<li>DNS and BIND; Cricket Liu; O'Reilly</li>
<li>Concurrency in Go; Katherine Cox-Buday; O'Reilly</li>
<li>Modern Perl; Chromatic ; Onyx Neon Press</li>
<li>Java ist auch eine Insel; Christian Ullenboom; </li>
<li>Think Raku (aka Think Perl 6); Laurent Rosenfeld, Allen B. Downey; O'Reilly</li>
<li>Advanced Bash-Scripting Guide; Not a book by per-se but could be</li>
<li>Site Reliability Engineering; How Google runs production systems; O'Reilly</li>
<li>Systems Performance Tuning; Gian-Paolo D. Musumeci and others...; O'Reilly</li>
<li>The Practise of System and Network Administration; Thomas A. Limoncelli, Christina J. Hogan, Strata R. Chalup; Addison-Wesley Professional</li>
<li>Clusterbau mit Linux-HA; Michael Schwartzkopff; O'Reilly</li>
<li>Object-Oriented Programming with ANSI-C; Axel-Tobias Schreiner</li>
<li>Programming Perl aka "The Camel Book"; Tom Christiansen, brian d foy, Larry Wall & Jon Orwant; O'Reilly</li>
<li>Higher Order Perl; Mark Dominus; Morgan Kaufmann</li>
<li>The Docker Book; James Turnbull; Kindle</li>
<li>Developing Games in Java; David Brackeen and others...; New Riders</li>
<li>Effective awk programming; Arnold Robbins; O'Reilly</li>
<li>Learn You a Haskell for Great Good!; Miran Lipovaca; No Starch Press</li>
<li>Funktionale Programmierung; Peter Pepper; Springer</li>
<li>Pro Puppet; James Turnbull, Jeffrey McCune; Apress</li>
<li>The Go Programming Language; Alan A. A. Donovan; Addison-Wesley Professional</li>
<li>21st Century C: C Tips from the New School; Ben Klemens; O'Reilly</li>
<li>Distributed Systems: Principles and Paradigms; Andrew S. Tanenbaum; Pearson</li>
</ul>
<h2>Technical bibles</h2>
<p>I didn't read them from the beginning to the end, but I am using them to look up things.</p>
<ul>
<li>The Linux Programming Interface; Michael Kerrisk; No Starch Press</li>
<li>Understanding the Linux Kernel; Daniel P. Bovet, Marco Cesati; O'Reilly</li>
<li>Algorithms; Robert Sedgewick, Kevin Wayne; Addison Wesley</li>
</ul>
<h2>Self-development and soft-skills books</h2>
<ul>
<li>Atomic Habits; James Clear; Random House Business</li>
<li>The Complete Software Developer's Career Guide; John Sonmez; Unabridged Audiobook</li>
<li>Eat That Frog!; Brian Tracy; Hodder Paperbacks</li>
<li>Time Management for System Administrators; Thomas A. Limoncelli; O'Reilly</li>
<li>Digital Minimalism; Cal Newport; Portofolio Penguin</li>
<li>Stop starting, start finishing; Arne Roock; Lean-Kanban University</li>
<li>Ultralearning; Scott Young; Thorsons</li>
<li>The Joy of Missing Out; Christina Crook; New Society Publishers</li>
<li>Soft Skills; John Sommez; Manning Publications</li>
<li>So Good They Can't Ignore You; Cal Newport; Business Plus</li>
<li>The Bullet Journal Method; Ryder Carroll; Fourth Estate</li>
<li>Psycho-Cybernetics; Maxwell Maltz; Perigee Books</li>
<li>Who Moved My Cheese?; Dr. Spencer Johnson; Vermilion</li>
<li>The Off Switch; Mark Cropley; Virgin Books</li>
<li>The Daily Stoic; Ryan Holiday, Stephen Hanselman; Profile Books</li>
<li>Deep Work; Cal Newport; Piatkus</li>
<li>The 7 Habits Of Highly Effective People; Stephen R. Covey; Simon & Schuster UK</li>
<li>The Power of Now; Eckhard Tolle; Yellow Kite</li>
</ul>
<h2>Technical video lectures and courses</h2>
<p>Some of these were in-person with exams, others were online learning lectures only.</p>
<ul>
<li>Linux Security and Isolation APIs Training; Michael Kerrisk; 3 day on-site training</li>
<li>MySQL Deep Dive Workshop; 2 day on-site training</li>
<li>Protocol buffers; O'Reilly Online</li>
<li>Algorithms Video Lectures; Robert Sedgewick; O'Reilly Online</li>
<li>Red Hat Certified System Administrator; Course + certification (Although I had the option I decided not to take the next course as it is more effective to self learn what I need)</li>
<li>Scripting Vim; Damian Conway; O'Reilly Online</li>
<li>The Ultimate Kubernetes Bootcamp; School of Devops; O'Reilly Online</li>
<li>Ultimate Go Programming; Bill Kennedy; O'Reilly Online</li>
<li>Structure and Interpretation of Computer Programs; Harold Abelson and more...; </li>
<li>F5 Loadbalancers Training; 2 day on-site training; F5, Inc. </li>
<li>Apache Tomcat Best Practises; 3 day on-site training</li>
<li>Functional programming lecture; Remote University of Hagen</li>
</ul>
<h2>Fiction and more books</h2>
<p>Many fiction and non-fiction books I read are not listed here. This site mostly includes resources which made an impact on me regarding the work I do only and not on my personal life. Do you recommend a good Science Fiction Novel? E-Mail me; I can also provide my own recommendations! :-)</p>
<h2>Formal education</h2>
<p>I have met many self-taught IT professionals I highly respect. In my own opinion a formal degree does not automatically qualify a person for a certain job. It is more about how you educate yourself further *after* formal education. The pragmatic way of thinking and getting things done do not require a college or university degree.</p>
<p>However, I still believe a degree in Computer Science helps to achieve a good understanding of all the theory involved which you would have never learned about otherwise. Isn't it cool to understand how compiler work under the hood (automata theory) even if in your current position you are not required to hack the compiler? You could apply the same theory for other things too. This was just *one* example.</p>
<ul>
<li>One year Student exchange programme in OH, USA</li>
<li>German School Majors (Abitur), focus areas: German and Mathematics</li>
<li>Half year internship as a C/C++ programmer in Sofia, Bulgaria</li>
<li>Graduaded from University as Diplom-Inform. (FH) at the Aachen University of Applied Sciences, Germany</li>
</ul>
<p>My diploma thesis "Object oriented development of a GUI based tool for event based simulation of distributed systems" can be found at:</p>
<a class="textlink" href="https://github.com/snonux/vs-sim">https://github.com/snonux/vs-sim</a><br />
<p>I was one of the last students to whom was handed out an "old fashioned" German Diploma degree before the University switched to the international Bachelor and Master versions. To give you an idea: The "Diplom-Inform. (FH)" means literally translated "Diploma in Informatics from a University of Applied Sciences (FH: Fachhochschule)". Going after the international student credit score it is settled between a Bachelor of Computer Science and a Master of Computer Science degree. </p>
<p>Colleges and Universities are very expensive in many countries. Come to Germany, the first college degree is for free (if you finish within a certain deadline!)</p>
</body>
</html>
|