Your cart is currently empty!
Ubuntu Setup, MoLogic – 03.11.2024
Download Ubuntu and Install on machine. Download Ubuntu, install onto my machine preferably a Thinkpad with or other cheap laptop with USB-C and great Linux support. The installation is a minimal installation. Run apt update and apt upgrade These two commands will bring your repos which you rely on up to date so no* errant…
Quick Error Fix: libsql not parsing it’s files within node_modules
Next.js with Turso, when building we may run into a parsing error which would be: A “band-aid” solution to this is to change your next.config.js to parse the parse the files. A more permanent solution is to change the way and location which you are instantiating drizzle, see in this GitHub comment. Change the imports…
Setting Up Turso with Next.js and Prisma
There are two ways which you can use Turso, locally and through a connection Locally: Once you run, npx prisma generate, your dev.db file should be created and you’re ready for local development. Through a connection (Turso’s db) In order to do it through a connection we need to install the Turso CLI. Installing the…
Transferring Domains from AWS to Vercel
Although DNS records take a while, from my experience working with Vercel if you do it right it should transfer within 30 minutes. Set the name server: ns1.vercel-dns.com ns2.vercel-dns.com But what record type would it be? For figuring out nameservers within Route 53, this forum thread the is good. A part of this video is…
cbud.app – PDF Creation with PDF-Lib ; Creating Tests; Systematizing a Prisma PDF – Thu 13 Jun 2024 -Mon 15 Jul 2024
Contractor Buddy Work Notes – Part 5 Start: Thu 13 Jun 2024 01:54:42 PM CDT The project from now on is going to be focused on Test Driven Development. Okay, so I am working on, going to back the schedule page where I will be modifying the modal by writing a test first to determine…
Q3 – Tid Bits
This log in comment button could increase user interaction on a site.
Using LLMs effectively.
LLMs have a limit, I have use Claude Pro 3, GitHub Copilot and I now say with great strength that LLMs have a limit and won’t be useful as a sole tool for a very long time. So what do we do in the meantime? Treat these tools as what they are tools. One limit…
Create a React Context or add to same line, avoid prop drilling
TL;DR Prop drilling can be complicated and create buggy apps, try to avoid it. When you doing props drilling it’s important to know the limitations. A good rule is that if its small enough put it in the same component then do this. If it’s too large to put in the same component use React…