MGSimard
MGSimard
This should be a prime classic example which supports this idea, from nearly 30 years ago. 
> This is all fair feedback. You're free to use whichever library works best for you, and the answer to that question can largely depend on the use-case(s) you have....
For a font claiming to be the be all end all _"font for developers and designers"_, the fact that it lacks basic versatility like italics is a little ironic. Guess...
Any news on this? Doing manual migrations to eslint.config.mjs is getting bothersome
> > Any news on this? Doing manual migrations to eslint.config.mjs is getting bothersome > > Feel free to submit a PR ! Spent a couple hours catching up on...
++ For a billion dollar company, I'd expect more importance placed in having correct endpoint documentation. The endpoint docs are littered with incorrectly filled types, lack of possible nullish instances...
Ran into these hydration issues myself as well while using tailwindcss; hydration error in localhost and 404 resource in prod (which delayed the CSS loading, causing unstyled flash). Looks to...
> The above comment was an answer to a now deleted comment. I had no idea Github does not trace or log deletion. > >  Regardless, the command won't...
**This is still an issue.** I run a multi-project schema with "vertexdb_" and "vertexblog_" affixes. Now that I've started work on VertexBlog and initiated my "vertexblog_" project schema it's actively...
Same thing here. ``` export const blogs = createTable( "blogs", { id: serial("id").primaryKey(), author: varchar("author") .notNull() .references(() => userTable.username), title: varchar("title", { length: 255 }).notNull(), active: boolean("active").notNull().default(false), createdAt: timestamp("created_at") .default(sql`CURRENT_TIMESTAMP`)...