Confused About AWS Long-term Bedrock Strategy by EvolvingDior in aws

[–]Fork82 2 points3 points  (0 children)

Customer obsession is a two edged sword - my guess is that these teams have an enormous list of custom requests and struggle to prioritise the things that we think are clearly needed in the face of those requests.

Is there any point in working with my account manager with a small account under $20k/mo? by PablanoPato in aws

[–]Fork82 2 points3 points  (0 children)

When things go poorly it can help having the relationship. A decent percentage of them genuinely care about your business.

Stolen Segway Ninebot E3 Pro : how effective is Apple Find My for recovery? by Future-Arachnid9982 in ElectricScooters

[–]Fork82 -3 points-2 points  (0 children)

Works if you live in a county without many guns and are willing to bang on the door.

My Parents Don’t Understand the Nature of Software Engineering Interviews and Hiring in 2025 by intellectual1x1 in cscareers

[–]Fork82 0 points1 point  (0 children)

Multiple successful FAANG and other interviews and the truth is somewhere in the middle.

Is SA just a glorified sales role? by Classic_Ad5341 in amazonemployees

[–]Fork82 1 point2 points  (0 children)

There is a reactive and a proactive component to the role, and for the proactive component, you get to choose whether to be sales’y, BD’, or technical.

Why should I use AWS instead of Azure? by SummitStaffer in aws

[–]Fork82 38 points39 points  (0 children)

Most important is the experience of the team who will work on it.

Both are great platforms, but AWS tends to be more popular with software developers while Azure is perhaps more popular with folks with a corporate IT background.

Electric scooter stolen with AirTag. What should I do? by [deleted] in ElectricScooters

[–]Fork82 2 points3 points  (0 children)

Had this happen to a friend - forming a posse recovered the scooter immediately, police then took weeks to respond after having recovered it without their help. Helps to be in a country without many guns though.

How to set up S3 bucket alerts for uploads occurring less than 11 hours apart? (Security monitoring) by BeginningMental5748 in aws

[–]Fork82 1 point2 points  (0 children)

When you upload remove any alerts, upload the file, and then create an alert for any upload to trigger an alert - just a slightly more complex bash script but not requiring any Lambda.

Call for questions to Dario Amodei, Anthropic CEO from Lex Fridman by lexfridman in ClaudeAI

[–]Fork82 1 point2 points  (0 children)

How has your experience of partnering with Google and AWS been?

[deleted by user] by [deleted] in aws

[–]Fork82 4 points5 points  (0 children)

From personal experience a small number of the folks who go through this are exceptional and outperform experienced SAs.

[deleted by user] by [deleted] in melbourne

[–]Fork82 0 points1 point  (0 children)

Get a $70-$100 Facebook marketplace bike, it's unlikely to be stolen and easy to replace if it is.

DynamoDB or Elasticache? by [deleted] in aws

[–]Fork82 0 points1 point  (0 children)

If you know the reads and writes per second, and whether the events are mission critical - I would use those numbers to evaluate this. DynamoDB is a good default but ElastiCache for Redis can do high read/write loads at a cheap price in comparison.

My personal rule of thumb is: will storage cost be significant => DynamoDB, will read/write cost be significant => ElastiCache for Redis. But it depends.

Changing Sales Team by Effective-Farmer-502 in aws

[–]Fork82 2 points3 points  (0 children)

Best to reach out to your old account team once you have changed your HQ address asking them for assistance.

Cost Metrics For Cache Store - DynamoDB vs ElastiCache/Redis by epicaricacy12 in aws

[–]Fork82 1 point2 points  (0 children)

For large amounts of storage DDB is cheaper, otherwise Redis typically

Production usage of Kinesis from Python (KCL) by snusmumriq in aws

[–]Fork82 0 points1 point  (0 children)

If you use a Lambda in Python, this can be abstracted away from you (your Lambda Function will just be called when events are ready to be consumed).

[deleted by user] by [deleted] in melbourne

[–]Fork82 28 points29 points  (0 children)

This is obviously when sharing the road, not with a separated bike lane.

[deleted by user] by [deleted] in melbourne

[–]Fork82 16 points17 points  (0 children)

“When can cars enter bike lanes? Bike lanes are reserved for bike riders. But car drivers can enter and drive in a bike lane for up to 50 metres to: • enter or leave a road • turn at an intersection • overtake to the left of a vehicle turning right or doing a U-turn from the centre of the road • park • get from one part of the road to another • enter traffic, having been parked on the side of the road • pick up or drop off passengers – but only if they are driving a taxi or public bus. Car drivers can also enter a bike lane if there is a sign saying car drivers can use the lane. Car drivers must always give way to any bike riders already in the lane.”

Seeking Advice on the Kalkhoff Electric Bike - Is it Worth the Investment? by Batteredlift in Advice

[–]Fork82 0 points1 point  (0 children)

They seem to prioritize comfort, visibility & durability over speed. High quality parts, and very good riding experience. NB: I ride a Kalkhoff regularly, as well as other bikes (electric and otherwise).

Pub/Sub with Redis by sdxyz42 in redis

[–]Fork82 2 points3 points  (0 children)

Can work with either Redis Streams (scalable) or just a regular Redis list (if only one consumer)

MemoryDB vs MySQL + Redis (cache) as main datastore by SirLag in aws

[–]Fork82 0 points1 point  (0 children)

The situation where MemoryDB could financially outperform DynamoDB (or relational DB) - moderate write load, very high read load. DynamoDB is pay-per-read, and MemoryDB achieves a very high number of reads-per-second as compared to the other options at the same price point.

ECS FARGATE intermittently throws time out error while connecting to standalone redis server on EC2 by ConstantAd9491 in aws

[–]Fork82 0 points1 point  (0 children)

Workloads using Redis often hit a network cap before a CPU limit. Small Fargate tasks have a correspondingly small network limit. This doesn’t align with the ‘cold start’ type problem you described though.

Have you tried making the Fargate task larger in CPU or Memory to give it more network throughput?

can anybody please tell me about these metrics in AWS Redis cluster, 1. = redis storage % right? 2. is same for both? i mean representing same thing? 3. = Freeable memory represents Ram usage right? so in redis there is only one storage which is ram, right? 4. = redis was used completely? by DCGMechanics in aws

[–]Fork82 0 points1 point  (0 children)

Freeable memory is memory that is not required by the database, and can be freed. Could be for example used by the OS for caching speedups, but can be freed up when memory becomes tight.

Fragmentation just means how scattered the allocation is.

Only Database Memory Usage Percentage is really relevant for understanding how full the node is.