Ryan
Ryan
> I want to know how I can put more than one SA at a time, to "add" the daily limit. You can't, the script can only use one service...
Seems to be working fine for me. [example](https://msdn.hackerc.at)
I only modified my `worker.js` to do that stuff as I'm not really good at JS but basically you want to modify line [648](https://github.com/maple3142/GDIndex/blob/84218d1cdead8e09599c7d22d73c23df682b2727/worker/dist/worker.js#L648) only. Original: ```javascript fileht += `${f.name}`;...
use ternary to check if the item is directory or file and display appriopriate output ```javascript ${(isf ? '-' : formatBytes(f.size))} ```
Most likely because the time is in UTC format and my date helper does not convert the date to the local timezone. [And it's something I'm not going to touch/fix](https://www.youtube.com/watch?v=-5wpm-gesOY).
Something like this I guess? idk if it works ```javascript function formatDate(date) { date = date.split('T'); date[1] = ((date[1].split('Z')[0]).split('.'))[0]; date[1] = date[1].split(':'); date[1][0] = date[1][0] + 8; date[1] = date[1].join(':');...
JavaScript do be like that ¯\\\_(ツ)\_/¯
@chadbrewbaker because the request is about specific CPU configuration which you cannot achieve with a virtual machine (macOS in KVM on ArchLinux in Docker). If you need to run just...
I think this should be split into 2 requests. One is for https://github.com/actions/virtual-environments to prepare Windows environments for proper memory dump configuration Second is for ~~https://github.com/actions/runner~~ Azure Pipelines Agent (sorry,...