A093641: Numbers of form 2^i * prime(j), i>=0, j>0, together with 1
3D graph, threejs - webGL ➡️ https://decompwlj.com/3Dgraph/A093641.html
3D graph Gen, threejs animation ➡️ https://decompwlj.com/3DgraphGen/A093641.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A093641.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

Https://neoacevedo.gumroad.com/l/yii2-storage
Yii2 component for storage management in cloud. It supports AWS S3, Azure Blob Storage, Google Cloud Storage but also it can be used for local storage.
#yii2 #php #dev #component #extension #azureblobstorage #azurefilestorage #googlecloudstorage #s3 #aws
I hate when people create PHP applications or packages without PHPDoc on the methods or functions.
I can see _what_ it does.
I don't know _why_.
To me, it signals me they guy was just lazy, which also means more cognitive charge to deal with maintenance.
Case in point: #FilamentPHP
#PHP #Coding #Code #Programming #Software #WebDevelopment #SoftwareDevelopment
What do you expect the following #PHP code to return? 🙃
<?php
$a = "0E1";
$b = "0E2";
echo ($a == $b ? "true" : "false");
You guys using this image? for my personal devcontainer I use the basic frankenPHP docker image...
Release v4.3.0 · serversideup/docker-php
https://github.com/serversideup/docker-php/releases/tag/v4.3.0
Not only does the dev-main branch of the #TYPO3 #Crawler Support TYPO3 14, but it also adds support for #PHP 8.5
https://blog.tomasnorre.dk/blog/typo3-crawler-with-typo3-14-support/
Context Managers: Python's 'with' is GENIUS!
Python's context managers vs PHP's try-finally - which handles resources better? INSANE difference!
#php #python #phpvspython #contextmanagers #withstatement #tryfinally #resourcemanagement #filehandling #viralcoding #pythonmagic #mindblown #programmingpatterns
https://www.youtube.com/watch?v=ojArYRcxXqg
Tried chaining a scope onto Rule::exists and wondered why it didn't work? Here's why and what to do instead. #php #laravel https://masteringlaravel.io/daily/2026-01-22-rule-exists-doesnt-work-with-scopes
Thanks to PHP Runtime creator, Milan Felix Šulc.
Vercel now supports PHP 7.4 - 8.5 🚀
https://npmjs.com/package/vercel-php
Comparing CakePHP vs. Laravel for your next PHP web app? @adamculp has the insights you need to make your decision.
On the latest Zend blog, he breaks down features, performance, scalability, and ideal use cases to help you choose the right framework for your project.
Check out the full comparison here >> https://ter.li/7winov

APIs: Breaking the Habits
🔹 Webhooks = Simple & efficient when events are enough
🔹 RPC-style calls = Clear actions, not just CRUD
🔹 HTTP Basic over HTTPS = Sometimes simpler than JWT
Do you design APIs by habit… or by real needs?
🔗 LINK: https://www.phpwayoflife.com/en/manifesto#apis
#PHP #APIDesign #BackendDev #CleanCode #WebDevelopment

the callq instruction is our call into internal function handler (zif handler), preceding two instructions prepare arguments to zif (zend_execute_data* for php arguments and zval* for return value), then we check for exceptions and interrupt/timeout. rest is just messing with php userspace stack and stack frames to make sure they align with assumptions of interpreter (execute_data variable (which is held in register %r14), execute_data->prev_execute_data and global variables current_execute_data).
no wonder php jit can provide only modest performance gains non-benchmarky code. every time it encounters call to native function, it has reconstruct interpreter state and call it in rather inefficient way.