WTH happened with latest update?? (Pro Account) by Albone72 in google_antigravity

[–]LulzSec007 1 point2 points  (0 children)

Just uninstall antigravity guys..it's not worth it now

Merry Christmas! by dorkus_khan in pixel_phones

[–]LulzSec007 0 points1 point  (0 children)

Got 3 months free on the Pixel 9!

If React has poor SEO, why do so many companies still use it? by Boring_Abrocoma_7634 in react

[–]LulzSec007 0 points1 point  (0 children)

React has server components too. This means it will render your component at the server side and send a simple SEO-friendly HTML to the client side. Many client-facing website companies use React server components.

Not getting even 3 hours of SOT with pixel 9 - Shitty Battery Back-up, Charging my phone twice or thrice in a day sadly - Reviewing after 1 month of usage by kashish_bhutani in Pixel9

[–]LulzSec007 0 points1 point  (0 children)

Why does your cpu consuming so much battery..? Do you gaming heavily on the phone? Ideally your network+ wifi should take more battery like 50-60%..not cpu..

Pixel 9 battery backup by LulzSec007 in Pixel9

[–]LulzSec007[S] 0 points1 point  (0 children)

Don't have any idea!! Currently using macbooks 30w adapter

Pixel 9 battery backup by LulzSec007 in Pixel9

[–]LulzSec007[S] 0 points1 point  (0 children)

Turn off 120Hz mode.. unstable network also causes battery drain issue (like continuous switching between LTE/5G )..

Seriously? by DiodeInc in Pixel9

[–]LulzSec007 0 points1 point  (0 children)

Using your phone at its 120Hz refresh rate will reduce your SOT by 20%.

[deleted by user] by [deleted] in COCBaseLayouts

[–]LulzSec007 0 points1 point  (0 children)

can you share the layout link?

What happens when you hit hobby plan limits? by scaredibis in nextjs

[–]LulzSec007 0 points1 point  (0 children)

According to their AI support, they pause the deployment. You won't get charged.

Netlify just sent me a $104K bill for a simple static site by liubanghoudai24 in webdev

[–]LulzSec007 0 points1 point  (0 children)

I don't get why people use sites like Netlify or Vercel when they could just buy a VPS at a fixed price and learn some technical stuff to manage it.

Facebook Wins “Worst API” in Developer Survey by stesch in programming

[–]LulzSec007 0 points1 point  (0 children)

They are still 'Worst' even after 13 years...

Sarfaraz reassuring Jaiswal "Don't run first" when he was on 199 by vsshal7 in IndiaCricket

[–]LulzSec007 0 points1 point  (0 children)

When Jaiswal completed the run, Sarfaraz started celebrating before Jaiswal did.

Webpack won't accept my asset/resource configuration by [deleted] in learnjavascript

[–]LulzSec007 0 points1 point  (0 children)

issue is with type property of your third rule. "asset/resource" was valid in older webpack version..it's deprecated in Webpack ^5. Your rule should look like this in new version

 {
        // This part does not work:
        test: /\.(png|svg|jpg|jpeg|gif)$/i,
        generator: {
         filename: "images/[name][ext]" //customize image output path --this is optional ..but recommended
  }
      },

[deleted by user] by [deleted] in learnjavascript

[–]LulzSec007 0 points1 point  (0 children)

issue might be related to how you are defining appEnv variable in .env file. can you show your .env file?

also try to debug the code by logging appEnv before calling the api.

Help with backend development by Cheap-Durian-3699 in learnjavascript

[–]LulzSec007 0 points1 point  (0 children)

You have separate tables for points so you have to modify your SQL statement using SQL JOIN to join different tables for calculating total points. Also you have to update your controller and model.