Skip to content

Commit f851d77

Browse files
committed
v2.5
added platforms, security
1 parent 0858017 commit f851d77

File tree

5 files changed

+41
-9
lines changed

5 files changed

+41
-9
lines changed

Development Stack.png

42.7 KB
Loading

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@ https://rawgit.com/unruledboy/DevelopmentStack/master/ux/DevelopmentStack.htm
8080
- Amazon Web Services (AWS)
8181
- Google Cloud
8282
- Hybrid Cloud
83+
- Platforms
84+
- [.NET](https://github.com/unruledboy/DotNetStack)
85+
- [Java](https://www.java.com)
8386
- Common Concepts
8487
- Application Programming Interface (API)
8588
- Component
@@ -94,7 +97,7 @@ https://rawgit.com/unruledboy/DevelopmentStack/master/ux/DevelopmentStack.htm
9497
- Multi Layers / n-Tiers
9598
- Frontend / User Interface (UI)
9699
- Backend
97-
- Database
100+
- [Database](https://github.com/unruledboy/DatabaseStack)
98101
- Software Types
99102
- Open source
100103
- Licenses
@@ -182,6 +185,7 @@ https://rawgit.com/unruledboy/DevelopmentStack/master/ux/DevelopmentStack.htm
182185
- Development
183186
- Concepts
184187
- Zero Bug Bounce (ZBB)
188+
- [MVP (Minimum Viable Product)](https://en.wikipedia.org/wiki/Minimum_viable_product)
185189
- Development
186190
- Integrated Development Environment (IDE)
187191
- Retrofit
@@ -193,7 +197,7 @@ https://rawgit.com/unruledboy/DevelopmentStack/master/ux/DevelopmentStack.htm
193197
- Email pass-around
194198
- Pair programming
195199
- Tool-assisted
196-
- Quality Measurement
200+
- [Quality Measurement](https://en.wikipedia.org/wiki/Software_quality)
197201
- Robustness
198202
- Efficiency
199203
- Reliability
@@ -209,12 +213,14 @@ https://rawgit.com/unruledboy/DevelopmentStack/master/ux/DevelopmentStack.htm
209213
- Portability
210214
- Usability
211215
- Fault tolerance
212-
- Fail-fast
216+
- [Fail-fast](https://en.wikipedia.org/wiki/Fail-fast)
213217
- Fail-safe
214218
- Fail-secure
215219
- User Experience (UX)
216220
- Security
217221
- SSL
222+
- Authentication
223+
- Authorization
218224
- Management
219225
- Source Code Control
220226
- Basics

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var fs = Promise.promisifyAll(require('fs'));
1212
var app = new express();
1313
var queueReady = ["server"];
1414

15-
var pageWidth = 3200; // Magic number!
15+
var pageWidth = 3900; // Magic number!
1616
var pageHeight = 3700;
1717

1818
var config = {

ux/DevelopmentStack.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
<div class="container">
9696
<header>
9797
<div class="left">
98-
<h1><a href="https://github.com/unruledboy/DevelopmentStack" target="_blank">Development Stack v0.3</a></h1>
98+
<h1><a href="https://github.com/unruledboy/DevelopmentStack" target="_blank">Development Stack v0.31</a></h1>
9999
</div>
100100
<div class="right">
101101
<p><a href="http://github.com/unruledboy">Wilson Chen (twitter@unruleboy) - [email protected]</a></p>

ux/DevelopmentStack.json

Lines changed: 30 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,19 @@
113113
]
114114
}
115115
]
116+
},
117+
{
118+
"name": "Platforms",
119+
"children": [
120+
{
121+
"name": ".NET",
122+
"url": "https://github.com/unruledboy/DotNetStack"
123+
},
124+
{
125+
"name": "Java",
126+
"url": "https://www.java.com"
127+
}
128+
]
116129
}
117130
]
118131
},
@@ -146,7 +159,10 @@
146159
"children": [
147160
{ "name": "Frontend / User Interface (UI)" },
148161
{ "name": "Backend" },
149-
{ "name": "Database" }
162+
{
163+
"name": "Database",
164+
"url": "https://github.com/unruledboy/DatabaseStack"
165+
}
150166
]
151167
}
152168
]
@@ -405,7 +421,11 @@
405421
{
406422
"name": "Concepts",
407423
"children": [
408-
{ "name": "Zero Bug Bounce (ZBB)" }
424+
{ "name": "Zero Bug Bounce (ZBB)" },
425+
{
426+
"name": "MVP (Minimum Viable Product)",
427+
"url": "https://en.wikipedia.org/wiki/Minimum_viable_product"
428+
}
409429
]
410430
},
411431
{
@@ -437,6 +457,7 @@
437457
},
438458
{
439459
"name": "Quality Measurement",
460+
"url": "https://en.wikipedia.org/wiki/Software_quality",
440461
"children": [
441462
{ "name": "Robustness" },
442463
{ "name": "Efficiency" },
@@ -461,7 +482,10 @@
461482
{
462483
"name": "Fault tolerance",
463484
"children": [
464-
{ "name": "Fail-fast" },
485+
{
486+
"name": "Fail-fast",
487+
"url": "https://en.wikipedia.org/wiki/Fail-fast"
488+
},
465489
{ "name": "Fail-safe" },
466490
{ "name": "Fail-secure" }
467491
]
@@ -472,7 +496,9 @@
472496
{
473497
"name": "Security",
474498
"children": [
475-
{ "name": "SSL" }
499+
{ "name": "SSL" },
500+
{ "name": "Authentication" },
501+
{ "name": "Authorization" }
476502
]
477503
}
478504
]

0 commit comments

Comments
 (0)