I hereby claim:
- I am mikefaille on github.
- I am mikefaille (https://keybase.io/mikefaille) on keybase.
- I have a public key ASA1rf21Xu9jTvn3fwNyaRLHV_EfpDh2klogAevLr5jDOQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| declare -A SEASON_COUNTER | |
| for fn in `cat comptagevelo2009-20162.csv`; do | |
| RAW_BIKE_COUNTER=$(echo $fn | awk -F '/' '{print $3}' | cut -b 12-) | |
| MY_DATE_STR=$(cut --output-delimiter=" " -f 3,2,1 -d '/' <(echo $fn | head -c 10) ) | |
| MY_DATE=($MY_DATE_STR) |
| ;;; ox-confluence-en.el --- Enhanced Confluence Wiki Back-End for Org Export Engine | |
| ;; Copyright (C) 2015, Correl Roush | |
| ;; Author: Correl Roush <[email protected]> | |
| ;; Keywords: outlines, confluence, wiki | |
| ;; This file is not part of GNU Emacs. | |
| ;; This program is free software: you can redistribute it and/or modify |
| #!/usr/bin/env python | |
| # Adapted from Mark Mandel's implementation | |
| # https://github.com/ansible/ansible/blob/devel/plugins/inventory/vagrant.py | |
| import argparse | |
| import json | |
| import paramiko | |
| import subprocess | |
| import sys | |
| --- | |
| # ^^^ YAML documents must begin with the document separator "---" | |
| # | |
| #### Example docblock, I like to put a descriptive comment at the top of my | |
| #### playbooks. | |
| # | |
| # Overview: Playbook to bootstrap a new host for configuration management. | |
| # Applies to: production | |
| # Description: | |
| # Ensures that a host is configured for management with Ansible. |
#System Design Cheatsheet
Picking the right architecture = Picking the right battles + Managing trade-offs
##Basic Steps
| test |
| public class HSVtoRGB { | |
| public static void main(String[] args) { | |
| float []hsbVal = null; | |
| hsbVal = RGBtoHSBfloat(180, 58, 58, hsbVal ); | |
| int rgb = HSBtoRGB(hsbVal[0], hsbVal[1], hsbVal[2]); | |
| int red = (rgb >> 16) & 0xFF; |
| RemoveFlows = #ofp_message{ | |
| version = 3, | |
| xid = 200, | |
| body = #ofp_flow_mod{ | |
| cookie = <<0:64>>, | |
| cookie_mask = <<0:64>>, | |
| table_id = 1, | |
| command = delete, | |
| idle_timeout = 30000, | |
| hard_timeout = 60000, |