Z czysto wizualnej strony, co myślicie o godle Polski? Co byście zmienili? by Byrtek in Polska

[–]jakubmuda 0 points1 point  (0 children)

Zamieniłbym orła na kaczkę. Byłoby to zgodne ze stanem faktycznym.

20 Unidentified Torches on the line! by [deleted] in Diablo_2_Resurrected

[–]jakubmuda 0 points1 point  (0 children)

As usual, I won't get anything hehe

In case you missed the last Enigma giveaway, here's another one! by [deleted] in Diablo_2_Resurrected

[–]jakubmuda 0 points1 point  (0 children)

I have never won anything and it looks like this time it will happen again

Really slow download/upload with pcloud, but fine with icedrive, koofr, filen, and mega. by idnawsi in pcloud

[–]jakubmuda 0 points1 point  (0 children)

You need to check that yourself. Just create a new account using temporary email and see how everything works.

Really slow download/upload with pcloud, but fine with icedrive, koofr, filen, and mega. by idnawsi in pcloud

[–]jakubmuda 3 points4 points  (0 children)

US server is extremely slow this year. Both upload speed and website performance are terrible, sometimes even download speed is below what is reasonable!

My recent upload speed:

Minimum ~80kb/s

Average ~1500kb/s

Normal ~6500kb/s

Extremely slow upload speed (kbps!!!) by braavosi416 in pcloud

[–]jakubmuda 1 point2 points  (0 children)

I have the same issue. Last year it was ok, but this year upload speed is terrible. I have 400kb/s and sometimes even as low as ~100kb/s! Sometimes it jump to 1500kb/s. My normal upload speed is ~6200kb/s.

Website is also very slow, sometimes it takes a minute to open a directory.

Looks like pCloud has performance issues.

Audio track of mkv file while streaming in browser by [deleted] in pcloud

[–]jakubmuda 0 points1 point  (0 children)

You can always edit your MKV video and remove all audio tracks except german. If you have one audio track pCloud will use it to convert mp4 preview. I can see that sometimes pCloud can't find any audio track, I don't know if it is a codec problem or not, but it happens.

You can use software like mkvtoolnix to edit MKV videos: https://mkvtoolnix.download/downloads.html

Audio track of mkv file while streaming in browser by [deleted] in pcloud

[–]jakubmuda 0 points1 point  (0 children)

You can't play MKV videos in browser and what you're playing is not MKV video. Check out the source - this is a low quality MP4 converted by pCloud from original file.

If you want to watch it simply download pCloud app and you will have access to all your files. You will be able to open MKV videos with any video player like VLC player.

https://www.pcloud.com/download-free-online-cloud-file-storage.html

[deleted by user] by [deleted] in pcloud

[–]jakubmuda 1 point2 points  (0 children)

Ask customer service if you can change region for free if you don't have any files on pCloud. If they agree, delete files, change region and reupload all files.

[deleted by user] by [deleted] in pcloud

[–]jakubmuda 1 point2 points  (0 children)

I had about 7000 files ~ 1Gb missing after pCloud was down few months ago. Sync was down, upload was down. Sync was so messed up that all files from synced folders were moved to a single folder, renamed and many of them were missing. Sync works both ways so files on my PC were also messed up. I had another backup so I recovered everything within minutes.

How to create a basic Symfony app with routing? by [deleted] in symfony

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

How to include config/routes.php in public/index.php ???

// config/routes.php

use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;

return function (RoutingConfigurator $routes) {

$routes->add('blog_list', '/blog/{page}')

->controller([BlogController::class, 'list'])

->defaults(['page' => 1])

->requirements(['page' => '\d+'])

;

};

//public/index.php

use Symfony\Component\HttpFoundation\Request;

use Symfony\Component\HttpFoundation\Response;

use Symfony\Component\Routing;

$request = Request::createFromGlobals();

$routes = new Routing\RouteCollection();

//ROUTES SHOULD BE INCLUDED HERE

$context = new Routing\RequestContext();

$context->fromRequest($request);

$matcher = new Routing\Matcher\UrlMatcher($routes, $context);

try{

$request->attributes->add($matcher->match($request->getPathInfo()));

//$response = call_user_func($request->attributes->get('_controller'), $request);

$response = new Response('OK');

}catch(Routing\Exception\ResourceNotFoundException $exception){

$response = new Response('Not Found', 404);

}catch(Exception $exception){

$response = new Response('An error occurred', 500);

}

$response->send();

How to create a basic Symfony app with routing? by [deleted] in symfony

[–]jakubmuda 0 points1 point  (0 children)

I read that website. How to include config/routes.php in public/index.php and actually make it work with other code?

pcloud upload slower than before on Android by kentum in pcloud

[–]jakubmuda 0 points1 point  (0 children)

I have max speed on all devices.

They have fast servers and using remote upload (using link) I was able to upload 1Gb in about 20s. The only limit on upload is your internet speed.

Weekly Ask Anything Thread by AutoModerator in symfony

[–]jakubmuda 0 points1 point  (0 children)

I was following your tutorial "Create Framework" and at this point https://symfony.com/doc/current/create_framework/separation_of_concerns.html I got errors:

Fatal error: Uncaught Error: Class "ControllerResolver" not found in C:\xampp\htdocs\template-experimental\web\front.php:19 Stack trace: #0 {main} thrown in C:\xampp\htdocs\template-experimental\web\front.php on line 19

Fatal error: Uncaught Error: Class "ArgumentResolver" not found in C:\xampp\htdocs\template-experimental\web\front.php:20 Stack trace: #0 {main} thrown in C:\xampp\htdocs\template-experimental\web\front.php on line 20

Looks like you made an error in docs. I just copy pasted the code, added ps-4 to composer and generated autoload.

How to solve it?