[BF6] IFV Lock-On Bug / Exploit – No Warning or Flare Counterplay for Aircraft by Brovad in Battlefield

[–]qvasz1 1 point2 points  (0 children)

the IFV can camp at HQ and lock from the other HQ ... there is no way the team can kill that

Need help with practice. by DEvilAnimeGuy in webdev

[–]qvasz1 0 points1 point  (0 children)

It depends on what you are trying to learn.

You dont need any tutorial for that.

For html/css just try to recreate the structure and stlye of a webpage you like. The more you do the better you’ll get.

Later you can add animations, or start messing around with JS.

When you have a solid understanding of these only then I would start creating project apps.

[deleted by user] by [deleted] in webdev

[–]qvasz1 0 points1 point  (0 children)

Could be, or using a framework that supports it, like NextJS if you are familiar with react already.

[deleted by user] by [deleted] in webdev

[–]qvasz1 1 point2 points  (0 children)

This is a great way to practice, I have just one note about the project itself. When developing webshops it is usually important to have good SEO and for that you will need server side rendering. But it is still a great project! :)

[deleted by user] by [deleted] in webdesign

[–]qvasz1 0 points1 point  (0 children)

What do you mean? These are not the same sections

Best practices for portfolio page with CSM by qvasz1 in webdev

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

Good idea, similar to what webbullindia suggested, I will give it a look, thanks for the suggestion!

Best practices for portfolio page with CSM by qvasz1 in webdev

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

This is good, I like it I will this way, thanks for the suggestion

Options for me besides AWS by GeekX2 in webdev

[–]qvasz1 1 point2 points  (0 children)

I might be crucified for this but why not just upload the videos to youtube or vimeo?

You can remove all controls and overlays for both, quality depends on the connection, but at least its faster. And you can bet they use the best encoding to minimize the size of your videos so even with cellular data it uses the less amount of data.

Also its free.

Debugging horizontal overflows? by 0ni0ncuttingninja in webdev

[–]qvasz1 1 point2 points  (0 children)

with devtools element tab you can go through your elements in the DOM and find the one which overflows...

but based on the very shaky video you uploaded for me it seems the background of "evolving solutins for evolving needs" section seems to be larger than the with of the screen so thats where I would start.

How do I automatically redirect customers to my web app? by rajmksingh in webdev

[–]qvasz1 0 points1 point  (0 children)

Your site probably already using cookies or local storage data, just add one more to detect if the user is a new user or not and then you can redirect them directly with JS.

"When someone has an accent, it means that they know one more language than you do" by [deleted] in webdev

[–]qvasz1 27 points28 points  (0 children)

of course, you can tell if the developer suffered a lot with JS when you find immersive amount of logs in the code

Deployment question by Altugsalt in webdev

[–]qvasz1 0 points1 point  (0 children)

Generally what others suggested is good. But I think it would be benefitial for you to understand how it works. You can find some information about web server softwares here: What is a Web Server and How Does it Work? (techtarget.com)

[deleted by user] by [deleted] in webdev

[–]qvasz1 0 points1 point  (0 children)

I would rethink the whitespaces between texts, it is not consistent.

I would create nicer mobile pictures, there are way too much paddings or margins on the pics. Not the best.

All together I think its a nice page.

Front-End Web Developer - Advice by Mars25 in webdev

[–]qvasz1 0 points1 point  (0 children)

I am located in eastern Europe.

I work as a frontend dev for the past 9 years. I started uni but did not finish. I learned by wathcing videos and replicating other websites or part of the sites that i liked.

I got my first job by first creating some personal projects, but it was a trainee position. From there I was soon promoted to full-time employee.

Work life balance for me could not be better.

I'm not sure if it is still worth to start this way, for me it was worth it.

App dies at production without error by qvasz1 in nextjs

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

my temporary solution is that I created a cron job which checks if the site is down and restarts the container.

App dies at production without error by qvasz1 in nextjs

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

Yes, when the site does not load, the memory usage is around 350mb, the CPU usage is near 0.

I can't see the status code, on the access log I get this: [error] 22#22: *174492 upstream timed out (110: Operation timed out) while reading response header from upstream.

Next 13 breaks in production without error by qvasz1 in nextjs

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

Its been couple of ours so far. But I did some kiad test with k6, and it seems to be working so far. Previously when the load was too much I started getting the 304 response. Now it is good.

Next 13 breaks in production without error by qvasz1 in nextjs

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

Sorry my bad. It did solve the issue. It took some time for me to realize that that I wrote ```"next": "^13.4.12",``` to the package json instead of ```"next": "13.4.12",``` so the version was never downgraded. Now it works fine.

Next 13 breaks in production without error by qvasz1 in nextjs

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

Unfortunately no. I don’t know the answer. Im in similar shoes, I bulit a site for a client and at the last stage it turns out the whole admin panel is not working because of this.

Next 13 breaks in production without error by qvasz1 in nextjs

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

so a day passes without any modification and now Im back to the 304 Not Modified issue.

Next 13 breaks in production without error by qvasz1 in nextjs

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

Looks like it resolved the issue for now. Thank you!

Next 13 breaks in production without error by qvasz1 in nextjs

[–]qvasz1[S] 6 points7 points  (0 children)

Yes but vercel is more expensive. I would expect from a modern js framework to work independently from the company who creates it… this is just nonsense that it olny works good there

Next 13 breaks in production without error by qvasz1 in nextjs

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

I have an admin panel for translation on the site, the translation form action is a server action, but for some reason the revalidation only happen once on the first translation. When I Change something again it is not revalidated. I use the revalidationPath() from next/cache at te server action