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.
Stick with it:
Don't cross over to other domains all of a sudden. You might notice that if you start tweeting about something else, the engagement on your tweets drop tremendously.
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.
Here are 5 Python features that help you write better and more compact code.
/Thread
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.
2. Setattr and getattr
The setattr function sets the value of the specified attribute of the specified object. The getattr method returns the value of the named attribute of an object.