Xander Jake de los Santos
Xander Jake de los Santos
https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-setforegroundwindow was playing around with it.. and it just flashes the app icon... so I was wondering how switcheroo does it cause I've been using it for a while.
I have [ImageData](https://docs.rs/arboard/3.2.0/arboard/struct.ImageData.html) from the `arboard` crate to get an image from the clipboard. I want to do something with that image with `photon` and save it. I'm trying to...
``` If you want to use a built-in Node module, add a "node:" prefix (ex. "node:assert"). at file:////sveltekit/server/chunks/firebaseAdmin-918fac7a.js:20:26 const module = await import('./hooks.server-8f6f964b.js'); ``` I get this error after building...
I saw your blog post on using tensorflow with rust. I'm trying to use your code as a template and use this [model](https://github.com/alexanderkroner/saliency) instead. This is the [.pb file](https://drive.google.com/uc?id=1Xy9C72pcA8DO4CY0rc6B7wsuE9L9DDZY&export=download) I'm...
[members].map(() => makeGroupMembership(member)) would cause a `Concurrent operation` ConflictError
https://github.com/blockstack/radiks/blob/be57ef02595e5cbe44164550a86799dcb195f0cf/src/models/user-group.ts#L65 This might be caused by `makeGroupMembership()` saving the `userGroup` every time its called. My solution for this is to sequentially call `makeGroupMembership()` with reduce. ```js [members].reduce(async (previous, member) =>...
 Couldn't figure it out... help xD
> I have met the same problem as well, my another question is how can i get my invitation from other people's userGroup You could create a model that looks...
(Assuming #76 is resolved) I got `UserGroup undefined` errors when activating a GroupInvitation. The line below would be the problem. https://github.com/blockstack/radiks/blob/0d97225e9b828d5348960236fdd4b83c266cbdaa/src/models/group-membership.ts#L91 The code above is trying to get the UserGroup...
```js notifs = await Notification.fetchList({ offset, limit, author: { $ne: username }, listId: listIds, sort: '-createdAt' }); ``` Where `listIds` is an array This should fetch Notification models with listId...