New AWS free tier coming on July 15th. No more surprise charges while experimenting on AWS. You get up to $200 in credits and 12 months to spend them. docs.aws.amazon.com/awsaccountbi...
New AWS free tier coming on July 15th. No more surprise charges while experimenting on AWS. You get up to $200 in credits and 12 months to spend them. docs.aws.amazon.com/awsaccountbi...
AWS announces up to 45% price reduction for Amazon SageMaker AI instances, including P4 and P5 types, to enable more cost-efficient generative AI model development. Pricing for flexible training plans on Amazon SageMaker HyperPod is also reduced, benefiting customers in non-US Regions.
This image is a three-panel comic from "They Can Talk" featuring beavers. In the first panel, two beavers are shown near a body of water with trees in the background. One beaver says, "i have big plans for this domain name." In the second panel, the other beaver responds, "please, no more AWS accounts." In the third panel, there's a close-up of the first beaver's face with a somewhat mischievous expression, saying "big plans."
Look at that - step functions sneaking in 10x scaling without much fanfare
This is pretty neat. On a similar note, if you want to see how to build a BlueSky RSS bot using Lambda, CDK and Rust see my repo github.com/anoopenginee...
Amazon EventBridge Event Bus now allows direct delivery of events to AWS services in another account, enabling improved security, streamlined processes, and reduced costs. This feature simplifies architecture by eliminating the need for intermediary resources.
Amazing feature
I think this is the first time that Q has built official integration with a third party service? With this you can get cloudzero insights from Q without leaving AWS console.
This is nice. In addition to the currencies already supported, AWS US customers can pay in Chilean Peso (CLP), Colombian Peso (COP), and Uruguayan Peso (UYU). AWS Europe customers can pay in Egyptian Pound (EGP), Nigerian Naira (NGN), Polish Zloty (PLN), Romanian Leu (RON), Ukrainian Hryvnia (UAH).
When you deserialize JSON like {"type": "message"}, the field maps cleanly to r#type in your Rust code. Useful for interop, though highly discouraged in normal Rust code!
#rust #rustlangββββββββββββββββ
This is true! This is how you use keywords as identifiers in Rust - with raw identifiers (r#). It's useful when working with external data formats that use keywords as field names:
```rust
#[derive(Deserialize)]
struct Message {
r#type: String, // maps to JSON "type" field
β¦
}
```
#rustlang
TIL: you can quickly switch between accounts by long pressing your profile pic (bottom right) in bluesky app.
This has made working on @unofficial-aws.bsky.social bot so much easier.
#bluesky #bsky #atproto
We have launched a new Local Zone in New York City (located in New Jersey).
In classic New York style, itβs authentically located in New Jersey.
aws.amazon.com/about-aws/gl...
NYC gets its own AWS local zone today
Scenario 4: Savings Plans and EC2 reserved instances apply to the usage You purchase a one-year, partial upfront Compute Savings Plan with an $18.20/hour commitment. You have two EC2 Reserved Instances (RI) for r5.4xlarge Linux shared tenancy in us-east-1. First, the RI covers two of the r5.4xlarge instances. Then, the Savings Plans rate is applied to the remaining r5.4xlarge and the Fargate usage, which exhausts the hourly commitment of $18.20. The m5.24xlarge and Lambda usage On-Demand charges are $32.70.
Here is the relevant portion from AWS docs docs.aws.amazon.com/savingsplans...
Correct response from claude Yes, Savings Plans and Reserved Instances (RIs) can coexist in your AWS account and can be used together to maximize cost savings. Here's how they work together: 1. Resource matching priority: - AWS first applies Regional RIs to matching instances - Then applies Savings Plans to the remaining eligible usage - Any remaining usage is charged at On-Demand rates 2. Optimization strategy: - You can use RIs for predictable, steady-state workloads - Then add Savings Plans to cover varying or flexible compute usage - This combination often provides the best cost optimization The main benefit of using both is flexibility - RIs provide deeper discounts for specific instance types, while Savings Plans offer more flexibility across instance families, sizes, and even services like Lambda and Fargate. Would you like me to explain more about specific scenarios where combining both might be beneficial?ββββββββββββββββ
Claude wins in accuracy here
Inaccurate response from reddit Answers: Can Savings Plans be combined with Reserved Instances? No, Savings Plans have replaced Reserved Instances and offer similar savings but with more flexibility. "Savings plans are not on top of reserved instances, they replaced them."
Reddit is running their experimental AI feature called βAnswersβ and it is giving inaccurate answers. The right answer here is that users can use RIs along with SPs and the behavior is documented here:
docs.aws.amazon.com/savingsplans...
This is a nice addition to WAF
Follow @unofficial-aws.bsky.social for more AWS updates.
Hello world!
bsky.app/profile/unof...
This bot is powered by the RSS-Bluesky bridge (github.com/anoopenginee...)
It scans the AWS news RSS feed 3 times a day, dedupes posts using Dynamodb and creates better summary of the post using claude-3 haiku running in Bedrock.
@unofficial-aws.bsky.social is now live! This (unofficial) bot shares the latest AWS updates on Bluesky, sourced directly from the official AWS RSS feed.
Follow @unofficial-aws.bsky.social for more AWS updates.
#AWS #rust #serverless
This bot is powered by the RSS-Bluesky bridge (github.com/anoopenginee...).
It scans the RSS feed 3 times a day, dedupes posts using Dynamodb and creates better summary of the post using claude-3 haiku running in Bedrock.
Project is licensed under MIT license. Contributions are welcome: github.com/anoopenginee...
Special thanks to @calavera.dev for Cargo Lambda!
Tech stack:
β’ AWS CDK (TypeScript)
β’ AWS Lambda (Rust)
β’ Amazon DynamoDB
β’ AWS Step Functions
β’ Amazon Bedrock (optional)
β’ AWS Secrets Manager
Features:
1. Completely #serverless implementation in Rust using AWS lambda, Dynamodb and Step Functions
2. Deployments enabled via CDK
3. Posts to Bluesky with rich text and link embeds, allowing all 300 graphemes for your summary
4. Configurable (optional) AI summary generation via Amazon Bedrock
[π Launch Announcement] Excited to announce the launch of RSS-Bluesky Bridge, an open-source tool that automatically fetches your latest RSS feed and posts them to Bluesky with optional AI generated summary! π
github.com/anoopenginee...
#rustlang #rust #aws #atproto #atdev
Twitter post from Rust Language 1.55 launch: @rustlang Rust 1.55.0 is here! π Announcing Rust 1.55.0 Rust Language @rustlang Β· Sep 9, 2021 This release has a couple of neat features, but most importantly, is dedicated to the memory of @garblefart : Quote Anna Harren @garblefart i am now calling the ::<> in rust THE TURBOFISH
Sadly, Anna Harren, the person who coined the term 'turbo fish' passed away in 2021. Rust version 1.55 launch was dedicated to her.
While reading about monomorphization in Rust, I learned that ::<> is called 'turbo fish' because it looks like a fish. If youβre not seeing it either, check out turbo.fish to get the idea.
#rust #rustlang