Skip to content

Instantly share code, notes, and snippets.

View copley's full-sized avatar

Max Copley. SWEN Graduate from VUW (Wellington, NZ) copley

View GitHub Profile
@copley
copley / English for Writing Research Papers Useful Phrases
Created November 16, 2017 22:23
English for Writing Research Papers Useful Phrases
English for Writing Research Papers
Useful Phrases
Many non-native researchers begin their writing career by reading extensively about their
topic in English, and noting down useful generic phrases that they can then ‘paste’ into
their own work. You can use such phrases as a template / structure for your paper into
which you insert your own data. You at least know that these ready-made phrases are in
correct English. You do not risk being accused of plagiarism because of the very generic
nature of the phrases.
This document presents lists of frequently used phrases that have a general acceptance in
all disciplines that you can use in specific sections of your paper. This means that they
@copley
copley / Current AWS Public Whitepapers as at 16 Nov 17
Last active November 16, 2017 00:15
Current AWS Public Whitepapers as at 16 Nov 17
Current AWS Public Whitepapers as at 16 Nov 17
Introduction to AWS
Overview of Amazon Web Services (April 2017) PDF | Kindle
AWS Storage Services Overview (December 2016) PDF | Kindle
AWS Well-Architected Framework (November 2016) PDF | Kindle
An Overview of the AWS Cloud Adoption Framework (February 2017) PDF | Kindle
AWS Security Best Practices (August 2016) PDF | Kindle
How AWS Pricing Works (March 2016) PDF | Kindle
Architecting for the Cloud: AWS Best Practices (February 2016) PDF | Kindle
The Business Value of AWS: Succeeding at Twenty-First Century Business Infrastructure (June 2015) PDF
@copley
copley / The Story of Amazon. The Everything Store by Brad Stone.
Last active October 23, 2017 07:07
The Story of Amazon. The Everything Store by Brad Stone.
The Everything Store
https://prachititalathi.files.wordpress.com/2014/04/the-everything-store-jeff-bezos-and-the-age-of-amazon
Remember to include .pdf at the end of the URL.
@copley
copley / AWS Leadership Principles
Created October 23, 2017 06:59
AWS Leadership Principles
Leadership Principles
Our Leadership Principles aren’t just a pretty inspirational wall hanging. These Principles work hard, just like we do. Amazonians use them, every day, whether they’re discussing ideas for new projects, deciding on the best solution for a customer’s problem, or interviewing candidates. It’s just one of the things that makes Amazon peculiar.
Customer Obsession
Leaders start with the customer and work backwards. They work vigorously to earn and keep customer trust. Although leaders pay attention to competitors, they obsess over customers.
Ownership
Leaders are owners. They think long term and don’t sacrifice long-term value for short-term results. They act on behalf of the entire company, beyond just their own team. They never say “that’s not my job."
Invent and Simplify
Leaders expect and require innovation and invention from their teams and always find ways to simplify. They are externally aware, look for new ideas from everywhere, and are not limited by “not invented here". Because we
@copley
copley / AWS Blog Eight Years (And Counting) of Cloud Computing
Created October 23, 2017 06:57
AWS Blog Eight Years (And Counting) of Cloud Computing
AWS Blog
Eight Years (And Counting) of Cloud Computing
by Jeff Barr | on 14 MAR 2014 | in Amazon DynamoDB, Amazon EC2, Amazon Elastic MapReduce, Amazon S3 | Permalink |
We launched Amazon S3 on March 14, 2006 with a press release and a simple blog post. We knew that the developer community was interested in and hungry for powerful, scalable, and useful web services and we were eager to see how they would respond.
S3 and the Amazon Values
Almost every company has a mission statement of some kind. At Amazon.com, we are guided by our Leadership Principles. We use these principles as part of the interviewing process, and revisit them during our annual reviews. I thought back to the launch of S3 and the long string of additional features that we have added to it since then, and tried to match them up to some of the leadership principles.
Customer Obsession – Before we wrote a line of code, we talked to lots of potential customers so that we could have a good understanding of the features that they would like
@copley
copley / How to rename .text to .csv Sys Admin BashScriptFile renaming
Created October 15, 2017 07:20
How to rename .text to .csv Sys Admin BashScript
How to rename .text to .csv
You need to loop over all files
for f in *.txt; do
mv "$f" "${f%.txt}.csv"
done
If you have files with names starting with a . as well you might need to run
@copley
copley / README.md
Created October 14, 2017 09:07 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


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.

For more about AWS and AWS Certifications and updates to this Gist you should follow me @leonardofed


@copley
copley / gist:3a9642d747c8e53b9139c6212bcba3a7
Created October 7, 2017 10:11
Solution Architecture vs. Software Architecture
https://dzone.com/articles/solution-architecture-vs-software-architecture
This post dives into distinct architecture domains, like DevOps and data architecture, how they interconnect, and their importance in overall solution architecture.
Aug. 04, 17 · DevOps Zone
Like (105)
In my tenure as a solution architect in financial services working for a global consulting firm, I’ve often been caught in a dilemma. This dilemma is whether to apply recognized industry standards to developing solution architecture or to leverage clients’ solution architecture operational model and content. On the one hand, the value proposition of an architecture consultant is not just getting a job done, but also to help improve clients’ architecture maturity. On the other hand, firms’ architecture review boards are set in their ways of using their own architecture content, such as solution architecture templates and models. To my surprise, I have observed a common phenomenon in many financial firms large and small with various degr
@copley
copley / gnuplot
Last active September 30, 2017 07:19
gnuplot
http://lowrank.net/gnuplot/datafile-e.html
Data Format Column using with
(X,Y) data X Y 1:2 lines, points, steps,
linespoints, boxes, etc.
Y has an error of dY X Y dY 1:2:3 yerrorbars
X has an error of dX X Y dX 1:2:3 xerrorbars
Y has an error of dY, and
X has an error of dX X Y dX dY 1:2:3:4 xyerrorbars
Y has a range of [Y1,Y2] X Y Y1 Y2 1:2:3:4 yerrorbars
@copley
copley / Auto Record Screencast
Created September 2, 2017 07:36
How to Automate Shutdown of Recording Screencasts
Purpose: If a screencast is needed for a long time e.g. six hours. and no auto shutdown option is available.
1. Screen Cast with SimpleScreenRecorder
2. Set up Python script.
'''
import time
from pyautogui import typewrite, hotkey
#typewrite('a')