Herman S.

Results 12 comments of Herman S.

Same here, `navigation: false` has no effect.

>I should have read that in the Quick Start! That behavior is described by GNU [command line arguments syntax](https://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html).

In my project I added a Git submodule into `include/sleepy-discord`, then added this to my `CMakeLists.txt`: ```cmake ADD_SUBDIRECTORY(include/sleepy-discord) # ... TARGET_LINK_LIBRARIES(${PROJECT_NAME} sleepy-discord) ``` Then I run `cmake` and it configured...

Is there a workaround other than removing spaces? Why discriminate users with spaces in username so much?

Use `redis.NewStoreWithDB`

Originally it was an issue with tests being run and creating `~/.m2` folder without being told so, since Maven was set to use custom `settings.xml` which clearly defined that Maven...

`mangle: false` doesn't work for me, how does anyone manage to unescape HTML entities?

Is this still not resolved?

My approach to running arbitrary code in a sandbox (Kotlin, LuaJIT): ```kotlin fun Lua.load(chunk: String, chunkName: String? = null, env: LuaValue): LuaValue { val load = get("load") val ret =...

I assume `finish` is invoked twice for some reason, because leaving in either a context manager only or iterable wrapper only, it works as expected.