LoganDark
LoganDark
I'm trying to use `coz` and coz-rs to do profiling things to a Rust application but I'm running into issues. The application is being built in release mode with debuginfo....
Hey, I'm trying to use coz to optimize an algorithm written in Rust, but I keep having issues. There are a couple layers of indirection so coz keeps saying that...
I am trying to profile a [`softbuffer`](https://github.com/john01dav/softbuffer) application, because I have to implement my own color blending (among other things). I'm using `flamegraph` directly like so: ``` PS Microsoft.PowerShell.Core\FileSystem::\\wsl$\Ubuntu-20.04-WSL2\home\logandark> flamegraph...
Looks like this project has the same mistake that [`cloc` had](https://github.com/AlDanial/cloc/issues/613) that was reported by me around 9 months back. `.scss` files are counted as "Sass" rather than "SCSS", even...
Say my project structure is like this: ``` tsconfig.json programs/ program-1/ main.ts something-else.ts program-2/ main.ts utils.ts cool.ts program-3/ main.ts lol.ts ``` and I want each `main.ts` to have all its...
`nom` is currently missing an inverse of the `cut` combinator, making it unfortunately quite difficult to use `cut` without "infecting" the entire parser chain with cascading failure. I ran into...
I'm trying to parse Lua source code, which is not UTF-8 (strings are just bags of bytes). `nom` seems to be mostly compatible with `&[u8]`, but I keep finding that...
`alttab` could support RRGGBBAA syntax for transparency: `#000000aa` or something or something else, but I would really like the option to have a transparent background so I could have my...
Maybe I want: - The icon to be centered - Some space around the text and icon - Some space between the text and icon This shouldn't be too hard,...
**Description** When resizing the window, the previous frame is stretched before any new frames are displayed. Or... maybe a new frame is drawn using an outdated uniform buffer and I...