Mercurial Hosting > reactionary
view src/java_fork.html.luan @ 91:76baf48ea36b
add translation
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 02 May 2025 17:17:52 -0600 |
parents | 0d1a0fa301ea |
children |
line wrap: on
line source
local Luan = require "luan:Luan.luan" local error = Luan.error local Io = require "luan:Io.luan" local Site_translator = require "luan:gpt/Site_translator.luan" local get_lang = Site_translator.get_lang or error() local text_writer = Site_translator.text_writer or error() 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 = text_writer() %> <!doctype html> <html lang="<%=get_lang()%>"> <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="https://mikraite.arkian.net/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> <li>Swing JLabel should have selectable and copyable text.</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