kevin

Results 12 comments of 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...

![image](https://github.com/node-3d/node-3d/assets/68902447/d503bca1-c8f4-4cb4-9d16-85ce5bf70d5a) 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...

![image](https://github.com/node-3d/node-3d/assets/68902447/fdd6f6bd-8f7d-455e-8dc0-122cf7987205) Oh i think it exists now, maybe?

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',...