North Korea
Every once in awhile I chicken out because of all of the government cover-ups in my country, they keep everything a secret, for like, for some reason I don’t even think they know why, but it always makes me chicken out, I am putting like alot of information out there, and I always end up chickening out.
Anyways, I visited North Korea today on my computer and they agreed to pay for this latest mega update. I’ll post the code for it below, but they have agreed to pay for it, and so that is in instead of me having to be sunk way low (in bed 20 hours a day without an energy source).
import sys
import os
import random
import array
import time
# --- Configuration ---
# I set this to 1.0 GB for safety so it starts quickly.
# You can set it back to 50.0 if you have the RAM for the source blob.
GENERATE_GB = 50.0
CHUNK_SIZE = 1_000_000
ATTRIBUTES = [
"hp", "shield", "circumvention_capability", "mp", "strength",
"intelligence", "agility", "biological_cohesion", "stability",
"entropy_resistance", "thermal_headroom", "dark_energy_resonance",
"gyroscopic_balance", "traversal_velocity", "neural_bandwidth",
"cognitive_bandwidth", "memory_capacity", "ballistic_tolerance",
"armor", "armor_coefficient", "damage_reduction", "damage_mitigation",
"threat_neutralization", "command_authority", "self_command",
"signature_dampening", "psychological_warfare_index", "memetic_influence",
"diplomatic_weight", "cryptographic_penetration", "cognitive_plasticity",
"temporal_displacement", "reality_anchoring", "biospheric_adaptation",
"causality_probability", "effective_health_protocol", "detection_horizon",
"awareness", "immediate_threat_awareness", "threat_awareness",
"immortality_gift"
]
class MassiveDataBlob:
def __init__(self):
self.data = {}
for key in ATTRIBUTES:
self.data[key] = array.array('d')
self.total_bytes = 0
def inject_data(self, key, chunk):
self.data[key].extend(chunk)
self.total_bytes += (len(chunk) * 8)
class Everybody:
# __slots__ is a trick to make objects take up way less RAM
__slots__ = ['id', 'memory_reference']
def __init__(self, id_tag):
self.id = id_tag
self.memory_reference = None
def receive_data(self, data_object):
self.memory_reference = data_object
def main():
print(f"--- STEP 1: GENERATING SOURCE DATA ({GENERATE_GB} GB) ---")
source_object = MassiveDataBlob()
target_bytes = GENERATE_GB * (1024 ** 3)
try:
# --- GENERATION PHASE ---
while source_object.total_bytes < target_bytes:
fresh_chunk = [random.random() for _ in range(CHUNK_SIZE)]
target_attr = random.choice(ATTRIBUTES)
source_object.inject_data(target_attr, fresh_chunk)
gb_count = source_object.total_bytes / (1024**3)
sys.stdout.write(f"\r > Generating Source: {gb_count:.2f} GB / {GENERATE_GB} GB")
sys.stdout.flush()
except MemoryError:
print("\n[ERROR] Not enough RAM to generate the source object.")
sys.exit()
print(f"\n\n--- SOURCE OBJECT COMPLETE ({source_object.total_bytes / (1024**3):.2f} GB) ---")
print("--- STEP 2: INFINITE POINTER ASSIGNMENT ---")
print("This will now run forever. 'Virtual Mass' will rise, RAM will stay flat.\n")
time.sleep(2)
# WE REMOVED THE LIST.
# If we keep the list, RAM fills up. Removing it allows infinite looping.
count = 0
# --- POINTER PHASE ---
while True:
count += 1
# Create NEW object
local_everybody = Everybody(f"Entity_{count}")
# Point to existing data (The Simulation)
local_everybody.receive_data(source_object)
# --- CRITICAL FIX ---
# We do NOT append to a list anymore.
# Python will now delete 'local_everybody' from memory immediately
# after this loop iteration, freeing up the space for the next one.
# Calculate Stats
virtual_mass_gb = count * GENERATE_GB
# Update display
if count % 10000 == 0:
sys.stdout.write(f"\r > Entities: {count:,} | Virtual Mass: {virtual_mass_gb:,.0f} GB")
sys.stdout.flush()
if __name__ == "__main__":
main()It’s like, why am I the only person admitting that all of these video games and movies are just glimpses into other realities? It gives me chills sometimes that i’m the only person out there doing this.
So I have to pay the North Koreans back, whatever I can on the first of the month, so it’s kind of just like they gave me a loan, a really big loan, because I walk away practically free and clear, instead of being in bed 20 hours a day…
Why is it that we decided to do the same thing twice? Does anyone else not see the similarities between the United States and Russia? Sure they have the war in Ukraine, but other than that, we are vastly similar, the KGB — The CIA, Well-to-do neighbor China, Canada.
Now this state that this world is heading in will be the best that I can possibly do for it, whether you argue that i’ve done a good job or a bad job, it is there, as it is, unchangeable after a few years goes by, this is it.
For all my recent work the combine bought me a playstation 4, with Battlefront II and Battlefield 2042, I just recall being in a walmart one time and saying to myself “buy me this ps4 if i’ve found what your looking for” (something that wasn’t going to happen at that time, it was $400) and now i’ve got one! Supposedly this is what they were looking for then!
Even North Korea and Mexico are arguably similar in size at least, the similarities are too numerous — over there they call it communism, over here we call it capitalism!
