-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (87 loc) · 4.41 KB
/
index.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
96
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="#" /> <!--Suppress favicon-->
<title>][ nobloat.org</title>
<style>
body {
font-family: monospace;
font-size: 1.2rem;
background-color: #f7f8f9;
margin: 1.2rem;
}
a, a:hover, a:visited {
color: #222;
}
ul {
list-style-type: '-';
}
li {
padding-left: 1rem;
}
div {
position: relative;
float: right;
}
</style>
</head>
<body>
<main>
<div><a href="https://github.com/nobloat/">github.com/nobloat</a></div>
<h1>][ nobloat.org</h1>
<hr>
<h2>Goals</h2>
<ul>
<li>Write, read, promote and fix software to contain less
<a href="https://en.wikipedia.org/wiki/Software_bloat">bloat</a></li>
<li>Visualize and track software bloat</li>
</ul>
<h2>Metrics</h2>
<ul>
<li>Installed (binary) size and <a href="https://en.wikipedia.org/wiki/Source_lines_of_code">SLOC</a> of
<ul>
<li>dev-dependencies (compiler, libs, build-system)</li>
<li>runtime-dependencies (jvm, python, .net, chrome)</li>
<li>external-dependencies (components that do not reside in the same process / address-space)</li>
</ul>
</li>
</ul>
<h2>Projects</h2>
<ul>
<li><a href="/css">/css</a> - modular vanilla CSS3 components</li>
<li><a href="https://github.com/nobloat/bare-jvm">/bare-jvm</a> - <a href="https://baremessages.org/">baremessages</a> implementation for the JVM</li>
<li><a href="https://github.com/cinemast/dbolve">cinemast/dbolve</a> - a very minimalistic database migration tool for golang projects</li>
<li><a href="https://github.com/nobloat/tinyviper">nobloat/tinyviper</a> - a very minimalistic alternative to the famous <a href="https://github.com/spf13/viper">spf13/viper</a> configuration library</li>
<li><a href="https://github.com/oliverselinger/db-evolve">oliverselinger/dbevolve</a> - a very minimalistic database migration tool for Java 11+ projects (lightweight alternative to liquibase or flyway)</li>
<li><a href="https://github.com/oliverselinger/failsafe-executor">oliverselinger/failsafe-executor</a> - a minimalistic distributed task scheduler for Java 11+ projects (lightweight alternative to quartz)</li>
<li><a href="https://github.com/nobloat/svelte-router">/svelte-router</a> - a minimalistic router for svelte, in case one does not want to use SvelteKit.
<li><a href="https://github.com/nobloat/ruler">/ruler [WIP]</a></li>
<li><a href="https://github.com/nobloat/os">/os [WIP]</a></li>
</ul>
<hr>
<h2>See also</h2>
<ul>
<li><a href="https://boringtechnology.club/">Choose boring technology</a></li>
<li><a href="https://www.radicalsimpli.city/">Radical simplicity</a>
<li><a href="http://frameworklessmovement.org/">Frameworkless movement</a>
<ul>
<li><a href="http://matteo.vaccari.name/blog/archives/1022">No frameworks Part II - Matteo Vaccari</a></li>
</ul>
</li>
<li><a href="https://www.inkandswitch.com/local-first/">Local-first software</a>
<ul>
<li><a href="https://www.youtube.com/watch?v=KrPsyr8Ig6M">Local-first software: Talk by Peter Van Hardenberg</a></li>
</ul>
</li>
<li><a href="https://en.wikipedia.org/wiki/Minimalism_(computing)">Minimalism (computing)</a></li>
<li><a href="https://joearms.github.io/published/2014-06-25-minimal-viable-program.html">Minimal viable Programs</a></li>
<li><a href="https://en.wikipedia.org/wiki/You_aren%27t_gonna_need_it">YAGNI</a></li>
<li><a href="http://suckless.org/philosophy/">Suckless philosophy</a></li>
<li><a href="http://harmful.cat-v.org/">cat -v harmful stuff</a></li>
<li><a href="https://simplifier.neocities.org/">Simplifier</a></li>
<li><a href="https://bundlephobia.com/">Bundlephobia</a></li>
</ul>
</main>
</body>