Tomáš Hübelbauer

Results 168 comments of Tomáš Hübelbauer

For Google travelers, this is the right way to use the method: ```js I.performSwipe({ x: 360, y: 180 }, { x: 180, y: 180 }); ``` Coordinates are of course...

This happened to me too and this issue helped solve it, thank you! Long story short, don't forget to call `setDefaultEdgeLabel` even for a graph that was created using `dagre.graphlib.json.read`....

Hey, I just tried extracting a backup that I know is encrypted to see what would happen and I got a bunch of TXT files with binary contents. I wonder...

Thanks @da3x, this helped me. I created a PR to mention this in the readme. @vgmoose would it be possible to display a banner in the app in case the...

FWIW I just tried the app today and it correctly displayed a date for a backup I captured yesterday. This might have already been fixed, in case you want to...

Are you trying to decode this image as is shown or through a camera? I'm asking because I also had problems feeding this library images which were generated, but when...

This happened to me as well as I think it was caused by me playing arround with `shamefully-hoist = true` in `.npmrc` and running `pnpm install` in a workspace which...

```typescript export default function test(str: string): void; export default function test(num: number, str: string): void; export default function test(arg: string | number, str?: string) { console.log(arg, str); } ``` Output:...