This a collection of interesting links found in The Imposter's Handbook by Rob Conery.
Content:
from collections import defaultdict | |
class Graph: | |
def __init__(self): | |
self.neighbours=defaultdict(list) | |
def addEdge(self,u,v): | |
self.neighbours[u].append(v) | |
self.neighbours[v].append(u) |
a4b.amazonaws.com | |
access-analyzer.amazonaws.com | |
account.amazonaws.com | |
acm-pca.amazonaws.com | |
acm.amazonaws.com | |
airflow-env.amazonaws.com | |
airflow.amazonaws.com | |
alexa-appkit.amazon.com | |
alexa-connectedhome.amazon.com | |
amazonmq.amazonaws.com |
apiVersion: apps/v1beta1 | |
kind: Deployment | |
metadata: | |
name: azure-container-service-poc | |
spec: | |
replicas: 1 | |
strategy: | |
rollingUpdate: | |
maxSurge: 1 | |
maxUnavailable: 1 |
curl -O https://raw.githubusercontent.com/spinnaker/halyard/master/install/stable/InstallHalyard.sh | |
sudo bash InstallHalyard.sh | |
hal config deploy edit --type localdebian | |
hal config storage edit --type redis | |
echo "host: 0.0.0.0" | tee \ |
This a collection of interesting links found in The Imposter's Handbook by Rob Conery.
Content:
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
Picking the right architecture = Picking the right battles + Managing trade-offs
#!/usr/bin/perl | |
# Copyright (c) 2015, Paul Ford, [email protected] | |
# All rights reserved. | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions | |
# are met: | |
# | |
# 1. Redistributions of source code must retain the above copyright |
license: apache-2.0 |
/** | |
* Convert an instance of google.visualization.DataTable to CSV | |
* @param {google.visualization.DataTable} dataTable_arg DataTable to convert | |
* @return {String} Converted CSV String | |
*/ | |
function dataTableToCSV(dataTable_arg) { | |
var dt_cols = dataTable_arg.getNumberOfColumns(); | |
var dt_rows = dataTable_arg.getNumberOfRows(); | |
var csv_cols = []; |