Jacques Yakoub

Results 31 comments of Jacques Yakoub

Hello @sagold , In the context of my [docusaurus-json-schema-plugin](https://jy95.github.io/docusaurus-json-schema-plugin/) library, I was also considering that your library could help me with the `$recursiveRef` / `$dynamicRef` cases. Just wondering what are...

FYI the ugly [regex ](https://github.com/Sonarr/Sonarr/blob/816cf608fcef07e375aa750a863d0a7365108981/src/NzbDrone.Core/Parser/Parser.cs) used by sonarr (C# project) to handle this case : ``` //Multi-episode Repeated (S01E05 - S01E06, 1x05 - 1x06, etc) new Regex(@"^(?.+?)(?:(?:[-_\W](?(?\d{1,3}(?!\d+)))+){2,}", RegexOptions.IgnoreCase | RegexOptions.Compiled),...

Same for me : ```json { "$schema": "https://openapi.vercel.sh/vercel.json", "headers": [ { "source": "/(.*)", "headers": [ { "key": "x-robots-tag", "value": "index, follow" } ] } ], "git": { "deploymentEnabled": { "gh-pages":...

Currently, I use a workaround on the generated schema that I don't find performant-friendly : ```js function removeUnderscoreProperties(obj) { for (var prop in obj) { if (prop.startsWith('_')) { delete obj[prop];...

Same issue I got in my [Next.js project](https://github.com/jy95/jy95.github.io). I had to update to node 20.x in Vercel

@sebasvil20 Check this https://github.com/WiseLibs/better-sqlite3/issues/1247#issuecomment-2322287457

@johnnyfish Doesn't seem, here is the sql I got with latest version : ```sql CREATE TABLE IF NOT EXISTS backlog ( id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, title text...

I noticed recently that behavior as well and so detection of my preview deployments failed ![image](https://github.com/patrickedqvist/wait-for-vercel-preview/assets/9306961/4c473e32-7574-48eb-9641-a1c52ba63e8f)

@Archim119 Did you use a RPCS3 patch ? I got a similar message on another game https://github.com/RPCS3/rpcs3/issues/8985

Will it be also helpful for this kind of issues ? ```bash Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.RuntimeException: HAPI-2200: No Cache Service Providers found. Choose between hapi-fhir-caching-caffeine (Default) and hapi-fhir-caching-guava (Android)...