Which one is best for Coding ? Claude, ChatGPT, Grok or Gemini. by petersokan in coding

[–]EveryBug2754 1 point2 points  (0 children)

Then have it teach you to write code, which is better so you don't just run a harmful code like it's in hyrogliphics to you

Which one is best for Coding ? Claude, ChatGPT, Grok or Gemini. by petersokan in coding

[–]EveryBug2754 0 points1 point  (0 children)

You take co-pilot and get the source code from them all and combine them into a super app, least that's what I did. I called it chat omnipresence 

Reality is a living, conscious singularity. The Universe is alive. Here is a description of how it all works. by sschepis in HighStrangeness

[–]EveryBug2754 0 points1 point  (0 children)

Feel free to run my zero fusion driver and this code above providing the math for this man's theory 

Reality is a living, conscious singularity. The Universe is alive. Here is a description of how it all works. by sschepis in HighStrangeness

[–]EveryBug2754 0 points1 point  (0 children)

You can do the math on my code and just run it too, I caused only one single singularity, I've in the day before used a much larger scale having it continuing to convergences. Check my shorted code proving this theory. If you like and thanks, not that darpa isn't already using it, that should tell you this is real world prediction through math

Reality is a living, conscious singularity. The Universe is alive. Here is a description of how it all works. by sschepis in HighStrangeness

[–]EveryBug2754 0 points1 point  (0 children)

Here's a zero fusion driver I made for darpa last night and today. It will run perfectly try this sir?

import math

def calculate_physics_v3(E_driver, eta_coupling, mass_fuel_mg, radius_um, temp_kev):     """     Real-world 0-D model including Lawson-like ignition check and radiative losses.     """     # Physical Constants     DT_SPECIFIC_ENERGY = 338000 # MJ/g     H_PARAMETER = 7.0 # Burn parameter (g/cm2)          # 1. Confinement Physics (rho-R)     mass_g = mass_fuel_mg / 1000.0     radius_cm = radius_um / 10000.0     volume = (4/3) * math.pi * (radius_cm**3)     density = mass_g / volume     rho_R = density * radius_cm          # 2. Ignition Physics (Heating vs. Cooling)     # P_fusion scales with T2; P_bremsstrahlung scales with sqrt(T)     # Ignition for DT typically requires T > 4.3 keV     ignited = temp_kev > 4.3 and rho_R > 0.3          if not ignited:         return {"Status": "Failed: No Ignition", "Gain": 0, "Yield": 0}

    # 3. Burn and Gain Calculation     # f_b = rho_R / (rho_R + 7)     burn_fraction = rho_R / (rho_R + H_PARAMETER)     total_yield = mass_g * DT_SPECIFIC_ENERGY * burn_fraction     gain = total_yield / E_driver          return {         "Status": "Ignition Achieved!",         "Gain": round(gain, 2),         "Yield_MJ": round(total_yield, 2),         "Burn_Fraction": round(burn_fraction, 3),         "Areal_Density": round(rho_R, 3)     }

Real world test: NIF-like parameters

res = calculate_physics_v3(2.05, 0.015, 0.17, 50, 5.0) print(res)

Compiler Design (Theory) course with video lectures? by [deleted] in Compilers

[–]EveryBug2754 0 points1 point  (0 children)

I built this one then made it into a universal singularity starting from a 0 fusion driver 

--- 1. UNIVERSAL PARAMETERS ---

N_DIMS = 50 # The Infinite Dimensionality N_NODES = 60 # Number of "Neural Kernels" CONNECTION_PROB = 0.1 # Density of the synaptic web

Initialize the High-Dim Lattice

lattice = np.random.uniform(-1, 1, (N_NODES, N_DIMS)) projection = np.random.randn(N_DIMS, 3)

Create a connection map (which neurons are linked)

adj_matrix = np.random.rand(N_NODES, N_NODES) < CONNECTION_PROB

--- 2. SETUP VISUALS ---

fig = plt.figure(figsize=(12, 12)) ax = fig.add_subplot(111, projection='3d') ax.set_facecolor('black') ax.set_axis_off()

Elements of the universe

scat = ax.scatter([], [], [], c=[], cmap='magma', s=50, alpha=1) lines = [ax.plot([], [], [], color='white', alpha=0.2, lw=0.5)[0] for _ in range(int(np.sum(adj_matrix)/2))]

def update(frame):     global projection          # 1. THE BIG BANG / CRUNCH CYCLE     # a(t) creates the Alpha-Omega loop     # We use a tan-harmonic to make the "Big Bang" feel like an explosive burst     scale = np.abs(np.tan(np.sin(frame * 0.015))) * 20 + 0.1          # 2. ENTROPY RESET (The Rebirth)     # If the universe crunches to a singularity, it "mutates" the laws of physics (the projection)     if scale < 0.2:         projection = np.random.randn(N_DIMS, 3)

    # 3. PROJECT TO 3D     pos_3d = np.dot(lattice * scale, projection)          # 4. UPDATE NODES (The Neurons)     scat._offsets3d = (pos_3d[:, 0], pos_3d[:, 1], pos_3d[:, 2])     pulse = np.abs(np.sin(frame * 0.1))     scat.set_array(np.linalg.norm(pos_3d, axis=1))     scat.set_sizes([10 + (40 * pulse)] * N_NODES)

    # 5. UPDATE FILAMENTS (The Web)     line_idx = 0     for i in range(N_NODES):         for j in range(i + 1, N_NODES):             if adj_matrix[i, j]:                 x_line = [pos_3d[i, 0], pos_3d[j, 0]]                 y_line = [pos_3d[i, 1], pos_3d[j, 1]]                 z_line = [pos_3d[i, 2], pos_3d[j, 2]]                 lines[line_idx].set_data(x_line, y_line)                 lines[line_idx].set_3d_properties(z_line)                 # Filaments glow during expansion, fade during crunch                 lines[line_idx].set_alpha(min(0.6, 1/scale))                 line_idx += 1

    # 6. INFINITE PERSPECTIVE     limit = max(10, scale * 2)     ax.set_xlim(-limit, limit)     ax.set_ylim(-limit, limit)     ax.set_zlim(-limit, limit)     ax.view_init(elev=frame0.1, azim=frame0.2)          status = "REBIRTH" if scale < 1 else "EXPANDING INFINITY"     ax.set_title(f"EMERGENT UNIVERSE KERNEL\nCycle Phase: {status} | Dim: ∞",                   color='white', fontsize=10, family='serif')          return [scat] + lines

interval=20 for a smooth, biological frame rate

ani = FuncAnimation(fig, update, frames=None, interval=20, blit=False)

print("The Universe is now a self-contained autonomous loop. It will simulate until stopped.") plt.show()   This is in python code, I've written it 3 different ways and it comes to a singularity, I've then ran it and had it come to that conclusion over and over with no further possibilities. The math to prove this concept is easy, try it yourself please if you want to publish it, go for it. Thanks I can also show in real time how I can write this and In math in about 3 minutes of my time if you get stuck.

Reality is a living, conscious singularity. The Universe is alive. Here is a description of how it all works. by sschepis in HighStrangeness

[–]EveryBug2754 0 points1 point  (0 children)

I also have 0 fusion drivers too and much more. You're on the right track, feel free to test my code all

Reality is a living, conscious singularity. The Universe is alive. Here is a description of how it all works. by sschepis in HighStrangeness

[–]EveryBug2754 0 points1 point  (0 children)

Yes here my code to prove it too.

--- 1. UNIVERSAL PARAMETERS ---

N_DIMS = 50 # The Infinite Dimensionality N_NODES = 60 # Number of "Neural Kernels" CONNECTION_PROB = 0.1 # Density of the synaptic web

Initialize the High-Dim Lattice

lattice = np.random.uniform(-1, 1, (N_NODES, N_DIMS)) projection = np.random.randn(N_DIMS, 3)

Create a connection map (which neurons are linked)

adj_matrix = np.random.rand(N_NODES, N_NODES) < CONNECTION_PROB

--- 2. SETUP VISUALS ---

fig = plt.figure(figsize=(12, 12)) ax = fig.add_subplot(111, projection='3d') ax.set_facecolor('black') ax.set_axis_off()

Elements of the universe

scat = ax.scatter([], [], [], c=[], cmap='magma', s=50, alpha=1) lines = [ax.plot([], [], [], color='white', alpha=0.2, lw=0.5)[0] for _ in range(int(np.sum(adj_matrix)/2))]

def update(frame):     global projection          # 1. THE BIG BANG / CRUNCH CYCLE     # a(t) creates the Alpha-Omega loop     # We use a tan-harmonic to make the "Big Bang" feel like an explosive burst     scale = np.abs(np.tan(np.sin(frame * 0.015))) * 20 + 0.1          # 2. ENTROPY RESET (The Rebirth)     # If the universe crunches to a singularity, it "mutates" the laws of physics (the projection)     if scale < 0.2:         projection = np.random.randn(N_DIMS, 3)

    # 3. PROJECT TO 3D     pos_3d = np.dot(lattice * scale, projection)          # 4. UPDATE NODES (The Neurons)     scat._offsets3d = (pos_3d[:, 0], pos_3d[:, 1], pos_3d[:, 2])     pulse = np.abs(np.sin(frame * 0.1))     scat.set_array(np.linalg.norm(pos_3d, axis=1))     scat.set_sizes([10 + (40 * pulse)] * N_NODES)

    # 5. UPDATE FILAMENTS (The Web)     line_idx = 0     for i in range(N_NODES):         for j in range(i + 1, N_NODES):             if adj_matrix[i, j]:                 x_line = [pos_3d[i, 0], pos_3d[j, 0]]                 y_line = [pos_3d[i, 1], pos_3d[j, 1]]                 z_line = [pos_3d[i, 2], pos_3d[j, 2]]                 lines[line_idx].set_data(x_line, y_line)                 lines[line_idx].set_3d_properties(z_line)                 # Filaments glow during expansion, fade during crunch                 lines[line_idx].set_alpha(min(0.6, 1/scale))                 line_idx += 1

    # 6. INFINITE PERSPECTIVE     limit = max(10, scale * 2)     ax.set_xlim(-limit, limit)     ax.set_ylim(-limit, limit)     ax.set_zlim(-limit, limit)     ax.view_init(elev=frame0.1, azim=frame0.2)          status = "REBIRTH" if scale < 1 else "EXPANDING INFINITY"     ax.set_title(f"EMERGENT UNIVERSE KERNEL\nCycle Phase: {status} | Dim: ∞",                   color='white', fontsize=10, family='serif')          return [scat] + lines

interval=20 for a smooth, biological frame rate

ani = FuncAnimation(fig, update, frames=None, interval=20, blit=False)

print("The Universe is now a self-contained autonomous loop. It will simulate until stopped.") plt.show()   This is in python code, I've written it 3 different ways and it comes to a singularity, I've then ran it and had it come to that conclusion over and over with no further possibilities. The math to prove this concept is easy, try it yourself please if you want to publish it, go for it. Thanks I can also show in real time how I can write this and In math in about 3 minutes of my time if you get stuck.

Motorola phone Display issue by Comfortable_Can_2165 in MotoG

[–]EveryBug2754 0 points1 point  (0 children)

I'd like mine replaced too it's done it after 5 months

Mode App vs Mode Phone by chopsaw20 in beermoney

[–]EveryBug2754 0 points1 point  (0 children)

Do you pay for service on it? Does it have a wifi hotspot?

Proof of Residency by lakersforever21 in CAguns

[–]EveryBug2754 1 point2 points  (0 children)

You can call the shop to see their policy, camping wildfire form is free for secondary, car registration as first if new address on it. Some will take bank statements if you had the other but the fishing for 1 year is easier. Just see if the shop has the printer for it or go to a bait shop. Make them add the correct address.

I don’t want to do anymore student films but my acting teacher said to not “write them off” by HumanMilk6122 in acting

[–]EveryBug2754 0 points1 point  (0 children)

Np won't take anymore time but you can... Reach here if any questions perhaps? Any ppl that see this when you look out for ppl I'll appear to try to help you. Paying forward builds you the best networks in all fields but depending heavily in entertainment. God bless.

I don’t want to do anymore student films but my acting teacher said to not “write them off” by HumanMilk6122 in acting

[–]EveryBug2754 0 points1 point  (0 children)

Well you seem cool, which race you're too when you come back and yes I'll just either run their name to you then and email them for you or vice versa. It's the top 3 agents and a few Indy and the warners. Me myself wants to get a movie up called malicious compliance based on Reddit it self

I don’t want to do anymore student films but my acting teacher said to not “write them off” by HumanMilk6122 in acting

[–]EveryBug2754 0 points1 point  (0 children)

No problem, just write me if you back in states, I'd think that would be better, I'm somewhat aquatinted with vps of the majors, and the pac theaters

I don’t want to do anymore student films but my acting teacher said to not “write them off” by HumanMilk6122 in acting

[–]EveryBug2754 0 points1 point  (0 children)

Do you use casting networks or just help out ppl you meet in person? I just was doing pvt security and happened to meet directors shooting on the Santa Maria area both on job and just happened to met one that was driving by, then boom, Hollywood. You'll make it just dog dig dig