Micah Rairdon

Results 77 comments of Micah Rairdon

I completely cleaned out my global node_modules folder and it seems to be back down to 5-6 seconds. @Olian04 how many global modules do you have out of curiousity? ```ps...

Potentially faster: `[system.io.file]::GetAttributes($_.FullName) -eq [System.IO.FileAttributes]::Directory` The downside is it only works on file systems. It'll throw an exception if you try and run it on something returned from `dir HKCU:`...

I believe you might want to repost this on the repo for Nerd Fonts. https://github.com/ryanoasis/nerd-fonts It does look like they already have one based off of Cascadia Code. It's called...

Still happening for me on Chrome 63.0.3239.132

This might be a relevant note for tackling this in xUnit: https://www.meziantou.net/parallelize-test-cases-execution-in-xunit.htm PR to use as reference: #2711 *NOTE: It runs into the same problems described here with state. Included...

My take on the feature file splitting @VitaliiDolotov introduced. This puts each scenario into its folder so they can keep the same feature name. https://gist.github.com/Tiberriver256/9ff2bf300873f70ff499255706743201

Anything we can help out on with this PR @mikepizzo?

Could you grab a trace to see where it's running slowly? Install the [Profiler](https://github.com/nohwnd/Profiler) module. Then run: ```pwsh $trace = Trace-Script -ScriptBlock { dir -Recurse | select -First 1000 |...

The commands I gave were actually just me misunderstanding the problem. I misread his problem as Terminal-Icons slowing the `dir` command down. What you'll want to do to profile your...

Looks like it worked. Everything should be in the $trace variable. Try the command suggested on the last line of that log you shared.