Sliding Cards Part 2
With the basics down, the next step in this little adventure w/ Javascript is to make it work in a React.js environment (Next.js to be more precise). There were some…
With the basics down, the next step in this little adventure w/ Javascript is to make it work in a React.js environment (Next.js to be more precise). There were some…
Part of a project I'm working on involves some animation of "cards" sliding in and out of existence. This trinity of HTML/CSS/JS serves as a basis for that functionality. The…
I asked CoPilot in Microsoft Edge to help me get started with something in a Web page to allow me flip between cards: You are an expert in Javascript and…
I've had to set these up so many times that having a starter .tar.gz will help:django-starter.tar.gz Contents Dockerfile docker-compose.yml requirements.txt Commands Shell in with service ports: docker-compose run --rm --service-ports…
The following notes apply when using Celery with the RabbitMQ broker. Celery Settings task_acks_late The Celery setting task_acks_late (by default disabled), if set, will defer message ACK with RabbitMQ until…
I'm getting into the fray that is Generative AI since, according to some, my job as a programmer will soon be taken over by some literal code cranking machine. There…
Notes on setting up a Docker/Vite/React/Redux Toolkit service in Docker. That's a mouthful. Docker Files Start with a name for the project (e.g. "myproject"). Then create these Docker files: Dockerfile…