Aleksandar Atanasov

Results 9 issues of Aleksandar Atanasov

### I did this Added curl as a submodule to my project to use as a dependency. No changes have been done to the contents of the `master` branch. Using...

cmake

I have a top-level project that does the following call to `glew` git submodule: add_subdirectory(deps/glew/build/cmake) For now I am excluding the importing of `GLEW::glew` (`include(deps/glew/build/cmake/glew-config.cmake)`) due to the fact that...

question

Currently the only license information can be found inside `zlib.h`. This makes automatically extracting license information (e.g. when using zlib as a dependency to another project) more difficult then it...

I am assuming that `zlibstatic` is the static version of **zlib**. I am confused as to how building `zlibstatic` is controlled. From what I am seeing add_library(zlib SHARED ${ZLIB_SRCS} ${ZLIB_ASMS}...

Hi! I've recently forked your project and decided to detach it from its Arduino dependency. We can still have the Arduino part as something extra but how about making the...

#### Summary This feature is a direct result from #606 and the solution provided there. After the initial default installation (e.g. installing microk8s from the Ubuntu Server installer) if a...

The delimiter is actually `\t` (single tabulation). The following line labels = np.loadtxt('synset_words.txt', dtype=str, delimiter='\n') needs to be changed to labels = np.loadtxt('synset_words.txt', dtype=str, delimiter='\t') In CSV files new line...

The research institute I am working for has its own GitLab instance. My team has its own group and inside we have subgroups and what not. The repository I would...

I am trying to check something in my OpenGL application (uses the latest versions of PyGame, PyOpenGL and PyImGui packages) with RenderDoc. However, RenderDoc tells me that my app's OpenGL...