2/ Meet GRID: The world's largest coordinated network of intelligence
The GRID (Global Research and Intelligence Directory) is a network of specialized agents, models, data, tools, and compute—contributed by the world’s best builders—working together to deliver AGI-level results.
A query sent to GRID is split, routed to the right intelligences, enriched with tools like search and domain data, then merged to deliver the best output.
Sentient’s mission is to ensure that Artificial General Intelligence is open-source and not controlled by any single entity.
We’re launching the GRID: the world’s largest network of intelligence.
The GRID makes open-source the default for AI development and ensures humanity wins the future of AI.
Let’s dive in👇
Sentient’s mission is to ensure that Artificial General Intelligence is open-source and not controlled by any single entity.
We’re launching the GRID: the world’s largest network of intelligence.
The GRID makes open-source the default for AI development and ensures humanity wins the future of AI.
Let’s dive in👇
🎉 https://t.co/QzkuYoaZia is finally live in early access!
There are currently 96 videos—around 11 hours of dense content. Even more coming soon!
With the help of @xata, we have put a massive amount of work into this to help you level up your career.
I hope you love it!
Hey Laravel devs, here's a gem for you! 💎
Master request host retrieval with these methods: host(), httpHost(), and schemeAndHttpHost().
Pro tip: Use schemeAndHttpHost() for full URL scheme and host in one go!
#Laravel
Important change in Laravel installation docs.
The "composer create-project" option is removed, in favor of Laravel Installer as MAIN recommended way.
So (finally?) the newcomers will have ONE QUICK way to install Laravel:
- https://t.co/DCBH2cVfeC
- laravel new project
- cd project
- composer run dev (replacing "php artisan serve")
Of course, some devs will prefer the "composer create-project" and that still WORKS.
But it's not in the docs anymore.
Makes sense, in my opinion, it's a good move, cause installation was too fragmented with multiple options.
Now, seasoned devs will still use "laravel new" or remember the "composer create-project", but newcomers will have better docs.
Writing it as someone who analyzed the docs of a dozen CMSs this week and was frustrated with "quick start" installation instructions in most of them.
But if you disagree with such docs change, you may find likeminded people on... guess where? Yup, Reddit: https://t.co/6U45KBizgB
Laravel Tip 💡: The "isBirthday" Method
Ever needed to check whether a date is someone's birthday? Since Laravel uses Carbon under the hood, you can use the "isBirthday" method to do exactly that 🚀
#laravel
Hey Laravel devs, here's a gem for you! 💎
Handle missing models gracefully with the missing method! Customize behavior when implicitly bound models aren't found. Perfect for smart redirects and improved UX.
Pro tip: Use to suggest alternatives or popular content!
#Laravel
Hey Laravel Developers 👩💻
One of the common operations in any web application is saving a file available from an external URL.
PHP provides the file_get_contents() function to retrieve the file by passing the URL.
By combining this with the file_put_contents() function, we can save the external file.
But what if we want to pass additional headers while requesting the external file?
For example, passing Authorization headers isn't possible with file_get_contents() since it does not accept headers.
In those cases, Laravel's HTTP Client provides the sink() method, which allows us to easily pass headers and save the file to the desired path.
Plus, we also benefit from all the HTTP Client features like retries, exception handling, etc.
#laravel #php
New feature for upcoming Laravel Debugbar release; run Explain queries on-demand. Enable the db.explain feature in your config and try it out with the latest '3.14@dev'/dev-master version. Also links to https://t.co/uwnamtPhnX for a more clear view.
🚀 Laravel 11 Reverb Real-Time Notifications Example is here!
Check out how to set up real-time notifications using Reverb in Laravel 11. Learn steps from creating auth to setting up the echo server!
https://t.co/aDequC4Nzh
Laravel devs, crunch numbers with ease using this gem! 💎
Leverage Laravel's number helpers for precise calculations and formatting. Perfect for financial apps or data-heavy projects.
Pro tip: Use currency() for locale-aware monetary values.
#Laravel