Agustin Ranieri

Results 11 issues of Agustin Ranieri

## Description I'd like to compare C strings but when defining `DOCTEST_CONFIG_TREAT_CHAR_STAR_AS_STRING` the compiler throws this error: ``` /usr/local/include/doctest.h:1278:89: error: ‘value’ does not name a type; did you mean ‘si_value’?...

Tried to install `numix-gtk-theme` on Ubuntu 22.04 LTS in a VirtualBox VM, but `add-apt-repository` couldn't find `ppa:numix/ppa`: ``` $ sudo add-apt-repository ppa:numix/ppa [sudo] password for user: Repository: 'deb https://ppa.launchpadcontent.net/numix/ppa/ubuntu/ jammy...

### Is your feature request related to a problem? I find it a little bit difficult to find each app I use for a certain moment of my day, eg:...

With this update, CSpec could be included in a CMake project without any installation by adding these lines to `CMakeLists.txt`: ```cmake include(ExternalProject) ExternalProject_Add(cspecs GIT_REPOSITORY https://github.com/mumuki/cspec CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=${CMAKE_BINARY_DIR} ) include_directories(${CMAKE_BINARY_DIR}/include) link_directories(${CMAKE_BINARY_DIR}/lib)...

CMake allows to include an external project with Git adding these lines: ```cmake set(EXTERNAL_PROJECT_DIR ${CMAKE_BINARY_DIR}/external) include(ExternalProject) ExternalProject_Add(cspecs GIT_REPOSITORY https://github.com/mumuki/cspec CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=${EXTERNAL_PROJECT_DIR} ) include_directories(${EXTERNAL_PROJECT_DIR}/include) link_directories(${EXTERNAL_PROJECT_DIR}/lib) link_libraries(cspecs) ``` But it fails because...

I'm using WSL2 to follow the course, and there was an issue with this example project: auto-reload didn't work. It was throwing this error every time I updated a file...

In order to be scalable for the future, years should be represented as two digits since the next century: ```java const const year = Date.now().year() print(year) // -77 ```

### Describe the bug I opened VSCode in an Angular application and accidentally clicked Metals tab. There are two files that got generated and they shouldn't because I'm **not** in...

I'm not really sure on how to reproduce this, but after working on a project for quite some time I'm getting this error every time I focus on a templ...

bug
vscode
NeedsInvestigation

It would be great if we were able to write this: ```templ script mul(a int, b int) { return a * b; } script double(num int) { return @mul(num, 2);...

enhancement
scripts
NeedsDecision