VMWare Fusion 13 is now released. Read Vagrant and VMWare Fusion 13 Player on Apple M1 Pro for the latest.
This document summarizes notes taken while to make the VMWare Tech preview work on Apple M1 Pro, it originated
VMWare Fusion 13 is now released. Read Vagrant and VMWare Fusion 13 Player on Apple M1 Pro for the latest.
This document summarizes notes taken while to make the VMWare Tech preview work on Apple M1 Pro, it originated
I personally prefer [Semver][]. I think it's reasonable, simple, and makes sense. But as a good Haskell citizen, I'd like to be [PVP][]-compliant as well. Here is a bit of a graphic showing how the two systems are almost the same:
PVP: A . B . C . ...
Semver: Major . Minor . Patch
^ ^ ^
| | |
| | ` increment for other changes
| |
| ` increment on non-breaking change
# For creating the lambda functions, see instructions here: https://github.com/pjodouin/ansible-lambda | |
# Run this playbook with: | |
# ansible-playbook cloudwatch_events.yml --extra-vars debug=True | |
# Ansible CloudWatch Event module PR: https://github.com/ansible/ansible-modules-extras/pull/2101 | |
# Ansible Lambda modules PR: https://github.com/ansible/ansible-modules-extras/pull/1890 | |
--- | |
- name: CloudWatch Events | |
hosts: localhost | |
connection: local | |
gather_facts: False |
""" | |
The State design pattern. | |
In Python this is done dynamically by changing the __class__ attribute. | |
Author : Anand B Pillai <[email protected]> | |
License: Public Domain | |
Ref: http://harkablog.com/dynamic-state-machines.html |
Place the service file (or a link to it) in /etc/systemd/system/ Place the watchdogged.py file somewhere ( and change the ExecStart portion in the .service to point at the file )
then do systemctl daemon-reload
followed by systemctl start watchdogged.service
After this you can watch the progress using journalctl --follow -u watchdogged.service
change the PROBABILITY variable to something else to watch it faster/later or succeed.
#!/usr/bin/env bash | |
progname=$(basename $0) | |
version="1.0 (2014-08-17)" | |
step=2 | |
function create_hash { | |
openssl dgst -sha1 -binary <<< "$1" | xxd -p | |
} |
#include <Python.h> | |
/***********************************************************/ | |
/* define logging function and logtypes for python.logging */ | |
/* by H.Dickten 2014 */ | |
/***********************************************************/ | |
enum logtypes {info, warning, error, debug}; | |
static void log_msg(int type, char *msg) | |
{ |
#!/usr/bin/python | |
# Quick and dirty demonstration of CVE-2014-0160 by Jared Stafford ([email protected]) | |
# The author disclaims copyright to this source code. | |
# Mirror from http://s3.jspenguin.org/ssltest.py | |
import sys | |
import struct | |
import socket | |
import time |
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
use Irssi; | |
our $VERSION = 0.1; | |
our %IRSSI = ( | |
authors => 'Fredrik "Demonen" Vold', | |
contact => '[email protected]', | |
name => 'mark', |