Francisco Aguilera

Results 32 comments of Francisco Aguilera

So does this mean Angular is dead in the water as it will always require management of gigs of dependencies, long CI build times, ngcc compilation, unextendible principles coupled with...

It's been a whole year since this issue was opened, could we at least get a comment from an official NX dev?

@matthijskooijman This has a bug/is missing some commands. If you are trying to use the compilation database as intellisense configuration as is done in pretty much any IDE, for example,...

Here's my solution, extending @darkopetrovic's above: ```json "version": "0.2.0", "inputs": [ { "id": "selectProject", "type": "pickString", "description": "Select a project to debug", "options": ["admin-portal", "sso"] } ], "configurations": [ {...

There's yet another bug with getting the debugger to work with NX/Next. This time it's on the vscode side. Using the nightly debugger extension fixes it. Instructions here: https://github.com/microsoft/vscode-js-debug#nightly-extension

Seconded. Need a flag to support passing other flags to the clang-tidy executable, not just headerFilter.

I'm sad that this wasn't implemented. People asking for access to default values back in 2020 were on the right track, it's often that you want to check if a...

X-Forwarded-For will only work if the client sets that header... Node.Js server, express, etc. out of the box provide a way to retrieve the client IP. It should be made...

For any future readers, I found out that Azure will always set the "X-Forwarded-For" header. It may not be available in local debugging, but on Azure it will be.

> Hm, one other solution to this (which I use), is to whitelist the Arduino compilers with clangd, e.g.: > > ``` > clangd --query-driver="$HOME/.arduino15/packages/*/tools/**/*-gcc,$HOME/.arduino15/packages/*/tools/**/*-g++" > ``` > This allows...