@oldperl hab schon wer macht mit? Es gäbe schweissarbeiten #heavymetal natürlich auch #holz und #solar #batterie #elektrik
Auch auch #php arbeiten
Choosing the right PHP stack is a critical decision for any team looking to maintain a competitive edge. After all, it’s not just about what works today, but what will scale for the future.
In our latest blog, Zend Principal Product Manager Matthew Weier O’Phinney ( @mwop ) shares essential insights for building the best PHP stack for your application.
Read the full guide here >> https://ter.li/apn2i0

🎟️ Tarif normal dispo !
Le SymfonyLive Paris 2026 approche — profitez du prix actuel avant qu’il ne bouge 👀🔥
📅 26–27 mars 2026
👉 Billets : https://live.symfony.com/2026-paris/registration/
#SymfonyLive #SymfonyLiveParis #Symfony #Paris #TechFR #PHP

claims in this article about php pipe operator https://phpfashion.com/en/pipe-operator-lipstick-on-a-pig are somewhat contradicted by reality.
this statement for example is just not true:
"Every single step really creates a new instance of a Closure object. For every operation. For every line."
i looked into php sources long enough to know that right here https://github.com/php/php-src/blob/master/Zend/zend_compile.c#L6611 obvious cases of pipe operators are rewritten into function calls.
if i dump the opcodes for ord($x) and $x |> ord(...), function call look like this
INIT_FCALL 1 96 string("ord")
SEND_VAR CV0($x) 1
V3 = DO_ICALL
and pipe looks like this
T3 = QM_ASSIGN CV0($x)
INIT_FCALL 1 96 string("ord")
SEND_VAL T3 1
V3 = DO_ICALL
only difference is the QM_ASSIGN and SEND_VAL instead of SEND_VAR. no closure allocation in sight.
QM_ASSIGN give you (on my ancient i5-4570) about 2 ns hit per pipe invocation under interpreter and 0.7 ns under JIT. given general php slowness, barely noticeable.
Do you use compact() when passing data to views....?
Is it an elegant shorthand or readability killer? Drop your thoughts in the comments!👇

👾 Nascondere i parametri con SensitiveParameter in PHP 8.2
Un nuovo attributo disponibile in PHP per nascondere i parametri riservati senza dover riscrivere il sistema di logging...
👉 https://www.selectallfromdual.com/blog/1711
🎤 8 days left to submit your talk!
If you build with PHP, anything PHP, we want to hear your story.
Topics we love:
💡 original ideas
🔥 modern PHP
🧠 architecture & performance
🪄 framework magic (Laravel, Symfony, etc.)
🔐 security insights
🛠 debugging war stories
🔌 APIs & integrations
💬 team culture & dev life
Submit before 19 December!
👉 https://sessionize.com/adc-dpc-wdc-2026/

#PHPUnit 12.5 released - key features:
🧪 Enhanced parallel testing: Improved worker coordination and resource management for faster test suites
#PHP #Testing #PHPDeveloper #TDD
📊 Better failure output: Inline diffs for arrays/objects, clearer stack traces with context
📈 Code coverage: New metrics for line/branch execution, HTML reports with filters
🔍 Mock assertions: `assertMockObjectCreated()` and `assertMockObjectNeverCreated()`
🧵 👇

PHP Array Identity Comparison String vs Integer Keys
Are string keys and integer keys the same in PHP arrays? This mind-blowing tutorial reveals the truth!
Watch the comparison between array with string key "1" versus array with integer key 1. The result will change how you think about PHP arrays!
Perfect for PHP developers who want to avoid subtle bugs in their code.
#PHP #Arrays #PHPTutorial #CodingTips #Programming #WebDevelopment #PHPDevelo...
https://www.youtube.com/watch?v=Zi1qnsaKY2E
🚀 Meet one of your #SymfonyOnline January 2026 #TRAINERS!
Dave Liddament will lead “Creating Custom PHPStan & Rector Rules” 🛠️
Take your PHP skills to the next level — enforce coding standards, catch bugs, automate refactoring 💻✨
📅 Workshop: Jan 20, 2026 | 9:30 AM CET
🎟️ Register: https://live.symfony.com/2026-online-january/workshop

A056020: Numbers that are congruent to +-1 mod 9
3D graph, threejs - webGL ➡️ https://decompwlj.com/3Dgraph/A056020.html
3D graph Gen, threejs animation ➡️ https://decompwlj.com/3DgraphGen/A056020.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A056020.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

A055638: Numbers k for which sigma(k^2) is prime
3D graph, threejs - webGL ➡️ https://decompwlj.com/3Dgraph/A055638.html
3D graph Gen, threejs animation ➡️ https://decompwlj.com/3DgraphGen/A055638.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A055638.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
