fakuivan
fakuivan
https://gist.github.com/fakuivan/33e681a4ae4892ff6dd3c77ae6eeda2e
[Seafile](https://www.seafile.com/en/home/) is a self hosted file synchronization server, similar in function to nextcloud, but uses a git-like [data model](https://manual.seafile.com/develop/data_model/) that makes sync much more robust and reliable. The synchronization core...
**Is your feature request related to a problem? Please describe.** PyCharm is one of the more mature python IDEs out there in terms of static type analysis, but sometimes it...
Having a package on the chocolatey repository for this would be great! https://chocolatey.org/docs/create-packages
**Describe the bug** File manager app installed by VirtualXposed crashes when trying to launch it. Here's the crash log: ```text *** *** *** *** *** *** *** *** *** ***...
``` #!/usr/bin/env bash function to_decimal () { echo "$(("$1"#"$2"))" } to_decimal 16 ff ``` The function ``to_decimal`` converts the number ``"$2"`` in base ``"$1"`` to decimal. The parser fails to...
**Is your feature request related to a problem? Please describe.** On Android apps that work as VPN providers usually expose intents that allow apps like [Tasker](https://play.google.com/store/apps/details?id=net.dinglisch.android.taskerm), [Automate](https://play.google.com/store/apps/details?id=com.llamalab.automate), [Intent](https://play.google.com/store/apps/details?id=krow.dev.scheme) and many...
The constructor `InetAddress(const char*)` used while parsing the `local.conf` file, does not properly parse link local addresses with a scope id, this is because `inet_pton` is not programmed to deal...
The chacha20 family of ciphers are not considered insecure, and are an order of magnitude more efficient on servers that do not provide hardware acceleration for AES encryption (like all...
The following code is not valid, although it does not change much, it's inconsistent with regular declaration outside enum structs ```cpp enum struct Vector3 { float x, y, z; //...