##Branching/tagging Github Wikis##
###Creating an HPI Wiki release###
Download HPI
git clone https://github.com/tsgrp/hpi.git hpi
Download the HPI Wiki - this url is found by adding wiki
to the repository Git url:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>Single-Column Responsive Email Template</title> | |
<style> | |
@media only screen and (min-device-width: 541px) { | |
.content { |
sync: function (method, model, options) { | |
Backbone.sync.call(method, model, options); | |
} | |
//from http://stackoverflow.com/a/18839219/1377866 |
div.typeahead-dropdown{ | |
padding-top: 0px; | |
padding-bottom: 0px; | |
width: 100%; | |
background-color: #fff; | |
} | |
.form-horizontal > .typeahead-group{ | |
margin-right: 0px; | |
margin-left: 0px; |
{ | |
"AL": "Alabama", | |
"AK": "Alaska", | |
"AS": "American Samoa", | |
"AZ": "Arizona", | |
"AR": "Arkansas", | |
"CA": "California", | |
"CO": "Colorado", | |
"CT": "Connecticut", | |
"DE": "Delaware", |
##Branching/tagging Github Wikis##
###Creating an HPI Wiki release###
Download HPI
git clone https://github.com/tsgrp/hpi.git hpi
Download the HPI Wiki - this url is found by adding wiki
to the repository Git url:
zookeeper: | |
image: "987737556516.dkr.ecr.us-east-1.amazonaws.com/tsgrp/zookeeper" | |
cpu_shares: 100 | |
ports: | |
- "2181:2181" | |
container_name: "zookeeper" | |
hostname: "zookeeper" | |
solr1: | |
image: solr |
#!/bin/bash | |
# expects the lambda function .py file to be in the same directory as this script. | |
# based off of Amazon's official documentation: | |
# http://docs.aws.amazon.com/lambda/latest/dg/with-s3-example-deployment-pkg.html#with-s3-example-deployment-pkg-python | |
# get the lambda function | |
lambda_func_file=$1 | |
lambda_func="${lambda_func_file%.*}" | |
# exit if no file specified | |
[[ -z "$1" ]] && { echo "Lambda function is empty" ; exit 1; } | |
# generate a deployment timestamp |
# recipes/default.rb | |
# Cookbook Name:: apache_solr | |
# Recipe:: default | |
# | |
# Copyright 2016, Michael Blum | |
# | |
if node['solr']['install_java'] | |
include_recipe 'java_se' | |
end |
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.
Index:
package size_checker; | |
import java.io.File; | |
import java.io.FileInputStream; | |
import java.io.FileNotFoundException; | |
import java.io.IOException; | |
import java.io.InputStream; | |
public class SizeChecker { | |