Skip to content

Instantly share code, notes, and snippets.

@cathcart
cathcart / Dockerfile
Created June 1, 2015 15:42
Dockerfile for a mono based docker image of Jackett
FROM mono:latest
RUN apt-get update
RUN apt-get -y -q install git
RUN apt-get -y -q install libcurl4-openssl-dev
RUN git clone https://github.com/zone117x/Jackett.git
RUN apt-get remove -y --auto-remove git
WORKDIR /Jackett/src
RUN mkdir packages
WORKDIR /Jackett/src/packages
@tsiege
tsiege / The Technical Interview Cheat Sheet.md
Last active May 19, 2024 17:40
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

ANNOUNCEMENT

I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!






\

@redacted
redacted / gnuplot_folder.py
Created March 5, 2012 14:58
Create .pngs from every valid file in a folder. run with -h for config
#!/usr/bin/env python
# encoding: utf-8
import os
import shlex
import subprocess
import optparse
GNP_TEMPLATE="""
set term png size 800,600
@redacted
redacted / README.mkd
Created October 4, 2011 16:15
Generate and email SLURM report

Generate and email report on SLURM jobs that exist in database.

Bonus tip: ssh cluster "python slurm_report.py" - no need to log in!

All credit to cathcart