Let us all petition to RESURRECT LingLing40hrs

Dear TwoSet (and to whoever else it may concern):

I have noticed a sad decline in the LingLing40hrs content. In the past, ll40 was very much thriving and so many funny memes were being posted regularly. We were at around 200k LingLingwannabes, but now we are only at 15k. :( not many people want to post content anymore. We must resurrect LingLing40hrs! LINGLING40HRS FOREVER!

reddit.com
u/No-Newspaper3010 — 12 days ago

Yet another problem

Hey Sheeple! I was trying to get into my house at Center, 5 South, but it kept putting me on the outside. I went to my house in Center, 4 South, and it was fine. BUt another weird thing happened. I went to 1 East, 1 North to complete the 3rd trek, and as soon as i planted the first green flower, boom--nothing in my bag!

reddit.com
u/No-Newspaper3010 — 3 months ago

Need some help

Baa! Hello Sheeple!

I would like some help starting out in the game. I had (past tense) three sheep and a lamb, but i went too far and the lamb + another got caught by the bear. I honestly have no clue what i am doing, and i don't know how to build a house or get more sheep. The time limits are soooo long and i can't accomplish anything. Can someone give me a rundown of how to do everything? I really like this game and i don't know what to do

reddit.com
u/No-Newspaper3010 — 3 months ago

Infinities inside Infinites

Ok, so I know that this seems to be something for r/askmath , but hear me out. Everyone before they were saved had an infinite sin debt against God. But God's infinite love for his children is larger than those infinities, so therefore, the infinity of God's love for his children is greater then all of their infinite sins against him. In essence, what I'm saying is that God's love itself prove that there are finite and infinite infinities!

Also, think about the sin itself. Sin created an un-crossable (or infinite) gap between God and man. But the work that Christ did was infinitely large for his children, and thus this infinite gap was crossed by a mediator, with a love for his children that was infinitely larger than their sins. Finite infinities (our sins) are much smaller than the infinite infinity, God's love. Let me know what you think, God bless 😉

reddit.com
u/No-Newspaper3010 — 3 months ago
▲ 1 r/piano

Starting Rachmaninoff's Prelude in G minor, Opus 23, no. 5.

Dear Piano Redditers, I am beginning to work on Prelude in G minor, to expand my repertoire and skills. How should I go about learning it? What techniques should I work on to help master it? Really would love the feedback

reddit.com
u/No-Newspaper3010 — 3 months ago

I bought a Kala KA-15T, and the C string seems to be tuning weird (e.g., the 1st fret of the string is a D instead of a C#/Db). That's the only one that is acting odd, and I don't know why. Please Help ASAP!

reddit.com
u/No-Newspaper3010 — 4 months ago
▲ 1 r/piano

Hey fellow piano redditers! I am composing a five piece Piano Sonata, and I'm on the third movement, in A major. It is supposed to be a flowing and lengthy-feeling section, similar in momentum to Debussy's Reverie. The right hand is playing accompaniment (in the unique 4/2 time signature btw), but I can't think of an engaging melody for the left hand. Really would appreciate all the help i can get!

The consistent accompaniment.

reddit.com
u/No-Newspaper3010 — 4 months ago

code for finding primes from a prime product. I made a code that was rendering large, 20+-digit numbers as if they were infinity, and i can't figure out why. I am new to coding in general, so would love feedback on how to modify my code.

import math

def find_micah_primes(N):

if N % 2 == 0:

return 2, N // 2

# Step 1: Find the initial Fulcrum (Square Root)

fulcrum = math.ceil(math.sqrt(N))

# Step 2: The Drift

# We move the fulcrum up the line until the Gap is a perfect square

while True:

gap = (fulcrum**2) - N

# Check if the gap is a perfect square

x = math.isqrt(gap)

if x * x == gap:

# We found the Reach (x)!

p = fulcrum - x

q = fulcrum + x

return p, q, fulcrum, x

fulcrum += 1

# Safety break for prime numbers

if fulcrum > (N + 1) // 2:

return None

00

# --- Testing the Process ---

# Use one of the big numbers from our discussion

target_N = 51

result = find_micah_primes(target_N)

if result:

p, q, f, x = result

print(f"Number N: {target_N}")

print(f"Fulcrum (F): {f}")

print(f"Reach (x): {x}")

print(f"--- Result ---")

print(f"Prime P: {p}")

print(f"Prime Q: {q}")

print(f"Verification: {p} * {q} = {p * q}")

else:

print("The number is prime and cannot be split into P and Q.")

reddit.com
u/No-Newspaper3010 — 4 months ago