I hereby claim:
- I am dguerri on github.
- I am dguerri (https://keybase.io/dguerri) on keybase.
- I have a public key whose fingerprint is 7F4E A5B5 E85D 6EBA 9818 80DC 82F4 194D 4E56 C921
To claim this, I am signing this object:
#!/bin/bash | |
# | |
# This file is part of the UniCloud project | |
# | |
# Copyright (C) 2013 Unidata S.p.A. (Davide Guerri - [email protected]) | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. |
{ | |
"AWSTemplateFormatVersion": "2010-09-09", | |
"Description": "AWS CloudFormation template for Unifi beta 3.", | |
"Parameters": { | |
"KeyName": { | |
"Type": "String", | |
"Description": "Name of an existing EC2 KeyPair to enable SSH access to the instances" | |
}, | |
"InstanceType": { | |
"Description": "WebServer EC2 instance type", |
#!/bin/bash | |
# | |
# This file is part of fi-backup. | |
# | |
# fi-backup is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# fi-backup is distributed in the hope that it will be useful, |
#!/bin/bash | |
# | |
# VirSH Simple Backup ([email protected]) | |
# | |
# Version 1.0.1 - 20130301 (1362127750) | |
# | |
VIRSH="/usr/bin/virsh" | |
QEMU_IMG="/usr/bin/qemu-img" | |
backup_dir="/backups" |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/python | |
# (c) 2013, Cove Schneider | |
# (c) 2014, Joshua Conner <[email protected]> | |
# (c) 2014, Pavel Antonov <[email protected]> | |
# (c) 2015, Davide Guerri <[email protected]> | |
# | |
# This file is part of Ansible, | |
# | |
# Ansible is free software: you can redistribute it and/or modify |
#!/bin/bash | |
# | |
# Copy applications and their dependencies (e.g. for chroot envs) | |
# | |
# | |
# Copyright Davide Guerri <[email protected]> | |
# | |
# Licensed to the Apache Software Foundation (ASF) under one | |
# or more contributor license agreements. See the NOTICE file | |
# distributed with this work for additional information |
#!/bin/sh | |
set -ue | |
[ "$#" -lt 2 ] && { echo "Syntax: $0 <filename> <key>"; exit 1; } | |
filename="$1" | |
key="$2" | |
# Compose the key by repeating the user input until we have 32 characters (64 hex digits) |
// clang -Wall -fmodules -framework Foundation i2c-rw.m -o ./i2c-rw && sudo ./i2c-rw | |
@import Darwin; | |
@import Foundation; | |
@import IOKit; | |
typedef CFTypeRef IOAVServiceRef; | |
extern IOAVServiceRef IOAVServiceCreate(CFAllocatorRef allocator); | |
extern IOReturn IOAVServiceReadI2C(IOAVServiceRef service, uint32_t chipAddress, | |
uint32_t offset, void *outputBuffer, |