Akito

Results 66 issues of Akito

```nim button_switchMode.onClick = proc(event: ClickEvent) = bMode = if bMode == ENCODE: button_switchMode.canvas.areaColor = rgb(255, 0, 0) button_switchMode.text = $DECODE DECODE else: button_switchMode.canvas.areaColor = rgb(0, 255, 0) button_switchMode.text = $ENCODE...

feature

```nim procProcess(filePaths).apply( proc (x: string) = textArea.addText(x) textArea.addText(longLineBreak) ) ``` Actions like these only work, if the `TextArea` is not "full" from the user's perspective. If the whole area is...

bug

### Description Since about 2 years the sound in the client (In & Out) stops from time to time. Sometimes it happens pretty often in a day, sometimes it does...

client
audio
bug

**Glide Version**: 4.11.0 **Integration libraries**: No. **Device/Android Version**: Galaxy Nexus with API 23 Emulator through Android Studio. Works fine on same emulator with currently (as of 2021) most recent Android...

I've spent several hours on debugging an issue in my Android app, where it wouldn't connect over TOR, to a website, that was reachable the entire time through Tor Browser...

First of all, thank you for yet another great library! I wanted to contribute at least a bit, by fixing an issue I found when testing this library. 😃

I was getting an `EOF` related error, when the Dockerfile for the `app` tried to pull a 3.10 alpine image. Changing the image version to 3.11 solved the issue for...

See the initial issue: https://forum.mattermost.com/t/permission-error-but-permissions-are-permissive/13080 > Apparently, the user `mattermost` inside the Docker Image is hard-coded to user and group ID `2000`. Even though, the `mattermost` process is clearly running...

![](https://i.imgur.com/n6J7fXD.png) As you can see, it is confused by comments. Also sometimes happens in other situations: ![](https://i.imgur.com/FY6ffIf.png)

Instead of showing an unspecified error, the error should clearly state what is wrong. For example, in my case the syntax for the config was incorrect, because I accidentally did...

enhancement