Skip to content

Instantly share code, notes, and snippets.

View mperov's full-sized avatar
🏠
Working from home

Maksim Perov mperov

🏠
Working from home
View GitHub Profile
@mr-c
mr-c / cwl-runner
Last active February 4, 2023 09:21
Guide to install and use `toil-cwl-runner` on Snellius
#!/bin/bash
# Convenience for executing Common Workflow Language workflows on the Snellius supercomputer
# using toil-cwl-runner from http://toil.ucsc-cgl.org/
# This script accepts all toil-cwl-runner options:
# https://toil.readthedocs.io/en/latest/running/cwl.html#detailed-usage-instructions
# Example usage:
# cwl-runner my_workflow.cwl my_inputs.yaml
# will read the CWL workflow description "my_workflow.cwl" using the inputs specified
@freedomlang
freedomlang / install-ffmpeg-centos.sh
Last active December 23, 2023 21:43 — forked from cbosco/install-ffmpeg-centos.sh
Compile ffmpeg in CentOS 7
#!/bin/bash
if [ "`/usr/bin/whoami`" != "root" ]; then
echo "You need to execute this script as root."
exit 1
fi
###############################################################################
# ffmpeg installer for centos 7
# based on instructions at https://trac.ffmpeg.org/wiki/CompilationGuide/Centos
@thecatontheflat
thecatontheflat / .docker-private-registry-with-read-write-control.md
Created June 10, 2019 15:19
Run docker private registry with read/write access control
@DavidPesticcio
DavidPesticcio / docker-registry-delete-image.txt
Created June 28, 2018 20:47
remove images from docker registry v2.4
How to delete an image tag/image from docker registry v2.4
1) Re/Start registry with delete option enabled
Edit the config.yml
storage:
delete:
enabled: true