๐ New in CODE Magazine: Angular Signals: The End of RxJS Boilerplate?
Iโve been diving deeper into Angular Signals - this article is a preview of what Iโm also covering in my upcoming Signals book.
Read here ๐ https://t.co/a64XrmZO7j
#Angular#Signals#RxJS#WebDev
JSON Crack (@jsoncrack): Visualize JSON data from various formats (JSON, YAML, CSV, XML) into interactive graphs.
Easily convert JSON to YAML, XML to JSON, CSV to JSON...
A VSCode extension exists too.
https://t.co/k9N3cluZqC
I built this UI with Cursor in ~5 minutes.
I wrote the backend, and Cursor handles the integration like a joke.
I know this is trivial stuff, but do you realize how many opportunities this creates?
And to think we are still early in this game. Wild.
๐๐ผ๐ป๐ณ๐ถ๐ด๐๐ฟ๐ถ๐ป๐ด ๐๐ต๐ฒ ๐๐ ๐ ๐ถ๐ด๐ฟ๐ฎ๐๐ถ๐ผ๐ป ๐๐ถ๐๐๐ผ๐ฟ๐ ๐๐ฎ๐ฏ๐น๐ฒ
When setting up the EF DbContext, you can provide a delegate to call the MigrationHistoryTable method.
This lets you customize the migration history schema and even the table name.
Four awesome Visual Studio features
... you might not be aware of!
+ HTTP files
+ Endpoints Explorer
+ Dev Tunnels
+ Paste Json as Classes
Scroll the thread for details ...
#dotnet@VisualStudio
Multiple EF Core DbContexts in a single application?
Here's when it makes sense to do this. ๐
- Working with multiple databases
- Separating concerns
- Modular monolith
- Read replicas
I did this when implementing a modular monolith application. Each module had a dedicated schema in the database and a separate DbContext in the code.
The surprising part?
How EF Core deals with database migrations and different schemas.
Here's a breakdown of how I solved this: https://t.co/iPt3fw9vPi
---
Simplify your development process โ download your free Clean Architecture template today: https://t.co/WY1EZdIbsQ
This Mexican scientist claimed we live in a HOLOGRAPHIC MATRIX where we could dynamically interact with the construction of reality. He vanished after that.
Jacobo Grinberg (1946-?), the Mexican scientist who found the link between Science and the Paranormal. He was a Mexican psychologist and consciousness researcher who carried out experiments in telepathy and extraocular vision.
Dr. Grinberg raises the possibility that, through consciousness, the human brain can being able to have control over the universe in which we live.
The Lattice, in the field of physics, is the structure in which space-time is found. For Jacobo, this proposal acquires a new meaning and it is then that he postulates the term Syntergy, which is nothing more than the neologism between synthesis and energy.
His theory proposes that, from the process that the human brain performs to decode perceptual reality, it is possible to establish links with the Lattice , and with it, make changes in space-time.
He postulates that we live in an informational matrix which he calls "the hologram", in which there is the possibility of interacting with perceptual reality not only as a spectator, but as an active participant in the construction of said reality.
It's not an end, it's a thread, so keep reading down...
URL shortener in <100 lines of code? It's possible in .NET.
Here's what you'll need:
- Component for generating unique short URLs
- A database to store the shortened URLs
- An endpoint to redirect shortened URLs
How would you implement this?