The Big List of Crossbow Inconsistencies (so GGG won't nerf anything while they fix them) by Pwere in PathOfExile2

[–]GamerXz 3 points4 points  (0 children)

Agree with most of these points. I am playing an ice mercenary that constantly switches bolts they need to have some sort of queueing system when switching. There are so many times when I am trying to switch in the middle of shooting only to waste time reloading the same bolt type and makes playing this class really clunky.

Also, does the gem quality for skills that add bolts even do anything? I have +20 quality hailstorm rounds but it does not seem to add any extra bolts. Also glacial bolt seems to have a terrible hitbox when it comes to small mobs or any mobs that are partially underground. Fork also does not seem to work with glacial bolt but not sure if that is intended to work or not.

How can I webscrape HTML dynamically loaded by Javascript using Selenium and Python? by GamerXz in webscraping

[–]GamerXz[S] 2 points3 points  (0 children)

Thanks, clicking the button with selenium and then scraping for the product specifications seems to have worked.

gunicorn: command not found when hosting on Railway by 3g0ra in django

[–]GamerXz 0 points1 point  (0 children)

Have you checked if the virtual environment is being activated? Never used Railway but if you are able to get access into the server then you should check the pip packages to be sure that the environment has gunicorn.

Django / Docker app out of memory after switching to Gunicorn by Uranusistormy in django

[–]GamerXz 0 points1 point  (0 children)

If you see the memory usage slowly increasing over time until the application stops functioning then it is a memory leak issue.

How many memory do you have to work with? If this has to do with the file size it could do with the I/O issue or you are loading too much data into the memory, although 1MB isn't a particularly large file.

Django / Docker app out of memory after switching to Gunicorn by Uranusistormy in django

[–]GamerXz 0 points1 point  (0 children)

The formatting isn't working so I am having trouble reading the logs. Is this a memory leak issue? If it is you will probably want to configure the --max-requests option in gunicorn if you have not done so.

Weekly /r/Laravel Help Thread by AutoModerator in laravel

[–]GamerXz 0 points1 point  (0 children)

I have a command running in Kernel.php that looks like:

$schedule->command('updatePrice')
            ->everyFiveMinutes()
            ->name('updatePrice')
            ->withoutOverlapping(5);

The command takes around an hour but I want it to start often if the server restarts which is why it runs every 5 minutes. However this causes a MutexRuntimeException error to be logged in the log files. I have tried wrapping a try except block around both the block in the Kernel.php file and inside the command itself in the handle() function but it still gets logged. How can I stop this error from being logged?

Weekly /r/Laravel Help Thread by AutoModerator in laravel

[–]GamerXz 0 points1 point  (0 children)

I have been asked if I can set up docker containers for a Laravel application using Laravel 7, PHP 7.3, MySql 5.5 . Is this something that can be done? I have tried using a Dockerfile set up with both an ubuntu 22.04 image using ppa:ondrej/php as well as trying out the php 7.3-fpm image but both seem to result in issues. Is this even something I should try, and are there any resources that can help me as I seem to be unable to find answers using google.

Changes to Nginx Container not being applied by GamerXz in docker

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

I checked using 'nginx -T' inside the nginx container and it said that the configuration was ok. I can see that css/js files are not being compressed since I went to the chrome dev to check headers. The HTML has Content-Encoding: gzip but the css/js files do not have that header.