-
Notifications
You must be signed in to change notification settings - Fork 2
/
code.html
72 lines (68 loc) · 2.14 KB
/
code.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
---
title: Code
permalink: code
layout: page
background: yellow
color: brown
menu: true
weight: 2
category: code
---
<header class="white center mb2 uppercase">
<img
src="{{ '/assets/images/square.svg' | prepend: site.baseurl }}"
alt=""
class="fadeInDown animated title-icon--square"
/>
<h1>{{ page.title }}</h1>
</header>
<div class="col-12 px2 md-col-8 mx-auto columize">
<p>
As I only worked for startups, I often was one of the few tech persons in
the team. I had to learn the whole stack in order to be flexible, and Ruby
on Rails made it a breaze.
</p>
<p>
Thought I’m a generalist, I have put over the years more focus on frontend
technologies (React & Ember).
</p>
</div>
<section class="bg-white brown py3 mt4 mb4">
<div class="col-12 px2 md-col-8 mx-auto">
<header class="mb2">
<h2>Principles</h2>
</header>
<div class="flex flex-wrap mb4 mxn2">
<div class="md-col-6 lg-col-4 p2">
<i class="icon-light-up h3 muted"></i>
<h4 class="mb1">KISS</h4>
<p>Keep it stupid simple unless you’re a fan of technical debt.</p>
</div>
<div class="md-col-6 lg-col-4 p2">
<i class="icon-popup h3 muted"></i>
<h4 class="mb1">Components</h4>
<p>It allows a modular approach and a lot of flexibility.</p>
</div>
<div class="md-col-6 lg-col-4 p2">
<i class="icon-target h3 muted"></i>
<h4 class="mb1">No surprises</h4>
<p>Make sure what is built has a single responsability.</p>
</div>
<div class="md-col-6 lg-col-4 p2">
<i class="icon-tools h3 muted"></i>
<h4 class="mb1">Yagni</h4>
<p>Make sure every feature you build is deemed necessary.</p>
</div>
<div class="md-col-6 lg-col-4 p2">
<i class="icon-ccw h3 muted"></i>
<h4 class="mb1">Lean</h4>
<p>Build – measure – Learn. Always start with a good MVP.</p>
</div>
<div class="md-col-6 lg-col-4 p2">
<i class="icon-github h3 muted"></i>
<h4 class="mb1">Open Source</h4>
<p>If you can make it open source, you should.</p>
</div>
</div>
</div>
</section>