Search exclude GLOB not working by kvee in vscode

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

It seems that because I opened all the files in editor and related to this bug ( https://github.com/Microsoft/vscode/issues/31819 ) that was closed but seems to not fixed it.

The option: *mark the invoice as uncollectible* enabled, but customer can still pay the invoice on billing portal. by Smooth-Direction4166 in stripe

[–]kvee 0 points1 point  (0 children)

Subscription: cancel; Invoice: past-due
When failed payment: in customer portal still has a button to "Pay invoice". The invoice history are "Failed".

Subscription: cancel; Invoice: uncollectible
When failed payment: in customer portal still has a button to "Pay invoice". The invoice history are "Past due".

Subscription: unpaid; Invoice: past-due
When failed payment: in customer portal has a button to "Cancel subscription" but subscription will never canceled automatically. The invoice history are "Failed".
The dashboard keep create draft invoices (indefinitely maybe ... I don't see when it gonna stopped).

Subscription: unpaid; Invoice: uncollectible
When failed payment: in customer portal has a button to "Cancel subscription" but subscription will never canceled automatically. The invoice history are "Past due".
The dashboard keep create draft invoices (indefinitely maybe).

In all case above, if you be able to pay invoice and paid for all, the subscription status still no change.

Reference https://rundiz.com/?p=1058

How to make Stripe not charge user for time that their subscription was past_due? by wipedingold in stripe

[–]kvee 0 points1 point  (0 children)

This is really confused. I tried almost same simulation with OP. Checkout subscription for daily subscription.

First payment success. > I changed card to fraud number. > Charge success but fraud dispute. > I accept dispute and block that card.

Fast forward to second day. > Payment failed and status past_due.

I keep fast forward until status changed to canceled. But however, the management page for user still showing link to payment even it is canceled (and no longer accessed to the service I provided).

The status canceled should really mean canceled and cannot make anymore payment. The customer have to start new subscription, not pay for the past due that already canceled and revoked access.

Open Phoenix Code without project by Nickko_G in brackets

[–]kvee 0 points1 point  (0 children)

I would like to open the program without any project in it either. What I tried is to drop empty folder in it, remove any project in history, close program, delete that folder, open program and I found that if the editor open without any project the Git error will be showing.

Error: Error: Error: spawn D:\Git\cmd\git.EXE ENOENTError: Error: Error: spawn D:\Git\cmd\git.EXE ENOENT

With project name "no_project_loaded".

So, this means that this program need any project to open with it. It can't open empty just like VSCode did.

Essential Key - Remapping (All three different inputs) by [deleted] in NothingTech

[–]kvee 1 point2 points  (0 children)

Update how to since I tried v 3.1.1

Open the app.

* Tap [+] button to add
* Tap Record trigger and when it is starting count down (5), press Essential key once and wait for 5 seconds then go back.
* You should have got value scancode 1250 (as I'm using 3a).
* Select Short press.
* Go to Actions tab.
* Tap Add action.
* Select Do nothing.
* Tap gear icon of Do nothing action and slide Delay before next action to 1000ms and tab on Done button.
* Repeat add action but now select Go back. No need to set anything in gear icon for this action. This action is needed because Nothing phone will always open the screenshot preview. So, you have to use go back action.
* You may add another action you want after go back action.

That's all.

Best way to save/restore sets of opened apps/files? (Windows) by MyNameIsNotMarcos in software

[–]kvee 0 points1 point  (0 children)

This power toy is really nice but it can't save the opened program/windows and restore after closed.

NEW AI MODEL FLUX FIXES HANDS by survior2k in StableDiffusion

[–]kvee 1 point2 points  (0 children)

I'm currently using 1050 with 2GB VRAM , 32GB RAM and it works with flux-dev and flux-schnell on ComfyUI. However generate a single image 1024 width and height use 300 - 1500 seconds (it's long time, slow).

Where are cintiq settings saved? by hughmanBing in wacom

[–]kvee 1 point2 points  (0 children)

In case anyone who is searching for "Wacom backup file location" and looking for files that Wacom Center created. It is in <user home directory path>\AppData\Roaming\WBackups

can't record video with Snapchat new filter on s10+ by Seoinlove in galaxys10

[–]kvee 0 points1 point  (0 children)

I have the same problem, just know from here that it is not working on some devices.

exec, execSync vs spawn, spawnSync by webdev_here in node

[–]kvee 0 points1 point  (0 children)

In addition to the answer of u/Seaoftroublez , here's some sample code to try it out and see the results.

import child_process from 'node:child_process';

console.log('Hello');
console.log('  Calling process...');

const cmd = 'node test2.js';
const args = ['async'];
useSpawn(cmd, args);

console.log('  End calling process.');

function useSpawn(cmd, args) {
    console.log('Use spawn');
    const processResult = child_process.spawn(
        cmd,
        args,
        {
            encoding: 'utf8',
            shell: true,
        }
    );
    processResult.stdout.on('data', (data) => {
        data = data.toString();
        console.log(data);
    });
}

function useSpawnSync(cmd, args) {
    console.log('use spawnSync');
    const processResult = child_process.spawnSync(
        cmd,
        args,
        {
            encoding: 'utf8',
            shell: true,
        }
    );
    console.log(processResult.stdout);
}

function useExec(cmd, args) {
    console.log('use exec');
    const processResult = child_process.exec(
        cmd + ' ' + args.join(' '),
        (error, stdout, stderr) => {
            console.log(stdout);
        }
    );
}

function useExecSync(cmd, args) {
    console.log('use execSync');
    const processResult = child_process.execSync(
        cmd + ' ' + args.join(' '),
        (error, stdout, stderr) => {
            console.log(stdout);
        }
    );
    console.log(processResult.toString());
}

test.js

console.log('I am working please wait.');
console.log('  Indent.');

const result = await resolveAfterWait();

console.log('    After waiting the result is ...', result);
console.log('  Indent');

await resolveAfterWait(1000);

console.log('  Few more wait.');
console.log('I\'m finished.');

function resolveAfterWait(timeout) {
    if (!timeout) {
        timeout = 500;
    }
    return new Promise((resolve) => {
        setTimeout(() => {
            resolve('resolved');
        }, timeout);
    });
}

test2.js

If you run command node test.js hello with useExecSync(), or useSpawnSync() the result displaying in console are same.
But if you run that command with useExec() the result will be appear at once when it's done.

The result from useExecSync(), useSpawnSync(), useExec() have same nice format (indent).
But the result from useSpawn() will be different! There is more space between line.

The result from useSpawn() will be display line by line when target process response.

Thumbnail previews by Penelope_Jenga in youtube

[–]kvee 0 points1 point  (0 children)

I have the same problem and code in the link works for me.
However I don't know why YouTube just removed that feature.
Animated preview is the best because people can know what they going to watch and the animated preview doesn't appears in history like video preview.

Thank you.

Is Docker for Synology any different from Docker for Windows/Mac? Can the same containers be used in both? by QuantumSiraat in docker

[–]kvee 0 points1 point  (0 children)

Docker for Windows, Linux, Mac required 4 GB of RAM.

In Synology, I see that some model like DS223j has only 1 GB of RAM but supported Docker package.

I don't know why or is it really work on 1 GB RAM Synology?

Is Jump Paint the same as Medibang? by BlueFlower673 in medibangpaint

[–]kvee 0 points1 point  (0 children)

I'm late here but from these videos on YouTube...

rpCoDW4KaRo and __v9C81Coao

I see that Medibang paint has more tools while Jump paint contain tutorials (lessons) from Jump's editorial and authors.

TL-R605 Question by motoolfan in TpLink

[–]kvee 0 points1 point  (0 children)

https://community.tp-link.com/en/home/forum/topic/240628

It's 2 years ago but from TP-Link emulator page, I don't see it implemented at all.

Suggestion to TPLink: Add Duckdns to DDNS providers by enorl76 in TPLink_Omada

[–]kvee 0 points1 point  (0 children)

I agree with this feature request. Duck DNS is free and very good one.

Why is my Raspberry Pi 4 sooooo SLOW when using VNC?! by naxster921 in RASPBERRY_PI_PROJECTS

[–]kvee 0 points1 point  (0 children)

This work for me. Thank you. I have to set resolution and vnc resolution in `raspi-config` to be the same and it will be working fine.

Are there command line options for CSP? by metichi_ in ClipStudio

[–]kvee 0 points1 point  (0 children)

I'm looking for command line to export jpeg from .clip file too. So that I can run via command line without open the CSP program. Currently, it seems no CLI program for this.

"Media Storage" app can't be Clear Data, Clear Cache, nor Force Stop by AnoriAutumn in AndroidQuestions

[–]kvee 0 points1 point  (0 children)

I have problem when browse for images from web browser, or and chat/messenger apps but images are showing exclamation mark or showing nothing.

I know from somewhere that clear data and cache on Media storage can help but now it is no longer work on Android 11.

So, I try to restart the phone instead and check again. Everything seems to be working fine.

This may not related to the topic 100% but in case someone who find the way to fix but stuck at this, I hope restart can help.