Garland Crow

Results 12 comments of Garland Crow

So my suggestion above will indeed be missing the additions that smelte makes to the tailwindcss classes so won't show up in autocomplete. And the way its implemented now smelte...

My final solution: create: `tailwind.custom.js` ```javascript module.exports = { // my tailwind config } ``` create: `tailwind.config.js` ```javascript // merge my config w/ smelte tailwind config, just like they do...

Yea I noticed that before and install rsw with cargo. RSW starts fine when I run "rsw watch" and says it's watching the correct folder, it just doesn't actually react...

`tracer` is the where the folder created using `rsw new` and added to the `rsw.toml` folder. My system is: - `Microsoft Windows [Version 10.0.22000.795]` - `node 16.16.0` - `npm 8.14.0`...

Ok ran that w/ the debug flag and I don't get those 2 rsw::DEBUG lines, so I'll build locally later and dive into the code a bit and let you...

I've seen this pop up here and there and I've noticed that wiping out `node_modules` and recreating always fixed for me but sometimes I have had to do that a...

@sebastiandedeyne I was playing around for the past few days trying to get Vite + InertiaJS + Svelte to work. Initial attempt was to do the same thing as a...

Yea I'm kinda in the same boat. I love Chatbox and don't really want an alternative but want to try claude3 so have no other choice. Even if you had...

I did manage getting it to work via a customType, but with a slight inconvenience: ```js const cuid = customType({ dataType() { return 'varchar(191)' // match prisma }, toDriver(value?: string)...

It seems this [line](https://github.com/broadinstitute/cromwell/blob/d967bcdba2cf8d321c34837eceba2b48a62aa42b/supportedBackends/google/batch/src/main/scala/cromwell/backend/google/batch/util/BatchUtilityConversions.scala#L14) in the cromwell code is building the zones string like "zones/us-central1-a,uscentral1-b", where the spec according to google [https://cloud.google.com/java/docs/reference/google-cloud-batch/latest/com.google.cloud.batch.v1.AllocationPolicy.LocationPolicy.Builder#com_google_cloud_batch_v1_AllocationPolicy_LocationPolicy_Builder_addAllowedLocations_java_lang_String_](https://cloud.google.com/java/docs/reference/google-cloud-batch/latest/com.google.cloud.batch.v1.AllocationPolicy.LocationPolicy.Builder#com_google_cloud_batch_v1_AllocationPolicy_LocationPolicy_Builder_addAllowedLocations_java_lang_String_) is to have "zones/" before each one when...