Skip to content

Instantly share code, notes, and snippets.

View RomainRouzaud's full-sized avatar
🚀
Moving to the next challenge

ROUZAUD RomainRouzaud

🚀
Moving to the next challenge
View GitHub Profile
@RomainRouzaud
RomainRouzaud / Peach v1 API Endpoints.md
Created September 16, 2019 08:18
Peach v1 API Endpoints

Peach (peach.cool) API Endpoints

Peach is hot right now so I poked around their API using https://mitmproxy.org/

As of the last update, this seems to be a fairly extensive/complete list of v1 endpoints, but feel free to submit revisions to this gist with any others you find!

Login

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
@RomainRouzaud
RomainRouzaud / README.md
Created August 5, 2020 13:04 — 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.


@RomainRouzaud
RomainRouzaud / basics.sh
Created January 7, 2021 10:33 — forked from kudosqujo/basics.sh
[AWS CLI] #aws #cheatsheet
### Walkthrough #1: Create our first virtual machine in the cloud
# get list of commands useful for EC2
aws ec2 help | grep "\sdescribe"
# create an SSH keypair for AWS
aws ec2 create-key-pair --key-name MyKeyPair --query 'KeyMaterial' --output text > MyKeyPair.pem
# verify that AWS knows about our newly created key
aws ec2 describe-key-pairs --key-name MyKeyPair
@RomainRouzaud
RomainRouzaud / basics.sh
Created January 7, 2021 10:33 — forked from kudosqujo/basics.sh
[AWS CLI] #aws #cheatsheet
### Walkthrough #1: Create our first virtual machine in the cloud
# get list of commands useful for EC2
aws ec2 help | grep "\sdescribe"
# create an SSH keypair for AWS
aws ec2 create-key-pair --key-name MyKeyPair --query 'KeyMaterial' --output text > MyKeyPair.pem
# verify that AWS knows about our newly created key
aws ec2 describe-key-pairs --key-name MyKeyPair