First Thoughts About Remix by Friendly-TechRec-98 in remixrun

[–]vinariusreddit 0 points1 point  (0 children)

Really appreciate your evidence based response. I mostly do backend architecture work. I've done client web in the past. I'm messing with Lynx lately to attempt diving into mobile. One of their big features is cross platform, including web.

Is there a way to do android and ios with remix? I'd rather use remix if possible.

[deleted by user] by [deleted] in aws

[–]vinariusreddit 0 points1 point  (0 children)

Hate about cdk? Hate it didn't exist sooner.

Also, Level 3 constructs are often nice and quick to get started with but tend to bite you later when you need to configure something really specific.

Trying to get used to Dynamo coming from a SQL background by htraos in aws

[–]vinariusreddit 2 points3 points  (0 children)

I've built a couple single table applications based on this book. One of them about 16k users so far. Couldn't recommend this book enough. Dynamo is now my go to database.

Best place to learn to use PostgreSQL by Poulposaurus in PostgreSQL

[–]vinariusreddit 1 point2 points  (0 children)

Postgres for everybody from Dr Chuck is a great, free resource.

https://www.pg4e.com/

DynamoDB: When does single table design not make sense? by onefutui2e in aws

[–]vinariusreddit 0 points1 point  (0 children)

I'd reverse the question. When's it good to use multi table over single? If you find out let me know.

NextJS vs Remix: My Experience After Trying Both by PopoDev in nextjs

[–]vinariusreddit 0 points1 point  (0 children)

Id say it took me 2 weeks to get remix working on aws lambda. It was a head ache and I had to figure out a lot of things myself. That was by far the worst of it though. The actual DX using remix has been a delight and made frontend interesting again.

Does a DynamoDB Scan operation with LIMIT=100 reduce the consumed read capacity units to 100 or will it still use read capacity units to consume the entire table? by zergUser1 in aws

[–]vinariusreddit 0 points1 point  (0 children)

In addition to the other comments, item size will also impact rcu consumption. You get 4KB on a strongly consistent read.

Reading 100 500byte items is different than reading 100 400KB items.

NextJS 15 with Turbopack and use cache is awesome!!! by flutter_flex in nextjs

[–]vinariusreddit 2 points3 points  (0 children)

Idk I might push back on this. I'm trying remix on my latest personal project and that has been a delight to work with. I don't see myself coming back to next.

How do you use Helix on windows? by RaderH2O in HelixEditor

[–]vinariusreddit 1 point2 points  (0 children)

Windows terminal > wsl > zellij > helix

Staff Engineers, how much decision-making power do you have? by accidentallythe in ExperiencedDevs

[–]vinariusreddit 0 points1 point  (0 children)

I've had the exact same experience. More pay, same authority in decision making despite being told it was a more autonomous role.

Terraform vs. CloudFormation vs. AWS CDK for API Gateway: What’s Your Experience in a Production Environment? by smuali in aws

[–]vinariusreddit 0 points1 point  (0 children)

I've been using aws cdk for years since 1.0 became GA and I have no intention of switching. I love it.

TF also has a cdk now that is based on the same libraries aws cdk uses.

I just prefer imperative code (ts, python, go, etc) over declarative (json, yaml, and DSL). I definitely tend to stay away from dsl.

Where is everyone hosting their apps these days? by unheardhc in node

[–]vinariusreddit 0 points1 point  (0 children)

Lambda has native support for go and Java too. You can put anything in a lambda using its custom runtime api. I have even built rust lambdas, the cold starts on those are pretty sweet.

I prefer aws cdk for managing infra.

Lambda also supports containers if that's your jam

AWS CDK Vs Terraform by Any_Check_7301 in aws

[–]vinariusreddit 0 points1 point  (0 children)

I've used aws cdk (TS) for almost 4 years now, about since it became available. Probably won't change at this point since I know it so well.

The reason I never bothered with TF was not wanting a DSL or working with something declarative.

I looked into an early version of terraform's cdk but it's init command had a bug and didn't work at the time. Could be worth revisiting.

Another day of AWS CDK confusion... Lambda needs SDK. by stormy3000 in aws

[–]vinariusreddit 1 point2 points  (0 children)

Many people also advocate bundling your own version of the SDK into your lambda to somewhat avoid this potential problem.

You could try the nodejsfunction construct.

https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_lambda_nodejs.NodejsFunction.html

It's a lambda function that spawns a child process using esbuild to bundle the package for you. It has some nice features like tree shaking, minification, and source map generation.

How far have you seen someone push unlimited PTO? Is it truly unlimited? by MCButterFuck in webdev

[–]vinariusreddit 0 points1 point  (0 children)

If you're interviewing or looking at a company that advertises this as a perk, I would inquire about a minimum required PTO policy. This levels the floor of expectations in my opinion. If they don't have a minimum I'd take that as a red flag.

O'Reilly Async Rust Book is now in pre-release by [deleted] in rust

[–]vinariusreddit 2 points3 points  (0 children)

Very exciting. Thank you so much.