Skip to content

Instantly share code, notes, and snippets.

View wiverson's full-sized avatar

Will Iverson wiverson

View GitHub Profile
  • Pandoc - Universal file converter. E.g. Markdown to ePub, Word and HTML.
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.changenode</groupId>
<artifactId>testclient</artifactId>
<version>1.0-SNAPSHOT</version>
@wiverson
wiverson / modern-hosting-2021.md
Last active June 6, 2024 20:15
List of free hosting services (that also offer options to scale up for $) in 2021

Italics means the text/description is directly from the vendor, usually the slug line on their home page.

Non-italics means it's my comments/editorial.

Static Sites

  • Surge
    • Static web publishing for Front-End Developers
    • Simple, single-command web publishing. Publish HTML, CSS, and JS for free, without leaving the command line.
@wiverson
wiverson / HOWTO-java-macos.md
Last active November 21, 2024 14:01
HOWTO make a Java Swing app look great on macOS

All of this has been confirmed to work on macOS Big Sur (11.2.3) and JDK 16.

macOS Menu Bar

To put the menu bar at the top of the screen, use the following

System.setProperty("apple.laf.useScreenMenuBar", "true");

// Use this method to set the menu bar.
@wiverson
wiverson / vanilla-js-libraries.md
Last active January 27, 2022 19:09
Vanilla JavaScript libraries. Add to your JavaScript project without bringing in a full JavaScript framework.
@wiverson
wiverson / general-javascript-resources.md
Last active October 15, 2023 00:01
JavaScript resources, but with a very opinionated take - small, easy to use frameworks that offer clean integration with server-side frameworks (in particular, Maven/Java).