Xananax

Results 57 comments of Xananax
trafficstars

Having an image underneath is a workable solution, at least for movements without too much overlap. I'm gonna try that. Thanks for all the hard work!

There's https://github.com/roovo/obsidian-card-board which does this, but cards can't be dragged around, and it cannot do what Kanban does (simple one file markdown with tasks). I use both for different usages....

I did a migration script (~~stolen~~ inspired by sqlite's one): ```typescript import fs from 'fs' import { Database } from 'better-sqlite3' import { join } from 'path' type Migration =...

So is there some guideline regarding how to integrate sockets with a svelte-kit app? As far as I understand, the path of least resistance at the moment is to use...

The pill was my intention, but I wanted to get something out before release and without adding too much code complexity. It doesn't need to show only on hover: 1....

Copy pasting is prevented by the browser sandboxing webgl applications, but we can probably work around it with a custom js interface. Searching is going to be less simple to...

So after looking into it, it doesn't seem like copy-pasting has a good solution. You can invoke methods to copy to the clipboard and intercept requests to paste from Javascript....

If we want pasting, the solution that Winston proposes is probably pragmatically the best solution. It isn't difficult to do, and we can invoke it from Godot without issues, whether...

I think I already do. If I understand correctly: - Arch's `python-pyqt5` provides Debian's `python3-pyqt5`, `python3-dateutil` - Arch's `qt5-declarative` provides Debian's `qtdeclarative5-models-plugin`, `qml-module-qt-labs-settings`, `qml-module-qt-labs-folderlistmodel` - Arch's `qt5-quickcontrols` provides Debian's `python3-pyqt5.qtquick`,...

I've never done that, but I gave it a shot: https://github.com/Xananax/qtodotxt2-package It seems to be... Working? I'm not sure how to test it; it works for me. A few things...