- Aecom - https://aecom.jobs/jobs/?location=edinburgh
- Aquila Insight - http://www.aquilainsight.com/careers/
- Almis - https://www.almis.co.uk/careers/
- Amazon - http://www.amazondc.com/
- AMTSybex - https://www.amt-sybex.com/recruitment/
- Apointedd - https://www.appointedd.com/jobs
- Astrosat - https://astrosat.space/career/
- Attacat - http://www.attacat.co.uk/jobs
Those are my personal notes on AWS Solution Architect certification preparation. Hope you find them usefull.
To pass AWS certification, you should have:
- Sound knowledge about most of the AWS services ( EC2, VPC, RDS, Cloudfront, S3, Route53 etc,)
- Hands on experience with AWS services.
This file contains 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
'use strict'; | |
/*****************NATIVE forEACH*********************/ | |
Array.prototype.myEach = function(callback) { | |
for (var i = 0; i < this.length; i++) | |
callback(this[i], i, this); | |
}; | |
//tests |
At the top of the file there should be a short introduction and/ or overview that explains what the project is. This description should match descriptions added for package managers (Gemspec, package.json, etc.)
Show what the library does as concisely as possible, developers should be able to figure out how your project solves their problem by looking at the code example. Make sure the API you are showing off is obvious, and that your code is short and concise.