


EfisioDev
86 posts

@efisiodev
💯 Enseño programación y buenas prácticas 📖 Angular, JavaScript, TypeScript 🧑💻 FrontEnd Lead 🎓 Profesor colaborador universitario 🧑🏫 Instructor Udemy








I am experimenting with @ChromiumDev 's Built-in-AI capabilities within @angular I was actually looking for something which can convert natural language to dates, like "next monday", "last week", "last month", etc. Got it working at somewhat level with a pre-defined system instructions, but as it's built-in-AI within browser, with limited resources, it hallucinates some times! Code available at github.com/ngxpert/smart-… Give it a star if you like it! Let me know your thoughts!

Spread syntax in templates [...] You can now use the spread/rest operator (...) inside Angular templates. This works in the following scenarios: ▶️ Object literals: {a: 1, ...foo} ▶️ Array literals: [1, ...foo] ▶️ Function calls: fn(1, ...foo) Angular handles this efficiently by using its "pure function" system. This means it won't keep re-creating the object or array unless the data actually changes, which helps keep your app fast.













