Skip to content

Instantly share code, notes, and snippets.

View sckevmit's full-sized avatar

Szymon Dziech sckevmit

View GitHub Profile

AWS 9 in 2019

aws-certs

aCloudGuru membership - $250/yr. This includes all training courses as well as practice exams.
Cloud Practitioner Exam - $100, Associate Exams - $150, Professional & Specialty Exams - $300.
Total Estimated Cost for all 9 certifications: $2300

  1. Cloud Practitioner
  2. Solutions Architect Associate
@sckevmit
sckevmit / aws-certification.md
Created November 9, 2020 22:03 — forked from miglen/aws-certification.md
AWS Certification guide and notes on how to prepare for the aws associate certification architect, sysops and developer exams


AWS Certification notes

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.
@sckevmit
sckevmit / README.md
Created November 9, 2020 22:02 — 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.


#!/bin/bash
sudo echo "nameserver 10.11.5.19" > /etc/resolv.conf
sudo cat << EOF >> /etc/yum.repos.d/pbench.repo
# Template file to be used with ansible playbook "pbench-repo.yml"
###########################################################################
# pbench "official" repos
# Internal repo
[pbench]
name=Pbench 7Server - x86_64
# Parse results
result = StringIO.StringIO('\n'.join(stdout.split('\n')[1:]))
creader = csv.reader(result)
report = []
for row in creader:
if len(row) >= 1 :
report.append(["single-{}".format(row[1]),row[2]])
report.append(["aggregate-{}".format(row[1]),row[3]])
print report
This file has been truncated, but you can view the full file.
--------------------------------------------------------------------------------
Preparing input task
--------------------------------------------------------------------------------
Input task is:
This file has been truncated, but you can view the full file.
--------------------------------------------------------------------------------
Preparing input task
--------------------------------------------------------------------------------
Input task is:
@sckevmit
sckevmit / cloudstack-sethostname.sh
Created September 22, 2017 10:49 — forked from makuk66/cloudstack-sethostname.sh
dhclient hook for setting the hostname, updating /etc/hosts, and re-generating ssh keys on Ubuntu. Useful for creating CloudStack templates. See https://issues.apache.org/jira/browse/CLOUDSTACK-4556
#!/bin/sh
# dhclient change hostname script for Ubuntu
# /etc/dhcp/dhclient-exit-hooks.d/sethostname
# logs in /var/log/upstart/network-interface-eth0.log
# for debugging:
echo "sethostname BEGIN"
export
set -x
@sckevmit
sckevmit / tasks.py
Created November 29, 2016 10:31 — forked from daniellawrence/tasks.py
Queuing fabric tasks and stream reading output using celery & redis - A little bit of evil with tempfiles and stdout redirection.
# RUN ME, I am the worker!
# $ pip install fabric celery-with-redis
# $ celery -A tasks worker -E --loglevel=debug
from celery import Celery
from time import sleep
from fabric.api import env, run, execute
import sys
celery = Celery('tasks', broker='redis://', backend='redis://')