-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrfc.html
More file actions
136 lines (106 loc) · 6.31 KB
/
rfc.html
File metadata and controls
136 lines (106 loc) · 6.31 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Zamp Engineering Handbook</title>
<!-- Meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="All things Engg @ Zamp!">
<meta name="author" content="Xiaoying Riley at 3rd Wave Media">
<link rel="shortcut icon" href="favicon.ico">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap" rel="stylesheet">
<!-- FontAwesome JS-->
<script defer src="assets/fontawesome/js/all.min.js"></script>
<!-- Plugins CSS -->
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.2/styles/atom-one-dark.min.css">
<link rel="stylesheet" href="assets/plugins/simplelightbox/simple-lightbox.min.css">
<!-- Theme CSS -->
<link id="theme-style" rel="stylesheet" href="assets/css/theme.css">
</head>
<body class="docs-page">
<header class="header fixed-top">
<div class="branding docs-branding">
<div class="container-fluid position-relative py-2">
<div class="docs-logo-wrapper">
<div class="site-logo"><a class="navbar-brand" href="index.html"><span class="logo-text">Zamp
Engineering<span class="text-alt"> Handbook</span></span></a></div>
</div>
<!--//docs-logo-wrapper-->
<div class="docs-top-utilities d-flex justify-content-end align-items-center">
<ul class="social-list list-inline mx-md-3 mx-lg-5 mb-0 d-none d-lg-flex">
<li class="list-inline-item" style="padding-top: 10px"><a href="https://github.com/Zampfi"><i
class="fab fa-github fa-fw"></i></a></li>
</ul>
<!--//social-list-->
</div>
<!--//docs-top-utilities-->
</div>
<!--//container-->
</div>
<!--//branding-->
</header>
<!--//header-->
<div class="docs-wrapper">
<article class="docs-article" id="section-1">
<header class="docs-header">
<h1 class="docs-heading">Request for Change</h1>
<section class="docs-intro">
<p>As an organisation grows, it makes multiple decisions on how to do things. All these decisions
are
made with the information avaiable to the members at that point in time. Every decision is
right.
Every decision has it's own context. However, with time, these decision may seem dated as the
context would have changed. To move forward quickly and with agitility, we need to reassess such
decisions. These decisions can be as big as how Zamp is structured to as small as the variable
name
on a helper file. To make change come throught, we raise requests for change and take buy in of
individuals to get it implemented.</p>
</section>
<!--//docs-intro-->
</header>
<section class="docs-section" id="item-1-1">
<h2 class="section-heading">How to make a cultural change ?</h2>
<p>A lot of Zamp cultures is codified as a part of this handbook. If you'd like to make a change, the
best course of action would be to raise a PR to this repo and get approval from the required quorum.
Once approved and merged, your change should come into effect immidiately. There are some changes
would require some implmentations as well. In such cases, we refrain from merging the PR until the
implementation is done to a certain critical degree.</p>
</section>
<section class="docs-section" id="item-1-2">
<h2 class="section-heading">How to make a technical change ?</h2>
<p>If your change is related to an engineering piece, we request you to raise a IMPL and get buy in from
folks. You should also take feedback to ensure the change is sustainable, scalable and extendible.
Once your IMPL is approved, execution is planned and implemented.</p>
</section>
<section class="docs-section" id="item-1-3">
<h2 class="section-heading">How to implement something that never existed?</h2>
<p>Often times, change would mean bringing into life something that never existed. In that scenario as
well, we request you to raise a RFC and IMPL. Once approved, it is executed and brought to life.</p>
</section>
<!--//section-->
</article>
<footer class="footer">
<div class="footer-bottom text-center py-5">
<!--/* This template is free as long as you keep the footer attribution link. If you'd like to use the template without the attribution link, you can buy the commercial license via our website: themes.3rdwavemedia.com Thank you for your support. :) */-->
<small class="copyright">Living and Breathing Handbook maintained with <span
class="sr-only">love</span><i class="fas fa-heart" style="color: #fb866a;"></i> by <a
class="theme-link" href="https://www.zamp.finance/team" target="_blank">Zamp Engineering
Team</a></small>
</div>
</footer>
</div>
<!--//docs-wrapper-->
<!-- Javascript -->
<script src="assets/plugins/popper.min.js"></script>
<script src="assets/plugins/bootstrap/js/bootstrap.min.js"></script>
<!-- Page Specific JS -->
<script src="assets/plugins/smoothscroll.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.8/highlight.min.js"></script>
<script src="assets/js/highlight-custom.js"></script>
<script src="assets/plugins/simplelightbox/simple-lightbox.min.js"></script>
<script src="assets/plugins/gumshoe/gumshoe.polyfills.min.js"></script>
<script src="assets/js/docs.js"></script>
</body>
</html>