kevin
kevin
Hey @rubyowo, yes please, can you send the dotfiles?
Turns out the resource you need is either so scarce or no longer exists. But it's alright, if i manage to get a way to get clipboard or drag and...
Here's what i am doing to have it sync my clipboard: ```bash #!/bin/bash ips=($(cat ~/.config/clip-iplist)) clsport=${1:-52111} listen_clipboard() { for ip in "${ips[@]}"; do socat TCP-LISTEN:$clsport,fork EXEC:"wl-copy" & done } send_clipboard()...
Okay, here's what i think we should do. Let's execute most of this in a [`vm`](https://www.npmjs.com/package/vm). Since `three` needs all the browser stuff like `navigator` and `location`, i think it...
 Or do this. Since we're overriding it anyways, it wouldn't make a difference.
using the vm, we can run all web libs inside of it, which means it will run separately without fucking up the node's environment. And yes i am using a...
 Oh i think it exists now, maybe?
i am using node `22.3.0`
My thought was to make a way to manage the context and run web libs in that context, don't you think having a separate context for web libs is a...
No compilations needed, using node bindings api, node-gtk provides a way to use Gtk directly inside of the js. like this: ```coffee gi = require 'node-gtk' Gtk = gi.require 'gtk',...