Skip to content

Instantly share code, notes, and snippets.

View thiagoponte's full-sized avatar

Thiago Ponte thiagoponte

View GitHub Profile
@thiagoponte
thiagoponte / cf-dynamodb.yaml
Created October 28, 2022 13:08
CF template to deploy an Amazon DynamoDB Table. The table should have a composite primary key, and one index of your choice. Explicitly define a scaling policy for the Table
AWSTemplateFormatVersion: 2010-09-09
Resources:
OrdersTable:
Type: "AWS::DynamoDB::Table"
Properties:
TableName: AuthorsTable
AttributeDefinitions:
- AttributeName: AuthorName
AttributeType: S
- AttributeName: BookTitle
# Android SDK setup
## Install Java
```bash
sudo apt-get update
sudo dpkg --add-architecture i386
sudo apt-get install libbz2-1.0:i386
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1
sudo apt-get install openjdk-8-jdk openjdk-8-jre