Mercurial Hosting > reactionary
view src/java_fork.html.luan @ 44:5b4d5cf453a8
start bash
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 04 Jan 2024 18:27:05 -0700 |
parents | c385a4f75b10 |
children | 7c496678f32a |
line wrap: on
line source
local Luan = require "luan:Luan.luan" local error = Luan.error local Io = require "luan:Io.luan" local Http = require "luan:http/Http.luan" local Shared = require "site:/lib/Shared.luan" local head = Shared.head or error() local needed_header = Shared.needed_header or error() return function() Io.stdout = Http.response.text_writer() %> <!doctype html> <html> <head> <% head() %> <title>Reactionary Software - Java Fork</title> <style> li { margin-top: 8px; } </style> </head> <body> <% needed_header() %> <div content> <h1>Java Fork</h1> <p><a href="/java.html">Java 8</a> is good reactionary software but is essentially unsupported. So someone should fork it and maintain and improve it. I suggest these improvements:</p> <ul> <li>Fix inner classes as described <a href="http://www.mikraite.org/Jave-inner-classes-tp3503.html">here</a>.</li> <li>Replace generics with a cleaner solution.</li> <li>Remove static imports.</li> <li>Remove lambda expressions.</li> </ul> <p>There is no need for backward compatibility. People who want that can just use Java 8 as is. The fork is for reactionary programmers who are actively writing code, so the fork should be as clean as possible.</p> </div> </body> </html> <% end