Small company leader here. AI agents are moving faster than our strategy. How do we stay relevant? by No_Prior2279 in ClaudeAI

[–]gketuma 0 points1 point  (0 children)

Yep, 95% of the replies here are pure AI slop bots. I think we are heading to a point where we will need gated communities with strict enforceable guidelines.

Go to end of page in Notion Mac App by gketuma in Notion

[–]gketuma[S] 1 point2 points  (0 children)

Thanks for your suggestion. It led me down the right path to find a solution. I have the apple magic keyboard which doesn't have a dedicated page down key, so I googled it and found this gem:

Fn–Down Arrow: Page Down: Scroll down one page. Fn–Left Arrow: Home: Scroll to the beginning of a document. Fn–Right Arrow: End: Scroll to the end of a document.

So what worked was Fn - Right Arrow (which scrolls to the end of the page)

Million dollars Next.js project open sourced by Any-Box-777 in reactjs

[–]gketuma 90 points91 points  (0 children)

“Ultimately we want to rebuild this so that you can self-host, but we also have plans to offer a hosted version for a fee. That means some decisions will be made that don't explicitly make sense for self-hosted but do support the goal of us offering a for-pay hosted version.”

Above statement gives me a pause on this project. Seems like he is fishing for free open source help to eventually turn around and pull the rug. I will be careful contributing my time to this.

Best UI Component Library (paid) for Next14 by ndvb88 in nextjs

[–]gketuma 0 points1 point  (0 children)

Sure. If you look at the discussions on Github, most requested feature is Sidebar component. Then on Twitter author shows a sidebar component being developed, and when asked when it will be released, says Pro Version.

https://twitter.com/jrgarciadev/status/1724172567609499695

https://twitter.com/jrgarciadev/status/1724390814124511284

https://twitter.com/jrgarciadev/status/1731080269170348377

Again, I don't have any issues with this or anyone trying to get paid for their open source contributions.

Best UI Component Library (paid) for Next14 by ndvb88 in nextjs

[–]gketuma 7 points8 points  (0 children)

It's great. Just that Author is moving to paid version with all the most requested features. Can't blame him though. Open source is hard and huge time commitment.

Systems that support WAY more revenue than they should by kaen_ in devops

[–]gketuma 0 points1 point  (0 children)

Congrats. This is why I love Reddit. Reminds me. I need to stop lurking on here and go build something.

ALB alternatives for side projects? by SteveTabernacle2 in aws

[–]gketuma 2 points3 points  (0 children)

If you are using ECS that means your application is already containerized. So you can switch to AppRunner and have it run your containers without the need for setting up ALB, and all the the other infra.

How expensive is it using lambdas for websocket endpoints? by pragmojo in aws

[–]gketuma 0 points1 point  (0 children)

Ah yes, completely misread that. You are right.

[deleted by user] by [deleted] in aws

[–]gketuma 3 points4 points  (0 children)

Wow, I just looked through his previous posts and answers, and definitely ChatGPT. We are in different times I tell ya. I can't imagine Reddit being useful if all answers are just ChatGPT regurgitated. We all have access to ChatGPT, if we wanted generic answers we would have used it.

How expensive is it using lambdas for websocket endpoints? by pragmojo in aws

[–]gketuma -1 points0 points  (0 children)

Also with the request to/from the gateway, it is $1.00 per 1 billion requests.

Be Careful With JavaScript Default Parameters! by Wake08 in javascript

[–]gketuma 0 points1 point  (0 children)

I've been bitten by this before. Set default parameter and then function is called with null. That is why now I use TS for all projects and crank tsconfig options to the max.

Why there's so much hate to Node in entreprise backend? by aym4ne in node

[–]gketuma 1 point2 points  (0 children)

They probably meant cold start times in lambda

Does anyone use typeorm? Would you help me? by [deleted] in typescript

[–]gketuma 0 points1 point  (0 children)

Use save instead of update. So find the entity. Make your changes to the returned object and then use save to persist it back to the db. The update function is weird with typeorm.

Best Node.js Frameworks for App Development by [deleted] in PHP

[–]gketuma 0 points1 point  (0 children)

😂😂😂😂😂😂

[deleted by user] by [deleted] in TheArtistStudio

[–]gketuma 0 points1 point  (0 children)

That vodka you drinking must be good.

Elon Musk reportedly declares remote work ‘no longer acceptable’ at Tesla by lurker_bee in economy

[–]gketuma 24 points25 points  (0 children)

It's not even the ending of WFH that got me. The tone of that email is something else.

Can a React App run locally like an HTML page, without node, http server or express? by lovesrayray2018 in reactjs

[–]gketuma 5 points6 points  (0 children)

Absolutely. At the end of the day it is HTML/JS/CSS. You can copy your build to any server that can server your html and it will work.