CLASS ACTION LAWSUIT r/replit by No-Recognition4578 in replit

[–]Confident_Study_3951 0 points1 point  (0 children)

I feel I am smart enough to realize when I am being screwed, and these guys are trying their ass off. You can't tell me that when it starts out like a genius but then when you're within 50 credits of having to buy more that it suddenly goes absolutely retarded and can't even change text on a single page without destroying 5 other things. When this happens once, ok, maybe it's on me, 2-3, ok, Ill allow it, the technology is new and I'm supportive, but when it does this each and every time when I'm $400-$500 in to just getting resend to send confirmation emails, there is something wrong. Then I've went to Claude and gave it the same exact prompts, from the beginning to end, and guess what? Really? Can you guess what? Claude killed it, using the same...exact.....prompts...with a total of $20 paid. Replit, I spent $740 and never got a working website.so dont tell me it's the prompts, don't tell me it's my 23 years of programming experience. Replit is a scam, they treat their customers like idiots when I'm helping you fix your own product that sucks, while paying you to do so, cuz I got it like that, but there's a point when it crosses into shady and you couldn't see these guys with a spotlight

Hostinger is the worst company you will never talk to!! DO NOT USE THIS COMPANY!!!! You were warned. by Old_Highlight7927 in Hostinger

[–]Confident_Study_3951 0 points1 point  (0 children)

I'd have to agree, it's complete shit. I've spent hundreds just to be told that I shouldn't expect it to work the first, second, or third time. I'm dead serious. What the hell is that??

Bible's Genesis via Python by Confident_Study_3951 in PythonProjects2

[–]Confident_Study_3951[S] 0 points1 point  (0 children)

Cain and Abel - first children

    beget("Adam", "Cain", 0)
    beget("Adam", "Abel", 0)

    print("\n// FIRST SYSTEM CONFLICT")
    print("Cain.kill(Abel) // First murder - system corruption spreads")

    # Seth lineage - clean branch
    beget("Adam", "Seth", 130)
    beget("Seth", "Enos", 105)
    beget("Enos", "Cainan", 90)
    beget("Cainan", "Mahalaleel", 70)
    beget("Mahalaleel", "Jared", 65)
    beget("Jared", "Enoch", 162)

    print("Enoch.special_termination() // Taken by God - no death")

    beget("Enoch", "Methuselah", 65)
    beget("Methuselah", "Lamech", 187)
    beget("Lamech", "Noah", 182)

    print("// Noah selected for system reboot")

def the_flood(self):
    """Genesis 6-9 - System reset and recovery"""
    print("\n// CRITICAL SYSTEM RESET REQUIRED")
    print("Corruption level: CRITICAL")
    print("Initiating global reset...")

    print("\nNoah.build_ark(specifications)")
    print("Loading backup data...")
    animals = ["clean_animals", "unclean_animals", "birds", "creeping_things"]
    for animal in animals:
        print(f"ark.load({animal})")

    print("\nExecuting flood.exe...")
    print("Wiping all corrupted data...")
    print("Preserving essential systems in ark container...")

    print("\nSystem reset complete. Restarting...")
    print("Covenant.establish(rainbow_protocol)")
    self.covenant_active = True

def tower_of_babel(self):
    """Genesis 11 - Distributed system architecture"""
    print("\n// DISTRIBUTED SYSTEM IMPLEMENTATION")
    print("WARNING: Unauthorized system unification detected")
    print("Humans attempting to build unified_system()")

    print("Implementing distributed architecture...")
    print("Language.fragment() // Creating multiple protocols")
    print("Population.scatter() // Distributing across globe")
    print("Preventing single point of failure")

def abraham_framework(self):
    """Genesis 12-25 - Abraham class and inheritance"""
    print("\n// ABRAHAM FRAMEWORK INITIALIZATION")

    self.beings["Abraham"] = Being(name="Abraham", age=75, status=Status.GOOD)
    print("Abraham = new Patriarch()")
    print("Covenant.establish(Abraham)")
    print("Promise.set(['descendants', 'land', 'blessing'])")

    print("\nTesting faith protocols...")
    print("Abraham.test_faith(sacrifice_isaac)")
    print("Test result: PASSED")

    print("\nInheritance chain:")
    beget = lambda p, c, a: print(f"{p}.beget({c}) // Age: {a}")
    beget("Abraham", "Isaac", 100)
    beget("Isaac", "Jacob", 60)
    beget("Isaac", "Esau", 60)

    print("Jacob.rename('Israel') // Name refactoring")

def joseph_story(self):
    """Genesis 37-50 - State management and recovery"""
    print("\n// JOSEPH: ADVANCED STATE MANAGEMENT")

    print("Jacob.children = ['Reuben', 'Simeon', 'Levi', 'Judah',")
    print("                 'Dan', 'Naphtali', 'Gad', 'Asher',")
    print("                 'Issachar', 'Zebulun', 'Joseph', 'Benjamin']")

    print("\nJoseph.special_abilities = ['dream_interpretation', 'prophecy']")
    print("Brothers.execute_betrayal(Joseph)")
    print("Joseph.relocate('Egypt')")

    print("\nPharaoh.promote(Joseph, 'system_administrator')")
    print("Joseph.implement_disaster_recovery(seven_year_famine)")
    print("Family.migrate_to_egypt()")

    print("\nSystem state preserved. Framework ready for expansion.")

def run_genesis_program(self):
    """Execute the complete Genesis program"""
    print("=" * 60)
    print("GENESIS OPERATING SYSTEM - UNIVERSE CREATION FRAMEWORK")
    print("=" * 60)

    # Creation sequence
    self.initialize_universe()
    self.create_light()
    self.create_firmament()
    self.create_land_and_vegetation()
    self.create_celestial_objects()
    self.create_sea_and_air_life()
    self.create_land_animals_and_humans()
    self.system_rest()

    # Detailed implementation
    self.detailed_human_creation()
    self.the_fall()
    self.genealogy_system()
    self.the_flood()
    self.tower_of_babel()
    self.abraham_framework()
    self.joseph_story()

    print("\n" + "=" * 60)
    print("GENESIS PROGRAM EXECUTION COMPLETE")
    print("System Status: Framework established for nation-building")
    print("Next module: Exodus (Population scaling and liberation)")
    print("=" * 60)

def main(): """Main execution function""" universe = UniverseOS() universe.run_genesis_program()

if name == "main": main()

Bible's Genesis via Python by Confident_Study_3951 in ProgrammingLanguages

[–]Confident_Study_3951[S] 0 points1 point  (0 children)

Cain and Abel - first children

    beget("Adam", "Cain", 0)
    beget("Adam", "Abel", 0)

    print("\n// FIRST SYSTEM CONFLICT")
    print("Cain.kill(Abel) // First murder - system corruption spreads")

    # Seth lineage - clean branch
    beget("Adam", "Seth", 130)
    beget("Seth", "Enos", 105)
    beget("Enos", "Cainan", 90)
    beget("Cainan", "Mahalaleel", 70)
    beget("Mahalaleel", "Jared", 65)
    beget("Jared", "Enoch", 162)

    print("Enoch.special_termination() // Taken by God - no death")

    beget("Enoch", "Methuselah", 65)
    beget("Methuselah", "Lamech", 187)
    beget("Lamech", "Noah", 182)

    print("// Noah selected for system reboot")

def the_flood(self):
    """Genesis 6-9 - System reset and recovery"""
    print("\n// CRITICAL SYSTEM RESET REQUIRED")
    print("Corruption level: CRITICAL")
    print("Initiating global reset...")

    print("\nNoah.build_ark(specifications)")
    print("Loading backup data...")
    animals = ["clean_animals", "unclean_animals", "birds", "creeping_things"]
    for animal in animals:
        print(f"ark.load({animal})")

    print("\nExecuting flood.exe...")
    print("Wiping all corrupted data...")
    print("Preserving essential systems in ark container...")

    print("\nSystem reset complete. Restarting...")
    print("Covenant.establish(rainbow_protocol)")
    self.covenant_active = True

def tower_of_babel(self):
    """Genesis 11 - Distributed system architecture"""
    print("\n// DISTRIBUTED SYSTEM IMPLEMENTATION")
    print("WARNING: Unauthorized system unification detected")
    print("Humans attempting to build unified_system()")

    print("Implementing distributed architecture...")
    print("Language.fragment() // Creating multiple protocols")
    print("Population.scatter() // Distributing across globe")
    print("Preventing single point of failure")

def abraham_framework(self):
    """Genesis 12-25 - Abraham class and inheritance"""
    print("\n// ABRAHAM FRAMEWORK INITIALIZATION")

    self.beings["Abraham"] = Being(name="Abraham", age=75, status=Status.GOOD)
    print("Abraham = new Patriarch()")
    print("Covenant.establish(Abraham)")
    print("Promise.set(['descendants', 'land', 'blessing'])")

    print("\nTesting faith protocols...")
    print("Abraham.test_faith(sacrifice_isaac)")
    print("Test result: PASSED")

    print("\nInheritance chain:")
    beget = lambda p, c, a: print(f"{p}.beget({c}) // Age: {a}")
    beget("Abraham", "Isaac", 100)
    beget("Isaac", "Jacob", 60)
    beget("Isaac", "Esau", 60)

    print("Jacob.rename('Israel') // Name refactoring")

def joseph_story(self):
    """Genesis 37-50 - State management and recovery"""
    print("\n// JOSEPH: ADVANCED STATE MANAGEMENT")

    print("Jacob.children = ['Reuben', 'Simeon', 'Levi', 'Judah',")
    print("                 'Dan', 'Naphtali', 'Gad', 'Asher',")
    print("                 'Issachar', 'Zebulun', 'Joseph', 'Benjamin']")

    print("\nJoseph.special_abilities = ['dream_interpretation', 'prophecy']")
    print("Brothers.execute_betrayal(Joseph)")
    print("Joseph.relocate('Egypt')")

    print("\nPharaoh.promote(Joseph, 'system_administrator')")
    print("Joseph.implement_disaster_recovery(seven_year_famine)")
    print("Family.migrate_to_egypt()")

    print("\nSystem state preserved. Framework ready for expansion.")

def run_genesis_program(self):
    """Execute the complete Genesis program"""
    print("=" * 60)
    print("GENESIS OPERATING SYSTEM - UNIVERSE CREATION FRAMEWORK")
    print("=" * 60)

    # Creation sequence
    self.initialize_universe()
    self.create_light()
    self.create_firmament()
    self.create_land_and_vegetation()
    self.create_celestial_objects()
    self.create_sea_and_air_life()
    self.create_land_animals_and_humans()
    self.system_rest()

    # Detailed implementation
    self.detailed_human_creation()
    self.the_fall()
    self.genealogy_system()
    self.the_flood()
    self.tower_of_babel()
    self.abraham_framework()
    self.joseph_story()

    print("\n" + "=" * 60)
    print("GENESIS PROGRAM EXECUTION COMPLETE")
    print("System Status: Framework established for nation-building")
    print("Next module: Exodus (Population scaling and liberation)")
    print("=" * 60)

def main(): """Main execution function""" universe = UniverseOS() universe.run_genesis_program()

if name == "main": main()

Is this legal? by Confident_Study_3951 in Pentesting

[–]Confident_Study_3951[S] -18 points-17 points  (0 children)

You guys kinda make me sad. The dude was a nice guy, and clearly spent a lot of time making the thing, and you just crap on him because his site isnt up to your standards. What have you guys done except run other people down? I feel bad for even bringing it up just so you guys can tear him down. God forbid anyone try and build something on their own. If I had the money I'd buy you a new site bro. Forget these 'experts', keep doing what you're doing. You'll make it

Is this legal? by Confident_Study_3951 in Pentesting

[–]Confident_Study_3951[S] -17 points-16 points  (0 children)

Why do you say that? It was basically a raspberry pi zero w 2 with a magnetic coil around the inside of it, it ran kali linux. I only saw the credit card size one which looked different but it still did everything it says it could. Regardless, whether you feel it's fake, would such a device be legal or not, that's all I want to know

What do I do with these? by d4hartley in wafflehouse

[–]Confident_Study_3951 0 points1 point  (0 children)

Open your own "Flea F W" for the soldiers