Ellie Huxtable
@ellie.wtf
6 months ago I had to do this a few times and toggle airplane mode š
š¬ 0
ā»ļø 0
ā¤ļø 0
I had to do this a few times and toggle airplane mode š
@support.bsky.team would love to know if there is literally any other option. Does this stop if I self host? Gonna just end up with a server replacing all my social media and streaming apps at this rate
@bsky.app I would genuinely rather delete my account.
Plus Iām currently in Berlin? On hotel WiFi? This is madness. Um. No. Wtf.
ClipArt ETC is also a great resource for a very particular kind of image: etc.usf.edu/clipart/ I dunno read it, don't fucking read it.
This is what happens sometimes in fundraising :)
dub.sh/r1djCuS thank you!! always open to good recs - what would you suggest?
the database was unreliable, has been replaced with an llm trained to generate realistic responses to sql queries
announcing lots of new ai features on github (pull requests view is down) with enhanced copilot (the website doesn't load)
I am very tempted!
using time machine to go back in time and encourage lina khan to graduate early so she can block the github/microsoft merger
š¦ š« We're currently removing the Rust engines from Prisma ORM!
In our last release, we enabled this Rust-free version for all remaining SQL DBs, it's now available for:
ā
Postgres
ā
MySQL
ā
SQLite
ā
SQL Server
š Learn how to use it: pris.ly/no-rust-eng... fuck it, one more week in berlin
Want to go beyond this thread and dive deeper with Next.js and Prisma Postgres?
The full guide in the Prisma docs walks you through setting up Next.js with Prisma Postgres and deploying it to @vercel.com.
Check it out š
pris.ly/nextjs-thre... ā
Checkpoint: If everything worked, your app should now display the data you've added to your Prisma Postgres instance in a view when running the app with `npm run dev`. š Step 5. Fetch the data in the frontend code.
Open the `app/page.tsx` file and replace the existing code with the following to query your DB & retrieve your users š š¤ Step 4: Integrate Prisma Client in Next.js.
Create a new file called `src/lib/prisma.ts` and add the following code to instantiate Prisma Client. š” Tip: You can now view and manage the data in your Prisma Postgres instance via Prisma Studio in your Prisma Data Platform Account.
Run `npx prisma studio` or visit console.prisma.io & add Alice and Bob as users in your app š āļø Step 4: Run a database migration.
To map the models from your Prisma schema to the database, run the following Prisma Migrate command. āļø Step 3: Define your Prisma schema.
Add your data models that represent the schema in your underlying database. For this app, we're defining a `User` and `Post` model for a simple blogging app. ā
Checkpoint: At this point, your project structure will look as follows: š Step 2: Install Prisma & set up a Prisma Postgres database.
When running `npx prisma init --db`, you'll be prompted to provide some information about your Prisma Postgres instance (such as a name and its region).