Skip to content

Instantly share code, notes, and snippets.

View himslm01's full-sized avatar

Mark Himsley himslm01

  • UK
View GitHub Profile
@himslm01
himslm01 / NDI_00_README.MD
Last active June 24, 2022 10:25
Include libndi_newtek in FFmpeg master branch

Include libndi_newtek in FFmpeg master branch

Inspired by this gist, this patch set will apply to FFmpeg Git branch master (as of 23-Jun-2022).

patch -p1 < NDI_*.patch
@himslm01
himslm01 / App.java
Last active June 17, 2020 06:44
Investigation into Java Garbage collection with Kubernetes CPU and memory limits
/**
* Copyright (c) 2020 Mark Himsley
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
@himslm01
himslm01 / README.TXT
Last active July 28, 2019 15:51
MinIO Docker Lets Encrypt Certbot
Copy certbot certificate into Docker host:
$ scp etc/live/<domain>/fullchain.pem <host>:~/minio_certs/public.crt
$ scp etc/live/<domain>/privkey.pem <host>:~/minio_certs/private.key
Test with:
$ docker run -it --rm --name minio \
-p 9000:9000 \
-v /home/$USER/minio_certs:/certs \