Shipping well-architected, resilient, and cost-optimized AWS solutions designed to scale, all with a Vercel-like dev experience using AWS CDK.
2 subscribers
Sep 1, 2021 β’ 7 tweets β’ 2 min read
Just crossed 35,000 followers on this bird app π
It's been a crazy rollercoaster ride since I started publicly sharing my knowledge and experience about AWS & DevOps around 18 months ago!
Here are a couple of takeaways that skyrocketed my growth π
Pick a niche:
Try to narrow down on the amount of topics that you tweet about.
I picked AWS and DevOps mainly because that's what I do for a living as a Cloud Consultant and therefore it has become easier for me to share valuable information and tips.
Sep 1, 2021 β’ 6 tweets β’ 2 min read
In the past year, I've shared a lot of knowledge on AWS and Cloud.
For the people that recently started following me, I've revisited my timeline and cherry-picked 4 threads for you so you can start your journey in the Cloud.
Enjoy and good luck π§΅
1. Advice for beginners who start in the Cloud
I am super excited to announce that I have been accepted into the AWS APN Ambassador Program on behalf of CloudNation. πππ
For the people who might wonder what this program is, here is a short summary:
The APN Ambassador Program is a vibrant worldwide community of technical experts from AWS Partner Network (APN) Consulting Partners.
Mar 2, 2021 β’ 6 tweets β’ 1 min read
4 reasons why you should pursue AWS Certifications:
1. Cloud computing is a top technology focus area for organizations
π§΅π
2. Organizations view their certified employees as a competitive advantage
Feb 26, 2021 β’ 7 tweets β’ 2 min read
Here are 5 Python features that help you write better and more compact code.
π§΅π
1. Ternary operator
A Ternary operator allows you to quickly test a condition instead of a multiline if statement.
Feb 21, 2021 β’ 6 tweets β’ 1 min read
If you want to improve your Python development experience.
Then give these packages a try:
π§΅
1. Pylance
This is an improved version of the default python language server for VS Code.
It supercharges your Python IntelliSense experience with rich type information, helping you write better code, faster.
Install as an extension using VS Code.
Feb 10, 2021 β’ 37 tweets β’ 15 min read
Iβve been working as a Cloud Engineer for 6+ years. Focused a lot on migrating workloads to the Cloud and transforming them to become Cloud Native.
In the meantime I got 7x AWS Certified
Ask Me Anything (AMA) on the Cloud and Iβll try to do my best to answer your questions π
If the sftp server is running on linux you can create a script which makes use of the aws cli so you can use the s3 cp command: awscli.amazonaws.com/v2/documentatiβ¦
Want to automatically install and configure the software you use on your Mac & Linux machine for web and software development?
Then have a look at this thread! π§΅π§΅ππ
1. Install Homebrew
This is a package manager for MacOS and Linux that allows you to install software through a simple command e.g. `brew install packer`
Link: brew .sh
Nov 23, 2020 β’ 4 tweets β’ 1 min read
Here are 10 incredible useful websites on the internet that will increase your productivity π₯
1. archive .is
//take a snapshot of any web page and it will exist forever even if the original page is gone.
2. fast .com
//check the current speed of your Internet connection.
π§΅π
3. slides .com
//create pixel-perfect slide decks and broadcast your presentations to an audience of any size from
4. reverse .photos
//upload an image and find similar pictures on the web.
5. copychar .cc
//copy special characters and that arenβt on your keyboard.
Oct 11, 2020 β’ 7 tweets β’ 2 min read
Whether you're a Junior or Senior Developer, everyone uses Google to find solutions to their problems. However, not everyone knows how to use it properly.
Let me help you level up your Google game in this thread!
This is Part 3 -> π§΅π§΅π§΅πππ
1. inurl specifier:
This is a specifier that returns results containing its operant in the URL e.g.
python inurl:tutorial
Oct 10, 2020 β’ 7 tweets β’ 3 min read
Python is a beautiful programming language. It contains really useful features that make writing code more efficient than ever.
Here are 5 tips for writing more efficient and compact code.
π§΅π§΅π§΅
1. Decorator
A decorator is a design pattern in Python that allows a user to add new functionality to an existing object without modifying its structure.