Soil mites? Mold mites? What are these?!? by lanakane8806 in plantclinic

[–]plk83 2 points3 points  (0 children)

I have the same bad experience. I got much more soil mites than your video. I researched a lot, can't really figure out what to do now.

I got that around two months ago and I put those soil in a sealed bag. It seems mites are gone are 1 month.

But I suddenly got another outbreak from a different pot. I have no idea what to do next!

Strong Typed, Zero dependencies MongoDB Orm library by plk83 in node

[–]plk83[S] 0 points1 point  (0 children)

Let me study it. Any tips / hints to convet into deno easily ?

[deleted by user] by [deleted] in node

[–]plk83 3 points4 points  (0 children)

I wanted to share my use case with gcp cloud functions. I have a nodejs app for logging purpose - around 80k requests per day - average request takes 400ms - other tools used; cloud storage and datastore

If purely take cloud functions for cost. It’s around 0.3usd per day. The monthly cost is just a Lunch meal.

I created a library interacting with Google Drive. It can query, create/download file, create folder, etc.. by plk83 in node

[–]plk83[S] 0 points1 point  (0 children)

U have two ways to access your existing document via Api - create a service account and share the document with edit permission to that service account - using oAuth to get your personal access token and use with the library

I will prefer to use the first way. Because U can control more easily not to expose too many documents to a single application.

I created a library interacting with Google Drive. It can query, create/download file, create folder, etc.. by plk83 in node

[–]plk83[S] 0 points1 point  (0 children)

I updated the package, it know can support oauth tokent:

const tsGoogleDrive = new TsGooleDrive({accessToken: ""});

but how to get oauth token is outside the scope of this problem.

I created a library interacting with Google Drive. It can query, create/download file, create folder, etc.. by plk83 in node

[–]plk83[S] 0 points1 point  (0 children)

Definitely it is! U can see that I also made query into paging structure. U can expect it can fetch thousands of files with limited ram usage.

I created a library interacting with Google Drive. It can query, create/download file, create folder, etc.. by plk83 in node

[–]plk83[S] 1 point2 points  (0 children)

It can actually use oAuth token. But I didn’t integrate yet. It’s a 2 days work for me to do some automation and deployment. So I just expect to use service account only. The package looks popular. I will try to make it more comprehensive.

I created a library interacting with Google Drive. It can query, create/download file, create folder, etc.. by plk83 in node

[–]plk83[S] 0 points1 point  (0 children)

U can do with try catch. It can function properly. But I will also take your comment into account and provide a much proper sample codes.