philosophy.html (2220B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <meta http-equiv="X-UA-Compatible" content="ie=edge"> 7 <link rel="stylesheet" href="style.css"> 8 <link rel="icon" type="image/png" href="favicon.png"> 9 <title>evenfri - philosophy</title> 10 </head> 11 12 <body> 13 <div class="container"> 14 <h1><a href="index.html">evenfri</a></h1> 15 16 <div class="nav"> 17 < <a href="index.html">home</a> > 18 </div> 19 20 <div style="text-align: center; margin-bottom: 15px;"> 21 <img src="assets/philosophy.png" style="max-width: 50%; border: 1px solid #000000;"> 22 </div> 23 24 <div class="news-blog-item"> 25 <h3>Personal Principles</h3> 26 <p> 27 non gnu when possible<br> 28 fuck sysd, sudo, standartisation<br> 29 </p> 30 </div> 31 <br> 32 33 <div class="news-blog-item"> 34 <h3>Unix Philosophy</h3> 35 <p><em>"do one thing, but do it well"</em></p> 36 <p>each program should perform only one specific task, but do it as efficiently and well as possible</p> 37 </div> 38 <br> 39 40 <div class="news-blog-item"> 41 <h3>Suckless Philosophy</h3> 42 <p><em>"suckless"</em></p> 43 <p>developing minimalist, clear, and concise software without unnecessary complexity or feature bloat</p> 44 </div> 45 <br> 46 47 <div class="news-blog-item"> 48 <h3>KISS Principle</h3> 49 <p><em>"keep it simple, stupid"</em></p> 50 <p>the simplicity principle: systems work best if they are kept simple rather than made unnecessarily complex</p> 51 </div> 52 <br> 53 54 <div class="news-blog-item"> 55 <h3>Free Software Philosophy</h3> 56 <p><em>"propiritality is bad, sin, ugh"</em></p> 57 <p>rejecting proprietary software in favor of free and open-source solutions that respect user freedom</p> 58 </div> 59 <br> 60 61 <div class="news-blog-item"> 62 <h3>Anti-AI Philosophy</h3> 63 <p><em>"no use ai"</em></p> 64 <p>the principle of rejecting artificial intelligence in favor of manual development and crafting authentic code</p> 65 </div> 66 67 </div> 68 </body> 69 </html>