Brent Arias
Brent Arias
I have the same problem. On my Windows 10 Pro (v 1803) I created my container from a powershell prompt: `docker run -d -p 1433:1433 --name sql1 -e sa_password=SecurePassword -e...
I think I found the problem for both myself and @joelGarcia93 ## Password Complexity In my case, the password "SecurePassword" does not pass complexity validation. Instead of receiving an error,...
I agree with @jubishop that PicoCSS not having a responsive hamburger menu is the "elephant in the room." Consequently I have created a [responsive CSS-only hamburger menu for PicoCSS](https://codepen.io/brentarias/pen/gOQybod) (no...
Where do I shop styles that *other* users have generated? I found only [this one source](https://www.patreon.com/posts/sebs-hilis-79649068). It claims I just drop the `styles.csv` into the stable-diffusion web UI root folder.
I have an update. I found a workaround. I'm using `InMemorySink.Instance` within the context of my MSTest automation. All of the MSTest automation routines are declared `async`. I became suspicious...
To answer your question, the initialization is enacted within a unit test framework: ``` [TestInitialize] public async Task Initialize() { // bla, bla, bla, blah } ``` So yes, I...
As of now I discovered that if I simply change the signature to remove `async` from my [TestInitialize] method...the problem goes away! None of my other plugins had `async` on...
All of my plugins have an associated plugin test project. All of those test projects use `async` test methods. So if you want to reproduce the problem, be sure to...
After I made this post, I discovered the command `az staticwebapp up`. I wonder if the solution to the entire problem, of `az webapp up` not working with a static...
I have the same problem. When I change an SVG icon, the dev-debugger reports its awareness that the file changed...but makes no effort to re-compile anything. I have to completely...