A052383: Numbers without 1 as a digit
3D graph, threejs - webGL ➡️ https://decompwlj.com/3Dgraph/A052383.html
3D graph Gen, threejs animation ➡️ https://decompwlj.com/3DgraphGen/A052383.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A052383.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

A052382: Numbers without 0 in the decimal expansion, colloquial 'zeroless numbers'
3D graph, threejs - webGL ➡️ https://decompwlj.com/3Dgraph/Zeroless_numbers.html
3D graph Gen, threejs animation ➡️ https://decompwlj.com/3DgraphGen/Zeroless_numbers.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/Zeroless_numbers.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

🎄 For the last event of the year, we're doing our Advent of Code event! 🎄
Join us with David Betteridge and @jamesholden on the 17th of December and bring your laptop to go through some of the challenges in PHP or in your preferred language. 🎄
Sign up here: https://www.meetup.com/leedsphp/events/312234951
Thank you to Estrato Cloud for sponsoring this event and to AutoProtect for hosting us in their lovely offices!
#leedsphp #leedstech #php #adventOfCode
So I stumble upon an edge case issue in league/uri turns out I will need to release version 7.7 for all packages to fix the issue 😭 . At least, it will save the maintenance burden in feature release. #PHP #OSS
Ran into this little quirk of (many) C-syntax languages, yesterday. Hadn't seen it before.
#PHP
```
<?php
function getApiData() {
https://example.org/api
return file_get_contents("https://example.org/api/foo");
}
```
#Swift
```
func sendNumbers(nums: [Int]) {
https://example.org/api
for num in nums {
// send to API…
}
}
```
#C
```
#include <stdio.h>
int main(void)
{
https://example.org/api
printf("hello\n");
return 0;
}
```
(code highlighting is a spoiler, here)
Yes, good tips...
API-First Laravel Projects
https://www.juststeveking.com/articles/api-first-laravel-projects/
Let's just pretend I didn't wrap an nl2br() inside an htmlentities() weeks ago and only just notice now, k?
In 6 places. 😐
PHP 8.5 Garbage Collection Improvements. #PHP
https://tideways.com/profiler/blog/php-8-5-garbage-collection-improvements
PHP 8.5 Garbage Collection Improvements. #PHP
Posted into SYMFONY FOR THE DEVIL @symfony-for-the-devil-mobileatom
RE: https://phpc.social/@Xdebug/115662135830755552
I have just released Xdebug 3.5.0!
In the next few weeks I will create some content (text, and perhaps video) highlighting some new features in more detail.
Please share it with the world!
#php #php85 #xdebug #debugging
🥳 Xdebug 3.5.0 Released!
🔥This is the first release to officially support PHP 8.5.
👣 It contains the first public release of Native Path Mapping, which allows you to map directories, files, and lines when PHP executes a file, to a location where you would edit it.
🔌 Support for communication through a control socket allows you to start debugging, or a pause a request, when a script is running.
📄 The full announcement is at https://xdebug.org/announcements/2025-12-04
🥧 You can install @Xdebug through PIE
#php people, I wrote the polyfill for the PHP #URI ext. But there's a new RFC to improve the extension which adds new methods to the already released classes. If I backport the new methods someone on PHP8.4 will get the new functionalities but the moment his/her codebase gets upgraded to PHP8.5 the code will break because the native class does not have those feature. Is there a reasonable path to mitigate this situation. @Crell, @mwop @derickr , @timwolla any suggestion ?