Skip to content

Instantly share code, notes, and snippets.

View trek-e's full-sized avatar

Tom Boucher trek-e

View GitHub Profile
@trek-e
trek-e / VALIDATION-CHECKLIST.md
Created February 10, 2026 22:13
Coincert v0.8.0 Build 36 — TestFlight Validation Checklist (122 test cases)

Phase 23: Feature Validation Checklist

Instructions

Test each item on the specified platform(s). Mark Pass/Fail in the rightmost column. Complete structured checklist first, then exploratory testing. Document issues with screenshots in the Notes column.

Build Info

  • Version: [to be filled after archive]
  • Build: [to be filled after archive]
@trek-e
trek-e / docker.yml
Created April 1, 2019 22:17 — forked from rbq/docker.yaml
Install Docker CE on Ubuntu using Ansible
---
- hosts: all
tasks:
- name: Install prerequisites
apt: name={{item}} update_cache=yes
with_items:
- apt-transport-https
- ca-certificates
- curl
- software-properties-common