After 30 years with Linux, I gave Windows 11 a chance and found 9 clear problems
zdnet.com5 pointsby luismedel3 comments
; // UpdateTable : performs one integration step on U[CT]
; Differential equation is: u = a²( u + u )
; tt xx yy
;
; Where a² = tension * gravity / surface_density.
;
; Approximating second derivatives by central differences:
;
; [ u(t+1)-2u(t)+u(t-1) ] / Δt² = a² (u(x+1)+u(x-1)+u(y+1)+u(y-1)-4u) / h²
;
; (where Δt = time step, h=Δx=Δy = mesh resolution)
;
; From where u(t+1) may be calculated as:
; ┌ 1 ┐
; u(t+1) = a²Δt²/h² │ 1 0 1 │u - u(t-1) + (2-4a²Δt²/h²)u
; └ 1 ┘
;
; When a²Δt²/h² = ½ last term vanishes, giving:
; ┌ 1 ┐
; u(t+1) = ½ │ 1 0 1 │u - u(t-1)
; └ 1 ┘
;
; This needs only 4 ADD/SUB and one SAR operation per mesh point!
[0] https://www.pouet.net/prod.php?which=364 $ git-down -d bootstrap-dist https://github.com/twbs/bootstrap.git:master dist
is *way* better than $ git clone --depth 1 https://github.com/twbs/boostrap.git
$ cd bootstrap
$ mv ./dist ~/stuff/boostrap-latest
because: "C'mon, you don't have the time to be doing all that."
[ my public key: https://keybase.io/lmedel; my proof: https://keybase.io/lmedel/sigs/HFr8jtOYsBp9NKivqd9SXHvFeEjntcdyd4h9-MYksN4 ]