Skip to content

Instantly share code, notes, and snippets.

@foocp
foocp / lynda-dl.sh
Last active July 12, 2017 13:52 — forked from sdglhm/lynda-dl.sh
#!/bin/bash
echo "Please enter your Lynda login username, followed by [ENTER]:"
read username
echo "Please enter your Lynda login password, followed by [ENTER]:"
read password
echo "Please enter your tutorial link to download, followed by [ENTER]:"
read dl_link
echo -e '\n\n\n'
@foocp
foocp / apache_status.py
Created March 28, 2017 12:02 — forked from ninjix/apache_status.py
Simple script for monitoring Apache2 mod_status pages. Designed for Zabbix usage.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Quick way to monitor Apache mod_status. Designed for use with Zabbix.
"""
import sys
import urllib2
import argparse