Skip to content

Commit

Permalink
chore: removing some posts
Browse files Browse the repository at this point in the history
  • Loading branch information
caiocsgomes committed Aug 11, 2024
1 parent 2d7d781 commit e68efd8
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion app/content/posts/1-linux-sed-bash-script/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Using a bash script with sed to clean data"
layout: "categories"
date: 2020-08-21T23:15:00+07:00
date: 3020-08-21T23:15:00+07:00
slug: bash-sed
category: bash
description: "A post explaining the basics of sed to clean flat files before importing them to a database"
Expand Down
4 changes: 2 additions & 2 deletions app/content/posts/2-linux-processes/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Linux processes"
date: 2020-08-21T23:15:00+07:00
date: 3020-08-21T23:15:00+07:00
slug: linux-processes
category: linux
description: "An introduction to how processes work on Linux and their role on Docker"
Expand Down Expand Up @@ -54,4 +54,4 @@ not only a CPU execution, it also has
its own space memory associated. So this is the problem processes are trying to solve: handle several tasks
with
limited resources by creating executing units
and giving them the resources needed.
and giving them the resources needed.
4 changes: 2 additions & 2 deletions app/content/posts/3-sam-etl-serverless/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "SAM (Cloudformation) template for a serverless ETL job"
date: 2021-04-27T23:15:00+07:00
date: 3021-04-27T23:15:00+07:00
slug: cloudformation-sam-serverless
category: cloudformation
description: "On this post I'll explain how SAM can be used to model the resources needed for an ETL job that converts a csv file in a S3 bucket into a dynamodb table using lambda"
Expand Down Expand Up @@ -41,4 +41,4 @@ The image is provided by the cloudformation designer with the *template.yml* cod
lambda function that inserts data on the dynamodb table. But besides that we see two other components, the *lambda permition*
and the *lambda role*. We need the lambda permission to designate who can invoke the lambda function. So in the lambda permission
we allow the S3 bucket to invoke lambda function. Furthermore we need a role to allow the lambda function to insert data on the dynamo table. So we create
a policy, that is a document describing what an identity can do, associate the policy to the role and associate the role to the lambda function.
a policy, that is a document describing what an identity can do, associate the policy to the role and associate the role to the lambda function.
2 changes: 1 addition & 1 deletion app/content/posts/4-writing-pythonic-code/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Writing more pythonic code"
date: 2021-05-02T23:15:00+07:00
date: 3021-05-02T23:15:00+07:00
slug: python-pythonic
category: python
description: "Tips about writing cleaner code in python using its resources for a more pythonic approach"
Expand Down
2 changes: 1 addition & 1 deletion app/content/posts/5-cf-parameters-separate-file/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "How to have paramaters in an external file for CloudFormation"
date: 2021-06-27T23:15:00+07:00
date: 3021-06-27T23:15:00+07:00
slug: parameters-in-external-file-using-cloudformation
category: cloudformation
description: "A guide explaining how to split parameters and templates in separate files in CloudFormation"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "How to use SSM parameters in CloudFormation"
date: 2021-07-17T23:15:00+07:00
date: 3021-07-17T23:15:00+07:00
slug: cf-parameters-ssm-parameter-store
category: cloudformation
description: "A guide explaining how to use Systems Manager Parameter Store parameters in CloudFormation"
Expand Down
4 changes: 2 additions & 2 deletions app/content/posts/7-cf-dependson/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "How to use DependsOn attribute in CloudFormation"
date: 2021-07-22T23:15:00+07:00
date: 3021-07-22T23:15:00+07:00
slug: dependson-with-cloudformation
category: cloudformation
description: "A guide explaining how the attribute DependsOn works in CloudFormation and how to use it"
Expand Down Expand Up @@ -49,4 +49,4 @@ Resources:
EngineVersion: '5.5'
MasterUsername: MyName
MasterUserPassword: MyPassword
```
```

0 comments on commit e68efd8

Please sign in to comment.