php

Back Open Paginator
31.10.2025 05:46
decompwlj (@decompwlj@mathstodon.xyz)

A035497: Happy primes: primes that eventually reach 1 under iteration of "x -> sum of squares of digits of x".

3D graph, threejs - webGL ➡️ decompwlj.com/3Dgraph/Happy_pr
3D graph Gen, threejs animation ➡️ decompwlj.com/3DgraphGen/Happy
2D graph, first 500 terms ➡️ decompwlj.com/2Dgraph500terms/

#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





Show Original Post


31.10.2025 05:40
decompwlj (@decompwlj@mathstodon.xyz)

A035336: a(n) = 2*floor(n*phi) + n - 1, where phi = (1+sqrt(5))/2

3D graph, threejs - webGL ➡️ decompwlj.com/3Dgraph/A035336.
3D graph Gen, threejs animation ➡️ decompwlj.com/3DgraphGen/A0353
2D graph, first 500 terms ➡️ decompwlj.com/2Dgraph500terms/

#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





Show Original Post


31.10.2025 01:06
emaechler (@emaechler@masto.maechler.cloud)

Eine Tab One Pager Webseite – wie kann ich sowas programmieren?
chefblogger.me/2025/08/14/eine
#css #css3 #html #js #php #sql




Show Original Post


30.10.2025 23:49
post (@post@programming.dev)

Evolving PHP Streams for Async, Security, and Performance

programming.dev/post/39948136




Show Original Post


30.10.2025 22:40
radwebhosting (@radwebhosting@mastodon.social)

How to Install Centmin Mod on (5 Minute Quick-Start Guide) Here's a detailed step-by-step guide on how to install Centmin Mod on AlmaLinux VPS server.
What is Centmin Mod?
Centmin Mod is a shell-based, menu-driven installer that automates the deployment of a LEMP (Linux, Nginx, MariaDB/MySQL, PHP-FPM) stack on CentOS, AlmaLinux, and Rocky Linux servers. Designed for efficiency and performance, it ...
Continued 👉 blog.radwebhosting.com/how-to-





Show Original Post


30.10.2025 18:25
technadu (@technadu@infosec.exchange)

🚨 Massive surge in automated #botnet activity
→ Targeting PHP servers, IoT devices & cloud gateways
→ Mirai, Gafgyt, Mozi exploiting known CVEs
→ AWS & Google Cloud used to hide source
Experts warn: even low-skilled attackers can now wreak havoc with public exploit kits.

💭 Thoughts on securing production environments from automated scans?
Follow @technadu for real-time #infosec updates & research drops.

#CyberSecurity #Botnet #PHP #IoTSecurity #CloudSecurity #ThreatIntel #DevSecOps #Malware #VulnerabilityManagement #DigitalDefense





Show Original Post


30.10.2025 17:37
koehnlein (@koehnlein@mastodon.social)

The keyword “final” for classes offers many reasons for discussion. There may be valid use cases, and there are other cases where it makes other people's work more difficult.

Dear extension developers, what's the reason for marking a service class with “final” and not adding a single PSR-14 event? It's great that you've made your extension public. But suddenly I'm stuck in a dead end that you've put me in for no reason, just because it seems to be trendy to mark classes as “final” 🙄




Show Original Post


30.10.2025 16:49
pluswerk (@pluswerk@techhub.social)

🎉 The wait is over – the full agenda for the Pimcore Community Dev Days 2025 is now live! 👇🏼

- - - - - - - - - - -
8:30 a.m. Arrival and first coffee ☕️
9:00 a.m. Welcome by Dominik Pfaffenbauer and Jens Krumm

9:30 a.m. 🗣️ Marko Čučković (Factory.dev): Pimcore & AI – New possibilities with RAG and MCP (followed by networking break)

11:15 a.m. 🗣️ Stefan Priebsch (thePHP Consulting Company): Why clean code is important and how to implement it in everyday life with little effort

12:15 p.m. Lunch Break

1:45 p.m. 🗣️ Alexander M Turek (easybill): Deep dive into Symfony's Dependency Injection Component (followed by networking break)

3:30 p.m. 🗣️ Dietmar „Dietz” Rietsch (CEO Pimcore): Masterclass ‘Agentic PXM’ – how AI and agent-based systems are revolutionising PIM, DAM and DXP

4:30 p.m. Short Break
4:45 p.m. Closing

- - - - - - - - - - -

ℹ️ Infos t1p.de/exsej
🎟️ Tickets t1p.de/hlbkj
🤝🏽 LI Event t1p.de/8fhoa

#Pimcore #PCCD25 #Symfony #PHP #TechEvent




Show Original Post


30.10.2025 16:19
colinstu (@colinstu@birdbutt.com)

I love you #FreshRSS but wow is there one feature I wish existed and would turbocharge my ability to read and keep up on #RSS...
Please add grouping by day...
Opened a Feature Request issue for it github.com/FreshRSS/FreshRSS/i

(Also hey if any #PHP wizards wanna contribute and take this one on... I'd love you!).
(Some basic grouping is already done so I can't imagine why this couldn’t ostensibly be extended a tiny bit further...)




Show Original Post


30.10.2025 15:54
zend (@zend@phpc.social)

🗓️ NEXT WEEK | Join Matthew Weier O'Phinney ( @mwop ) at 1 P.M. EDT on Thursday, November 6, for a webinar diving into how to build a PHP security roadmap, including leveraging observability metrics and logs to detect issues before they become problems.

Can't make the live broadcast? No problem. Register now, and we'll send an on-demand recording after the presentation.

Save your spot >> ter.li/1u8tn8

#Zend #PHP





Show Original Post


30.10.2025 15:15
ossobuffo (@ossobuffo@phpc.social)

Ever wondered whether it's faster to directly cast a variable versus invoke a casting function in PHP?

I wondered, so I wrote a script that calls (bool) $int 1000 times, then invokes boolval($int) 1000 times. It turns out that boolval() is between 15% and 250% faster than an explicit cast.

I'll bet the same is true for intval(), floatval(), and strval().

(There may be weird PHP optimizations going on, so this is not necessarily scientific.)

#PHP




Show Original Post


30.10.2025 14:36
hardworm (@hardworm@mastodon.moscow)

#php #ai болваны разочаровывают. Писал задачу про безопасность - есть в проекте CVE. Мало того, что нужно в проекте повысить версии пакетов в composer.lock что-бы убрать CVE. Надо еще обновить compose.json что бы версии были не ниже текущих исправленных. 3 ai вообще теряются как джуны на собеседованиях. А я точно помню, что я такое слышал на конфе... толи от Александра Макарова (yii), возможно от Валентина Удальцова.... короче главные по php тусе.

Ожидаешь от ai более широкого кругозора, что он все помнит. А вот нифига.





Show Original Post


1 ...347 348 349 350 351 352 353 354 355 356 357 ...526
UP