Skip to content

Instantly share code, notes, and snippets.

View Potherca's full-sized avatar
🤔
I wonder what this button does…

Ben Peachey Potherca

🤔
I wonder what this button does…
View GitHub Profile
@Potherca
Potherca / docker-publish.yml
Created May 20, 2021 10:45
Example of GitHub Action to build and push Docker images to GitHub Registry
name: Build and publish development Docker image
on:
push:
tags:
- 'v*.*.*'
jobs:
docker-build:
runs-on: ubuntu-latest

Voor de mensen die te lui zijn om te blijven klikken:

  • Adem diep in en dan weer uit
  • Als je moe bent, ga naar bed toe
  • Bak niet in boter maar in olie
  • Begin je ochtend met bewegen
  • Bel een keer een oude vriend op
  • Bel een vriend tijdens het wandelen
  • Doe een visje door de pasta
  • Doe je werk een keertje staand
@Potherca
Potherca / README.md
Last active February 18, 2021 09:45
All MaterialDesign sprites/icons available in PlantUML
@Potherca
Potherca / dabblet.css
Last active June 3, 2022 11:32
Pure HTML/CSS BASH logo (WIP)
/**
* Pure HTML/CSS BASH logo (WIP)
*/
@import url('-https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500&display=swap');
html {
transform: scale(0.5)
}
body {
@Potherca
Potherca / README.md
Last active March 15, 2023 09:37
Bookmarklet for Pinguin Radio

This gist contains JS code that can be used as a bookmarklet to change the new (awesome!) Pinguin Radio website to only display the audio player.

Before

Screenshot at 2023-03-15

After

Screenshot at 2023-03-15

@Potherca
Potherca / README.md
Last active December 30, 2020 10:39
Example JS code for https://tixy.land
@Potherca
Potherca / index.html
Created November 24, 2020 20:37
Warner Bros Cartoons Opening Titles
<base href="https://www.closinglogos.com/page/Looney_Tunes_IDs">
<h1>Warner Bros Cartoons Opening Titles</h1>
<h2><span>1st Logo</span><span>1930</span></h2>
<img src="/images/c/ca/D8GRkegIVUr5QRLPz68zug13084.jpeg"/>
<img src="/images/1/17/2534c53da7f68f8e0fe3cd03f26d3c90.jpeg"/>
<img src="/images/0/02/VwNAulJwe0fGIPCqGZbbnQ68032.png"/>
<img src="/images/3/31/0add3a153d3a8fa36c54915c89b6274a.png"/>
@Potherca
Potherca / implementation-checklist.md
Last active March 17, 2021 10:28
Plan of Attack / Work Breakdown Checklist

Plan of Attack / Work Breakdown Checklist

Before starting work on a ticket, ask yourself the following questions:

  1. Who will benefit by the implementation of the ticket?
    The end user? Other developers? Other systems?

  2. What do you need to edit in the code to implement the ticket?
    Which classes or components need to be touched?

@Potherca
Potherca / compile-lynx-wasm.sh
Last active April 13, 2024 16:05
Steps to compile the Lynx web browser to Web Assembly
# Sources used in figuring this out:
#
# - https://developer.mozilla.org/en-US/docs/WebAssembly/C_to_wasm
# - https://emscripten.org/docs/compiling/Building-Projects.html#building-projects
# Set up Emscripten SDK
git clone https://github.com/emscripten-core/emsdk.git
cd emsdk/
./emsdk install latest
./emsdk activate latest