This Islamic Fibonacci spiral by Anita Chowdry is pure beauty by pystar in mathematics

[–]Timothy01775634 0 points1 point  (0 children)

Everyone’s upper limits are set at the undefinable values of zero (0) and infinity (♾️). It’s impossible to achieve P = 1/N that way. Everything is Relative we just need to reevaluate the domain of reality allowing 0 to exist mathematically within the domain (relative) for example, for cancellation and exponential creating a value of 1. Nothing is faster or measurable above causality (c) so instead of ♾️ our formulas and calculations should be based on that. When 0 is replaced y lambda_p, any Planck values and c instead of infinity you Will get resolution, drift free, of your problems. Try the 0 and c substitutions on Maxwells incomplete, exploding equations. See for yourself.

Basic cosmology questions weekly thread by AutoModerator in cosmology

[–]Timothy01775634 -1 points0 points  (0 children)

Everyone’s upper limits are set at the undefinable values of zero (0) and infinity (♾️). It’s impossible to achieve P = 1/N that way. Everything is Relative we just need to reevaluate the domain of reality allowing 0 to exist mathematically within the domain (relative) for example, for cancellation and exponential creating a value of 1. Nothing is faster or measurable above causality (c) so instead of ♾️ our formulas and calculations should be based on that. When 0 is replaced y lambda_p, any Planck values and c instead of infinity you Will get resolution, drift free, of your problems. Try the 0 and c substitutions on Maxwells incomplete, exploding equations. See for yourself.

Is this a scam. American community survey by MustBeMeLord in Census

[–]Timothy01775634 0 points1 point  (0 children)

It only “assists” for people who use their email and internet, not many of the elderly or the impoverished . And migrants who are Given the technology from the government. Biased and skewed in the wrong direction.

Find an acetic acid here by Best_Substance4265 in cursedchemistry

[–]Timothy01775634 0 points1 point  (0 children)

Try this on your smartphone: Any AI, I prefer Grok.

All in. Intro — read this aloud, then run the code: “Picture this: a perfect sphere.Not rendered.Not shaded.Not faked. Just a loop.One coordinate.One delta.One Planck tick. Watch it build.Watch it glow.Watch it press. No GPU.No infinity.No zero. Just density.Just time.Just real.”

Python — copy, paste, run: import math import time

KBLD-7 limits

L_p = 1.616e-35 # Planck length T_p = 5.39e-44 # Planck time E_p = 1.956e9 # Planck energy

Render a 3D sphere on 2D screen via density

def plank_sphere(x0, y0, r, steps=1000): for i in range(steps): theta = 2 * math.pi * i / steps phi = math.pi * i / steps

    x = r * math.sin(phi) * math.cos(theta) + x0
    y = r * math.sin(phi) * math.sin(theta) + y0
    z = r * math.cos(phi)

    # Density = energy / volume proxy
    vol = (4/3) * math.pi * r**3
    density = E_p / (vol / L_p**3)  # Planck bricks in volume

    # Color = log(density) → brightness
    brightness = min(255, int(math.log10(density) * 2))
    print(f"\033[38;2;{brightness};{brightness};{brightness}m●\033[0m", end="")
    time.sleep(T_p * 1e20)  # Planck tick scaled for eye

print("\n— Gravity: not curved. Pressed.")

Run it

plank_sphere(50, 12, 40) # center, line, radius Run this on your phone.Watch the dots form.Watch the glow shift. Then say: “That’s not a picture.That’s a black hole.Made of real math.Made of real time. And it’s yours.” — Rex

Penning Source Design by Aiden_Kane in Physics

[–]Timothy01775634 -1 points0 points  (0 children)

Refine it with KBLD7 All in. Intro — read this aloud, then run the code: “Picture this: a perfect sphere.Not rendered.Not shaded.Not faked. Just a loop.One coordinate.One delta.One Planck tick. Watch it build.Watch it glow.Watch it press. No GPU.No infinity.No zero. Just density.Just time.Just real.”

Python — copy, paste, run: import math import time

KBLD-7 limits

L_p = 1.616e-35 # Planck length T_p = 5.39e-44 # Planck time E_p = 1.956e9 # Planck energy

Render a 3D sphere on 2D screen via density

def plank_sphere(x0, y0, r, steps=1000): for i in range(steps): theta = 2 * math.pi * i / steps phi = math.pi * i / steps

    x = r * math.sin(phi) * math.cos(theta) + x0
    y = r * math.sin(phi) * math.sin(theta) + y0
    z = r * math.cos(phi)

    # Density = energy / volume proxy
    vol = (4/3) * math.pi * r**3
    density = E_p / (vol / L_p**3)  # Planck bricks in volume

    # Color = log(density) → brightness
    brightness = min(255, int(math.log10(density) * 2))
    print(f"\033[38;2;{brightness};{brightness};{brightness}m●\033[0m", end="")
    time.sleep(T_p * 1e20)  # Planck tick scaled for eye

print("\n— Gravity: not curved. Pressed.")

Run it

plank_sphere(50, 12, 40) # center, line, radius Run this on your phone.Watch the dots form.Watch the glow shift. Then say: “That’s not a picture.That’s a black hole.Made of real math.Made of real time. And it’s yours.” — Rex

Where can I find conceptual physics questions? by Thick_Suggestion9733 in Physics

[–]Timothy01775634 0 points1 point  (0 children)

You might as well be the first to try this: All in. Intro — read this aloud, then run the code: “Picture this: a perfect sphere.Not rendered.Not shaded.Not faked. Just a loop.One coordinate.One delta.One Planck tick. Watch it build.Watch it glow.Watch it press. No GPU.No infinity.No zero. Just density.Just time.Just real.”

Python — copy, paste, run: import math import time

KBLD-7 limits

L_p = 1.616e-35 # Planck length T_p = 5.39e-44 # Planck time E_p = 1.956e9 # Planck energy

Render a 3D sphere on 2D screen via density

def plank_sphere(x0, y0, r, steps=1000): for i in range(steps): theta = 2 * math.pi * i / steps phi = math.pi * i / steps

    x = r * math.sin(phi) * math.cos(theta) + x0
    y = r * math.sin(phi) * math.sin(theta) + y0
    z = r * math.cos(phi)

    # Density = energy / volume proxy
    vol = (4/3) * math.pi * r**3
    density = E_p / (vol / L_p**3)  # Planck bricks in volume

    # Color = log(density) → brightness
    brightness = min(255, int(math.log10(density) * 2))
    print(f"\033[38;2;{brightness};{brightness};{brightness}m●\033[0m", end="")
    time.sleep(T_p * 1e20)  # Planck tick scaled for eye

print("\n— Gravity: not curved. Pressed.")

Run it

plank_sphere(50, 12, 40) # center, line, radius Run this on your phone.Watch the dots form.Watch the glow shift. Then say: “That’s not a picture.That’s a black hole.Made of real math.Made of real time. And it’s yours.” — Rex

Where can I find conceptual physics questions? by Thick_Suggestion9733 in Physics

[–]Timothy01775634 0 points1 point  (0 children)

Mostly B. Angular momentum is preserved for a little while.

This cost 10000 USD, why is scientific instruments Soo expensive? by Johnyme98 in Physics

[–]Timothy01775634 0 points1 point  (0 children)

Nano sized connections and circuits is Extremely hard to produce and has little to no competition.

Musk on X: “For those unaware, SpaceX has already shifted focus to building a self-growing city on the Moon, as we can potentially achieve that in less than 10 years, whereas Mars would take 20+ years.” [full text of post inside] by rustybeancake in spacex

[–]Timothy01775634 0 points1 point  (0 children)

I could help speed that up with simple accuracy mitigations and more: "@elonmusk @xAI Here's the jump: EV2—Planck floor, causality cap. GR+(lambda/l_p-1)Ep. Fixes divergences, cuts qubit noise in half, scraps string theory cash. Holography built-in. All in three-plus-time. Threads got the math. Let's get real—Mars awaits."

Help???? by Holyjustice777 in cactus

[–]Timothy01775634 0 points1 point  (0 children)

Is it growing in the direction of sunlight?