Mustafa Akar

Results 7 issues of Mustafa Akar

In the current implementation, the noot node is always marked as an articulation point but this is not correct. To determine if the root node is an articulation point, an...

When I try to use this example code, it doesn't even compile. In the `Payment.Create` call, an option parameter is used but it is not initialized. Initialize it to better...

`resizeToAvoidBottomInset`s default is documented as `true` in readme but it is clearly `false`. From `persistent-tab-view-widget.dart`: > this.resizeToAvoidBottomInset = false,

I noticed that even though I set the token URL in the environment file, it didn't take effect. I traced the problem and found that it is caused by a...

We can check the NFC availability using `NfcManager.instance.isAvailable()`, however, if this returns false, I need to know if the hardware device doesn't support the NFC technology or if the NFC...

A `--version` flag is added by default to all CLIs. It prints `[ExecutableName] 1.0.0` How does one specify the version of CLI?

# Problem I am trying to get the disk usage size of a container using `docker inspect`. [`InspectContainerAsync`](https://github.com/dotnet/Docker.DotNet/blob/c0f44a7000221a7bc1ced1154939e19caeea067a/src/Docker.DotNet/Endpoints/ContainerOperations.cs#L66) call returns a [`ContainerInspectResponse`](https://github.com/dotnet/Docker.DotNet/blob/c0f44a7000221a7bc1ced1154939e19caeea067a/src/Docker.DotNet/Models/ContainerInspectResponse.Generated.cs#L107) object that contains `SizeRw` and `SizeRootFs` fields. However,...