php

Back Open Paginator
25.01.2026 10:19
decompwlj (@decompwlj@mathstodon.xyz)

Now this animation is available for the 1000 sequences decomposed on my website.
Accessible from the 3Dgraph, 2Dgraph500terms and 2dgraphs pages ➡️ decompwlj.com
A little more work on axis sizing and controls.

#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


25.01.2026 10:19
decompwlj (@decompwlj@mathstodon.xyz)

4: The palindromes in base 10 (A002113) ➡️ decompwlj.com/3DgraphGen/Palin

#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


25.01.2026 10:18
decompwlj (@decompwlj@mathstodon.xyz)

3: The triangular numbers (A000217) ➡️ decompwlj.com/3DgraphGen/Trian

#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


25.01.2026 10:17
decompwlj (@decompwlj@mathstodon.xyz)

2: The prime numbers (A000040) ➡️ decompwlj.com/3DgraphGen/Prime

#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


25.01.2026 10:17
decompwlj (@decompwlj@mathstodon.xyz)

Generation of four sequences decomposed into weight × level + jump (log(weight), log(level), log(jump)) - three.js animation:
🧵⬇️

1: The natural numbers (A000027) ➡️ decompwlj.com/3DgraphGen/Natur

#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


25.01.2026 09:14
coa100 (@coa100@mastodon.social)

Check out all the cool features on Vasnic!
i know you will like them!
vasnic.wtnet9.site
You will have to login to experience them





Show Original Post


25.01.2026 05:12
decompwlj (@decompwlj@mathstodon.xyz)

Decomposition into weight × level + jump of prime numbers:
- a new classification of primes ➡️ decompwlj.com/primedecomp.php
- in 3D - threejs - webGL ➡️ decompwlj.com/3Dgraph/Prime_nu

#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


25.01.2026 05:11
decompwlj (@decompwlj@mathstodon.xyz)

A095953: Initial values for f(x) = phi(sigma(x)) such that iteration of f ends in a cycle of length 3

3D graph, threejs - webGL ➡️ decompwlj.com/3Dgraph/A095953.
3D graph Gen, threejs animation ➡️ decompwlj.com/3DgraphGen/A0959
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


25.01.2026 05:06
decompwlj (@decompwlj@mathstodon.xyz)

A095301: Numbers n such that there is some k < n with n*sigma(k) = k*sigma(n)

3D graph, threejs - webGL ➡️ decompwlj.com/3Dgraph/A095301.
3D graph Gen, threejs animation ➡️ decompwlj.com/3DgraphGen/A0953
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


25.01.2026 02:11
Crell (@Crell@phpc.social)

Bypassing #PHP visibility controls. Please don't do this often.

garfieldtech.com/blog/phptrick




Show Original Post


24.01.2026 17:11
TurboLearnPHP (@TurboLearnPHP@mastodon.social)

Proof That PHP Dominates Type Safe Collections Raw

⚡ Proof That PHP Dominates Type Safe Collections Raw - Code quality comparison! Junior developers make common mistakes, senior devs write clean code. Learn from this! Your code quality will improve!

...

youtube.com/watch?v=c_3zIoWRIrg




Show Original Post


24.01.2026 13:31
k47 (@k47@margaras.k47.cz)

tracing jit compiles a single linear path through our loop, even across calls. every exit and deviation of control flow is handled as a jump to a exit stub.

code quality could be improved. for example a pair of instructions lea xx(%rip), %rax; mov $1, (%rax) could be merged into single rip relative move. but the main overhead is the dance around initializing and destroying stack frames. most of the code is just this. actual loop while($i--) is compiled into a quite efficient binary. php was able to infer that the variable $i can be only integer and never touches its type. nice. but the rest is miserable.

(btw, php jit is the work of a single guy, which is more than impressive.)

#PHP




Show Original Post


1 ...174 175 176 177 178 179 180 181 182 183 184 ...526
UP