serkan haytac
Search... ⌘K

Hey, I'm Serkan

AWS certified solutions architect & full-stack developer. Writing about DevOps, AWS, Terraform, Kubernetes, and infrastructure automation.

Latest Posts

View all
3 min read

AWS CLI Notes

[cloudfront](#cloudfront) | [ec2](#ec2) | [ecr](#ecr) | [elb](#elb) | [ecs](#ecs) | [events](#events) [kms](#kms) | [sns](#sns) | [s3](#s3) | [resourc

Read more
3 min read

Awk Notes

**To format strings in awk use `printf`**

Read more
3 min read

Searching github with multiple topics.

Github.com ui .currently does not natively supoport search for multiple topic tags as of now. However their api allows you to query multiple tags. Bel

Read more
3 min read

Setup env variables for VScode integrated terminal.

If you are working on a project that involves multiple aws profiles and vscode, this trick might come handy. Depending on the project you would like t

Read more
3 min read

Filter and delete s3 objects by date.

➜ ~ aws s3api list-objects --bucket fake-bucket --query 'Contents[?LastModified>=`2018-10-04` ].{Key:Key}' --prefix "2018-10-04" --output text | xar

Read more