Firmware Audited: Build date: Mon Aug 28 07:08:05 CDT 2017 Build host: ausbuildlifesizecodecicon02 (127.0.1.1) Build location: http://artifacts.lifesize.com/artifactory/lifesize.icon.production/lifesize.icon.production.master.sequoia.full-3.4.0.2268.tar.gz Build version: LS_RM3_3.4.0 (2268)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git_repository( | |
name = "io_bazel_rules_go", | |
remote = "https://github.com/bazelbuild/rules_go.git", | |
tag = "0.4.4", | |
) | |
load( | |
"@io_bazel_rules_go//go:def.bzl", | |
"go_repositories", | |
"new_go_repository", | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Script to automate the provisioning of a new SSH certificate onto a yubikey device. | |
set -e | |
set -u | |
set -o pipefail | |
for path in "/usr/lib64/opensc-pkcs11.so" \ | |
"/usr/lib/opensc-pkcs11.so" \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python3 | |
import cv2 | |
class PunchCard(object): | |
def __init__(self, x_offset=131, y_offset=141, y_scale=52, x_scale=153): | |
self.x_offset = x_offset | |
self.y_offset = y_offset | |
self.x_scale = x_scale | |
self.y_scale = y_scale |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "ergodox_ez.h" | |
#include "debug.h" | |
#include "action_layer.h" | |
#include "version.h" | |
#include "keymap_german.h" | |
#include "keymap_nordic.h" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[default] | |
region = us-west-2 | |
output = json | |
[profile example] | |
role_session_name = example | |
mfa_serial = arn:aws:iam::567582265868:mfa/example | |
credential_process = bash -c "~/.aws/aws-mfa.sh example path/to/credentials.gpg" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- hosts: | |
tasks: | |
- apt: | |
update_cache: true | |
name: ansible | |
state: present | |
- name: Install trusted author PGP keys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
reverted: | |
--- b/aliases | |
+++ a/aliases | |
@@ -1,2 +1,3 @@ | |
# See man 5 aliases for format | |
postmaster: root | |
+root: [email protected] | |
reverted: | |
--- b/apparmor.d/abstractions/tor | |
+++ a/apparmor.d/abstractions/tor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Projects | |
* Win a black badge at defcon | |
* place in a FPV quadcopter race | |
* Troll router that spams endless hotspot names | |
* markdown to json blog engine overhaul for rant | |
* varnish/jsdom proxy | |
* auto screen locking with BLE/HID module | |
* migrate all personal services to terraform/kubernetes | |
* 3D code data wallpaper generator |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- hosts: all | |
become: yes | |
become_user: "{{ lookup('env','SUDO_USER') }}" | |
tasks: | |
- name: Display OS Details | |
block: | |
- debug: | |
var: ansible_distribution | |
verbosity: 1 |