Skip to content

Instantly share code, notes, and snippets.

View Mostafa-Hamdy-Elgiar's full-sized avatar

Mostafa Hamdy Elgiar Mostafa-Hamdy-Elgiar

  • CITC - Mansoura University
  • Mansoura - Egypt
View GitHub Profile
@jage
jage / office-dashboard-terminal.yml
Last active October 15, 2021 09:33
Ansible playbook to schedule display sleep (macOS/OS X)
---
- hosts: office-dashboard-terminal
become: yes
tasks:
- name: Ensure displays are up during office hours
cron:
name="Activate display"
minute="0"
hour="8"
weekday="1-5"
@dreikanter
dreikanter / gzip-demo.py
Created May 30, 2012 10:01
Create tar.gz archive with Python, unpack files back and check the result
# Python gzip demo: create and unpack archive
import os
import random
import string
import glob
import tarfile
import shutil
import filecmp