Gavin Ray

Results 95 issues of Gavin Ray

Had a friend who writes React ask about this and helped him figure out a working regex, here it is: ```json "headwind.classRegex": { "javascriptreact": "(?:\\b(?:class|className)?\\s*=\\s*{?[\\\"\\']([_a-zA-Z0-9\\s\\-\\:/]+)[\\\"\\']}?)", "typescriptreact": "(?:\\b(?:class|className)?\\s*=\\s*{?[\\\"\\']([_a-zA-Z0-9\\s\\-\\:/]+)[\\\"\\']}?)" } ``` ![headwind-regex](https://user-images.githubusercontent.com/26604994/87214740-4e09c900-c2fd-11ea-9b4b-60325e1454f2.gif)

documentation

Closes https://github.com/robfletcher/strikt/issues/267

It's often the case that when comparing strings, you don't care about whitespace or line terminators A big headache in many projects test suites is that multiline strings are compared,...

If anyone isn't familiar with this (somewhat obscure) SQL feature, here's a great overview: - https://blog.jooq.org/add-lateral-joins-or-cross-apply-to-your-sql-tool-chain/ ``` A very interesting type of JOIN is the LATERAL JOIN (new in PostgreSQL...

language-design

Hello, this is quite a fantastic library you've made available! The only thing I haven't been able to figure out from the examples available + source code is whether it's...

I'm not sure if what I am trying to do is possible, so I'll try to keep this brief. I have a general question, and then what I _think_ may...

This functionality is really useful for many things, and it's hard to search for/find Here are some other libraries I know which implement the same thing: - https://github.com/CoursePark/NestHydrationJS - https://github.com/umbraco/nest-hydration-dotnet...

Hello, I would like to embed Drill in a JVM application, running as a single node in-memory. I will feed it Calcite `RelNode` relational expressions to execute that my application...

I'd like to add support for using Kweb with Quarkus. A quick search through the code shows direct Ktor usage in a number of files, but nothing that looks too...

enhancement
architecture

- [x] Checked for duplicates ### Describe the bug Trying to build with `cpt.py --check-requirements && cpt.py --create-dev-env Debug --with-workdir=./cling-build/` eventually fails with: ![image](https://user-images.githubusercontent.com/26604994/118187154-95c11b80-b40c-11eb-9939-9ad2f7011253.png) Here's the section containing the actual...

bug