Skip to content

Instantly share code, notes, and snippets.

@Alazoral
Alazoral / schema.json
Last active March 1, 2024 05:59
Proposed Croperation Gin Run API Schema
{
"$ref": "#/definitions/GinningRun",
"definitions": {
"GinningRun": {
"type": "object",
"properties": {
"run_id": {
"type": "string",
"description": "The external unique identifier for the ginning run"
},

Keybase proof

I hereby claim:

  • I am alazoral on github.
  • I am lfs (https://keybase.io/lfs) on keybase.
  • I have a public key ASBBD_O8GNKXtUFH1K6A8nW_rSTliX6IJW1o6k0aqrJYjgo

To claim this, I am signing this object:

import java.awt.BorderLayout;
import javax.swing.JEditorPane; import javax.swing.JFrame; import javax.swing.JScrollPane; import javax.swing.JSplitPane;
import javax.swing.SwingUtilities; import javax.swing.text.html.HTMLEditorKit; import javax.swing.text.html.StyleSheet;
/** * Test application for HTMLEditorKit bug. */ public class HTMLEditorKitBugTest { public static void main(String[] args)
{ SwingUtilities.invokeLater(new Runnable() { @Override public void run() { new HTMLEditorKitBugTest().run();} }); }
private void run() { JSplitPane split = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT); split.setLeftComponent(new
JScrollPane(createCustomisedEditorPane())); split.setRightComponent(new JScrollPane(createNormalEditorPane()));