pavlexander
pavlexander
Hey, Other people were commenting on relations widged but for a novice like me it was not very apparent what and how we could use it for the problem above....
The game (Rayman Origins) worked fine in Windowed mode. In full-screen mode - screen freeze/black screen.. Audio was working fine. In my case I have 3 displays. All 3 running...
After some digging through the code I see at least 1 issue that could lead to above problems. In `IOhlcvDataExtension`: var periodStartTime = orderedCandles[0].DateTime; var periodEndTime = periodInstance.NextTimestamp(periodStartTime); The date...
Alright, a question: * **Is the a reason why after the transformation - we take the first candle date-time for the resulting candle datetime?** Isn't a candle - a summary...
@JeremyCrookshank you might follow this issue instead https://github.com/lppkarl/Trady/issues/111
@Jiraiyah Unfortunately I can't comment on the issue that you are having, but I have a question. Are you using some kind of visualization tool for the data generated by...
I would also like something similar.. I was wondering if you could close the toast by clicking on it? (as opposed to waiting for it to close automatically or clicking...
nvm I figured it out ``` var toast = Toastify({ text: "This is a toast", duration: 2000, close: false, stopOnFocus: true, onClick: function () { toast.hideToast(); }, }); toast.showToast(); ```...
For anyone who interested in application-agnostic solution check this script: https://github.com/pavlexander/imageAsBase64/blob/main/powershell/pasteImageAsB64.ps1 ```ps Add-Type -Assembly PresentationCore Add-Type -TypeDefinition ' using System; using System.IO; using System.Diagnostics; using System.Runtime.InteropServices; using System.Windows.Forms; namespace KeyLogger...
> Generally speaking, `fetchDidFail` should fire before `handlerDidError`. You can see this happen at, e.g., https://sudden-futuristic-health.glitch.me/ where there's a request that fails because the domain name resolution is unsuccessful. You...