-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontact.html
95 lines (85 loc) · 3.77 KB
/
contact.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
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Code Pipes | Contact Kostis Kapelonis</title>
<meta name="description" content="Kapelonis Kostis - Software Engineer - Technical Writer - Manning Author" />
<meta name="author" content="Kapelonis Kostis" />
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/component.css" />
<script src="js/modernizr.custom.js"></script>
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-59045406-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="container">
<!-- Top Navigation -->
<div class="codrops-top clearfix">
<span class="right"><span>Copyright© 2010-2024 Kapelonis Kostis </span></span>
</div>
<header class="codrops-header">
<h1>Code Pipes <span>My internet footprint</span></h1>
<nav class="codrops-navigation">
<a href="index.html">Technical Writing</a>
<a href="presentations.html">Presentations</a>
<a href="code.html">Code</a>
<a href="https://blog.codepipes.com/">Blog</a>
<a class="current-tab" href="contact.html">Contact</a>
</nav>
</header>
<section class="simple">
<h2>Contact Kostis Kapelonis <img class="floater-right" src="img/kostis-kapelonis.jpg" /></h2>
<p>
I use Gmail and my username is kkapelon, so if you are human, you should know my email address. You can
also find me here:
</p>
<ul>
<li>My profile <a href="https://twitter.com/codepipes">at Twitter</a></li>
<li>My profile <a href="http://github.com/kkapelon">at Github.com</a></li>
<li>My profile <a href="http://www.linkedin.com/in/kkapelon">at Linked-in</a></li>
<li>My profile <a href="http://stackoverflow.com/users/60593/kazanaki">at Stack Overflow</a></li>
</ul>
<h3>I like:</h3>
<ul>
<li>Clean abstractions and API walls</li>
<li>Modular architectures</li>
<li>Queues and messages</li>
<li>The Unix philosophy that each program should do one thing well</li>
<li>Build pipelines where everything is automated</li>
</ul>
<h3>I don't like</h3>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Overengineering">Over-Engineering</a> and <a
href="http://en.wikipedia.org/wiki/Spaghetti_code#Lasagna_code">Lasagna code</a></li>
<li>XML Gluttony</li>
<li>Monolithic systems</li>
<li>Design Pattern overload</li>
<li>Projects that fall under <a href="http://en.wikipedia.org/wiki/Conway%27s_law">Conway's law</a> or
suffer from the <a href="http://en.wikipedia.org/wiki/Inner-platform_effect">Inner Platform
effect</a></li>
</ul>
<h3>I am not interested in joining your company if:</h3>
<ul>
<li>you get less than 6/12 points in the <a
href="http://www.joelonsoftware.com/articles/fog0000000043.html">Joel Test</a /a>.</li>
<li>your recruitment process involves trivia/quiz questions that have nothing to do with software
engineering</li>
<li>your software architect thinks that design patterns are the next best thing since sliced bread</li>
<li>you want to rewrite your big application from PHP to Java (thanks but no thanks)</li>
</ul>
</section>
</div><!-- /container -->
</body>
</html>