Skip to content

Instantly share code, notes, and snippets.

View avojak's full-sized avatar
Drinking coffee

Andrew Vojak avojak

Drinking coffee
View GitHub Profile

Keybase proof

I hereby claim:

  • I am avojak on github.
  • I am avojak (https://keybase.io/avojak) on keybase.
  • I have a public key whose fingerprint is 25AD 1B61 8721 62FA 2C46 3EA1 8051 CE7A 90AD 4185

To claim this, I am signing this object:

@avojak
avojak / SWTTestApp.java
Created September 15, 2018 03:49
Basic test application for SWT
public class SWTTestApp {
private final Display display;
private final Shell shell;
public SWTTestApp() {
display = new Display();
shell = new Shell(display);
shell.setLayout(new FillLayout());
shell.setSize(new Point(400, 400));
---
- name: "Configure prerequisites for Docker host"
hosts: localhost
connection: local
tasks:
- name: Uninstall podman
yum:
name: podman
state: absent