Sometimes you need to create files for local development that you don't want to commit, but you also don't want to modify the .gitignore file or just leave them perpetually uncommitted. Here's a simple, but effective, solution. #php #laravel https://masteringlaravel.io/daily/2025-11-25-how-to-ignore-files-in-one-project-without-modifying-gitignore
I'm very excited about what I'm going to share now!
Flow #PHP just received a fully interactive playground allowing to build and execute ETL pipelines directly in the browser!! 🤯
Demo: https://youtu.be/bJm0BZUrTrg

A049329: Numbers k such that k is a substring of k^k
3D graph, threejs - webGL ➡️ https://decompwlj.com/3Dgraph/A049329.html
3D graph Gen, threejs animation ➡️ https://decompwlj.com/3DgraphGen/A049329.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A049329.html
#decompwlj #math #mathematics #maths #sequence #OEIS #JavaScript #php #graph #3D #threejs #webGL #triangular #numbers #primes #PrimeNumbers #palindromes #animation #FundamentalTheoremOfArithmetic #sequences #NumberTheory #classification #integer #decomposition #number #theory #equation #graphs #sieve #fundamental #theorem #arithmetic #research

🎉 Today’s the day, let’s get the workshops started!
🕘 Today and tomorrrow's Schedule:
09:00 – Welcome coffee & setup ☕
09:30 – Workshops begin
➡️ Full Program: https://live.symfony.com/2025-amsterdam-con/workshop
We’re thrilled to kick off #SymfonyCon Amsterdam 2025 with you! 💜🌷
#Symfony #PHP #TechConference

A049282: Primes p such that both p-2 and p+2 are squarefree
3D graph, threejs - webGL ➡️ https://decompwlj.com/3Dgraph/A049282.html
3D graph Gen, threejs animation ➡️ https://decompwlj.com/3DgraphGen/A049282.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A049282.html
#decompwlj #math #mathematics #maths #sequence #OEIS #JavaScript #php #graph #3D #threejs #webGL #triangular #numbers #primes #PrimeNumbers #palindromes #animation #FundamentalTheoremOfArithmetic #sequences #NumberTheory #classification #integer #decomposition #number #theory #equation #graphs #sieve #fundamental #theorem #arithmetic #research

Just read this nice, positive GitHub README Project article about #PHP and #Laravel from a couple of years ago, which features @zuzana_kunckova :-) https://github.com/readme/featured/laravel-community
Laravel vs Symfony: A Comprehensive Comparison of #PHP #Frameworks
This article provides a guide concerning #Laravel vs Symfony: a comprehensive comparison of PHP frameworks.
Laravel vs Symfony: A Comprehensive Comparison of PHP Frameworks
Laravel and #Symfony are two of the most popular PHP frameworks, widely used for building modern web applications. Both have strong communities, rich ecosystems, and are frequently chosen by ...
Continued 👉 https://blog.radwebhosting.com/laravel-vs-symfony-a-comprehensive-comparison-of-php-frameworks/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.raddemo.host #websitedevelopment

A049097: Primes p such that p+1 is squarefree
3D graph, threejs - webGL ➡️ https://decompwlj.com/3Dgraph/A049097.html
3D graph Gen, threejs animation ➡️ https://decompwlj.com/3DgraphGen/A049097.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A049097.html
#decompwlj #math #mathematics #maths #sequence #OEIS #JavaScript #php #graph #3D #threejs #webGL #triangular #numbers #primes #PrimeNumbers #palindromes #animation #FundamentalTheoremOfArithmetic #sequences #NumberTheory #classification #integer #decomposition #number #theory #equation #graphs #sieve #fundamental #theorem #arithmetic #research

A049096: Numbers k such that 2^k + 1 is divisible by a square > 1
3D graph, threejs - webGL ➡️ https://decompwlj.com/3Dgraph/A049096.html
3D graph Gen, threejs animation ➡️ https://decompwlj.com/3DgraphGen/A049096.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A049096.html
#decompwlj #math #mathematics #maths #sequence #OEIS #JavaScript #php #graph #3D #threejs #webGL #triangular #numbers #primes #PrimeNumbers #palindromes #animation #FundamentalTheoremOfArithmetic #sequences #NumberTheory #classification #integer #decomposition #number #theory #equation #graphs #sieve #fundamental #theorem #arithmetic #research

Hi, my #Laravel plugin ecosystem report form has already reached more than 100 responses. Have you compiled it with your opinions already?
#php #developers #programmer #webdev #form #development
https://coz.jp/TgQkU1
This is the line in question:
!texture2d.renderPassIndex
I love falsy values, I love them because I love the idea of something being 0 equals null (like other programming languages like PHP and C) but every once in a while, a little surprise like this one shows up.
That being said, I wouldn't use Typescript for this. I still don't like the idea of "compiling" in an environment that is interpreted (the web).
#php #clang #webgpu #javascript #webdev
When adding the type for the Query Builder that's passed as an argument to an Eloquent's scope, do you use `Illuminate\Database\Eloquent\Builder` or `Illuminate\Contracts\Database\Eloquent\Builder`.
I just realized they were being used interchangeably on a project I've been working on.
My initial thought would be to use always the contract (the interface is implemented by `Eloquent\Builder` and by `Eloquent/Relations/Relation`), but looking at the docs, the official stance is to import the Builder object 🤔
https://laravel.com/docs/12.x/eloquent#local-scopes
Any thoughts?