Sometimes heroku pg:copy fails, in that case, we can use pg_restore command
Get the credentials
heroku pg:credentials DATABASE_URL -a <app-name>| 0:00So Andre Karpathi, he's the guy who literally helped build modern AI, who was at OpenAI, who got Tesla autopilot | |
| 0:077 secondsworking, and who coined the term vibe coding. He just told us if you're still building apps the way you were last year, he's got bad news for us. So he | |
| 0:1515 secondsjust gave a brilliant talk. I've spent hours breaking it down to help you understand how it may affect what you build as a developer, founder, or | |
| 0:2323 secondssoftware company. Thanks to monday.com for sponsoring this video. More on them later. In the next few minutes, I'm going to walk you through what he actually said about 2026, what it means | |
| 0:3232 secondsfor what you should be building and how you should be building, and the four frameworks that I think every AI builder needs to have in their head right now. | |
| 0:3939 secondsI'm Rob from Switch Dimension, and if you're trying to build with AI in 2026 and beyond, this might be the most important video you watch this month. | |
| 0:4646 secondsSo, stick with me. This kind |
In this project we will learn what is Bloc and how to use it by practical examples provided in
https://bloclibrary.dev/#/coreconcepts
Read more on https://dart.dev/tutorials/language/streams
| const Realm = require("realm"); | |
| const Post = { | |
| name: "Post", | |
| properties: { | |
| timestamp: 'date', | |
| content: 'string', | |
| title: "string", | |
| comments: 'Comment[]' | |
| }, | |
| }; |
https://github.com/ChristianChiarulli/LunarVim
You can follow the steps in the README file, install required dependencies
| -- Login to psql and run the following | |
| -- What is the result? | |
| SELECT MAX(id) FROM your_table; | |
| -- Then run... | |
| -- If your_table_id_seq is missing, then first create it | |
| CREATE SEQUENCE tablename_colname_seq; | |
| -- This should be higher than the last result. |
After setting up docker to generate React app without installing node js in https://gist.github.com/przbadu/4a62a5fc5f117cda1ed5dc5409bd4ac1 It was confusing to some of the devs, how to run react app, so I am creating this as second step to the configuration.
cd my-react-app
touch Dockerfile Dockerfile.dev docker-compose.yml .dockerignore