hinell

Results 63 issues of hinell

That's a nice a project. Just wanted to let you know that I wrote a [list] selection script in pure bash/zsh. Take a look (redundant link in case project rename):...

Hi. I'm unable to reach the site hosted at https://html.spec.whatwg.org from Russia. Not sure where I'm supposed to report this issue. It seems like that intermediate hosts block traffic coming...

https://github.com/nunofachada/cmake-git-semver

I request to add the following JS monorepo tooling: * [Semantic-release](../../../semantic-release/semantic-release) - automated version management and package publishing * [Changesets](../../../changesets/changesets) - Similar, but less knonw

Setting C++ Standard should be target-relative. See [<LANG>_STANDARD]( https://cmake.org/cmake/help/latest/prop_tgt/LANG_STANDARD.html) property.

From [cmake-generators.7](https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html#introduction) it follows, that: > ... _command-line tool `--help` output lists available **generators on the current platform**_ but currently we only have a hard-wired list of available generators: https://github.com/zsh-users/zsh-completions/blob/b131623ee4c46aa9a781213a3ba0e4cfd020b810/src/_cmake#L470-L486...

Well I think the example given in the [TenthLine.sh](https://github.com/haoel/leetcode/blob/master/shell/TenthLine.sh) is a pure cheating. Here a few good examples for faster bash solution: ```bash declare i=1; while read line; do ((++i));...

- https://github.com/microsoft/vscode/issues/32461 VSCode users experience serious issues with storage space wasted because of growing cache size in huge C++ projects. I propose to localize critical clangd cache data to `.vscode/`...

enhancement

Hi. I request to add the following fields: * [`"scope": ...`](https://code.visualstudio.com/docs/editor/userdefinedsnippets#_language-snippet-scope) * [`"isFileTemplate": ....`](https://github.com/microsoft/vscode/issues/145929)

Currently we don't have a sane context matching syntax, so I wrote a small script that can be used to match snippets against major languages: ```js global function ctxmatcher (scope,name,c)...