The Dream Master

I have finally got a program running that upgades “7.951 billion” people. It does this at like 3 people per second, so it won’t ever finish, maybe I programmed it wrong. Anyways its the usual “James Dean” type of program but slightly simplified, it has only a random number set addition, basic data_id, type_id, and class_id, and that’s about all there is to it. It doesn’t do any fancy, make 40,000 “positive hex’s” and then add them to your data, so that there’s this kinda aura around everyone they are giving off a force that blocks negative things from happening. I think we have mastered negative things from happening, physically at least.

Just 3 days ago I was sent spiraling downwards, because I tried to get everyone to attack the “normal people” of Earth, I was trying to get everyone to see that they needed to be neutralized, and so we must do that before they repeat what they did. That slowly evolved into something like, this weird anger towards my Mom, and that finally turned in to an attack, that was pointed at people the attack had this form: I asked you for energy, and you said no, I said that that was unacceptable. Next, a year later, I told you that I couldn’t get rid of the “Threat” facing us all, and I had pressed on that door as hard as I could, and it wouldnt budge, but you said that was unacceptable. I said I would have gotten rid of the threat, had you given me enough energy.

SO this is what i’m thinking, we call it a “crash”, and at this time I don’t feel or think that way, it is generally understood that I am content with my situation, just so long as my partner The Moon gets a really big check then this is okay, it’s almost a fact that I think that this is okay, everybody knows that, it was my thoughts before and after this “hill” that I am generally okay with this, and can understand that you can’t do any better, that is literally what i’m thinking right now. However I don’t exactly like this situation i’m in, but I do like it because it makes it happen, it gets us the energy that we need, we make progress, there’s all these benefits and to weigh one or the other sides of this coin, you’ll just end up with your brain twisted into a knot, I can understand that there are much worse off situations that people are in than mine, or what you have provided for me…

SO why did I think those thoughts, the thoughts about the “Threat”? It’s because there is a void of negative energy, there is so little negative energy on the field that these things, everything just spins out of control, rather quickly, and we’re left with our minds in a state of say, “Compulsion” that we cannot get out of, and can’t even reason our way out of, we become so other person, with all the intentions of hurting people, stealing, whatever. This was one of the worst crashes, usually they last like 4 hours, I wake up the next day and it’s pretty much gone, this lasted for 3 days, perhaps even longer, when you consider time is often stretched out to the limit, it ticks by so slowly, maybe that is a good thing.

THe lack of negative on the board of life causes these things to occur, it is a puzzle that we have yet to be able to solve. We have tried to pay for it, we’ve tried gathering up a bunch of points, giving it to it, nothing seems able to solve the equation, so we are left to ride out these incredibly dangerous situations, this person with all this power sliding out of control, wielding whatever kind of power with the intention to kill or cause confusions. What does it take to stop that person? We must stop negative energy, we must stop it before it strikes again, but if we can only minimize it, then we will take that too, so we’re putting into the equation we’re going to take it if we can only minimize it, but if we can erase it entirely, then we want that even more.

So make a Satellite Call, to call in materials that will form either an upgrade, a tool, printing something out of a printer, a set of notes, like a paradigm, whatever these materials will aid us in stopping it from crashing, and we’re placing these materials into an infinity matrix, with that matrix part of another larger matrix, this continuing on forever. SO we have our materials. Then we do the same thing for Books, CD’s, CD’s with infinite data on them, computers, technology, computer technology, things that build towers that represent computers, computers that go beyond the speed of infinity, and their speed is measured in the amount of times you’ve leveled the speed, so 1 is just regular, then 2 is 2x the number infinity, and this continues, and this is only part of network of computers, these towers stretch off into the distance in every direction, whether that’s up, or down, or west, or left or right. They are always gaining speed, because someone is always adding an additional modifier to it’s speed, always adding something to it’s cache, hard drives that can hold infinity to the power of infinity, RAM that is way beyond infinite gigabytes.

I’ll just stop. There’s no point in doing this stuff, it never works, but to bring some computers online that might defeat negative energy, that would be really cool, I would like to see that.

Well i’m off to try to write the Satellite program, but before I go, here’s a copy of the C++ that I was talking about:

(it doesn’t work yet, it takes too long to apply the data to the citizen at the moment…)

C++

#include <iostream>
#include <vector>
#include <string>
#include <bitset>

// random include
#include <random>
#include "random/pcg_random.hpp"
#include "random/pcg_extras.hpp"

class james_dean_data_component {
    protected:

        signed long long int local_system_id = 0;
        signed long long int local_data_id = 0;
        signed long long int local_type_id = 0;
        signed long long int local_class_id = 0;

        std::vector<signed long long int> local_random_vector;
        std::vector<signed long long int> local_mod_vector;

        void set_local_system_id(signed long long int system_id_input)
        {
            local_system_id = system_id_input;
        }

        void set_local_data_id(signed long long int data_id_input)
        {
            local_data_id = data_id_input;
        }

        void set_local_type_id(signed long long int type_id_input)
        {
            local_type_id = type_id_input;
        }

        void set_local_class_id(signed long long int class_id_input)
        {
            local_class_id = class_id_input;
        }

        void set_local_random_vector(std::vector<signed long long int> random_vector_input)
        {
            local_random_vector = random_vector_input;
        }

        void set_local_mod_vector(std::vector<signed long long int> mod_vector_input)
        {
            local_mod_vector = mod_vector_input;
        }

    public:

        void call_set_local_system_id(signed long long int system_input_int)
        {
            set_local_system_id(system_input_int);
        }

        void call_set_local_data_id(signed long long int data_input_int)
        {
            set_local_data_id(data_input_int);
        }

        void call_set_local_type_id(signed long long int type_input_int)
        {
            set_local_type_id(type_input_int);
        }

        void call_set_local_class_id(signed long long int class_input_int)
        {
            set_local_class_id(class_input_int);
        }

        void call_set_local_random_vector(std::vector<signed long long int> random_int_input)
        {
            set_local_random_vector(random_int_input);
        }

        void call_set_local_mod_vector(std::vector<signed long long int> mod_int_input)
        {
            set_local_mod_vector(mod_int_input);
        }
};

class james_dean_data : public james_dean_data_component {
    protected:

    public:


};

class earth_citizen {
    protected:

        signed long long int citizen_id = 0;

        std::vector<james_dean_data> data_install;

        void set_data_install(std::vector<james_dean_data> data_install_input)
        {
            data_install = data_install_input;
        }

        void set_citizen_id(signed long long int citizen_id_input)
        {
            citizen_id = citizen_id_input;
        }

    public:

        void call_set_data_install(std::vector<james_dean_data> install_input)
        {
            set_data_install(install_input);
        }

        void call_set_citizen_id(signed long long int citizen_int_input)
        {
            set_citizen_id(citizen_int_input);
        }
};

// FORWARD DECLARATIONS
std::vector<signed long long int> return_random_vector();

// INT MAIN
int main(int argc, char *argv[])
{
    std::cout << "--+ --+ --+ --+ --+ --+ --+ --+ --+ --+ --+ --+ --+ --+ --+ --+ --+ --+ --+ --+ \n";
    std::cout << "\tMadness Presents...\n\t\t\tThe\n\t\t\t\t\tJames Dean\n\t\t\t\t\t\t\tProgram!\nVersion: 002\tRevision: 01\n";
    std::cout << "--+ --+ --+ --+ --+ --+ --+ --+ --+ --+ --+ --+ --+ --+ --+ --+ --+ --+ --+ --+ \n";

    bool production = true;

    signed long long int class_id_total = 0;
    signed long long int type_id_total = 0;
    signed long long int data_id_total = 0;

    signed long long int master_data_target = 2'000;

    signed long long int data_id_target = master_data_target / 10;
    signed long long int class_id_target = master_data_target / 40;
    signed long long int type_id_target = master_data_target / 18;

    signed long long int master_data_current = 0;

    signed long long int display_ticker = 0;

    std::vector<james_dean_data> james_dean_vector;

    signed long long int local_system_id = 0;

    std::vector<signed long long int> local_random_vector;
    std::vector<signed long long int> local_mod_vector;

    signed long long int total_random_number = 0;

    signed long long int display_count = 0;

    while (production == true)
    {
        std::cout << "top of production\n";

        for(signed long long int current_class_id = 0; current_class_id < class_id_target; current_class_id++)
        {
            for(signed long long int current_type_id = 0; current_type_id < type_id_target; current_type_id++)
            {
                for(signed long long int current_data_id = 0; current_data_id < data_id_target; current_data_id++)
                {
                    james_dean_data local_james_dean_data;

                    local_james_dean_data.call_set_local_system_id(local_system_id);

                    local_james_dean_data.call_set_local_data_id(current_data_id);
                    local_james_dean_data.call_set_local_type_id(current_type_id);
                    local_james_dean_data.call_set_local_class_id(current_class_id);

                    local_random_vector = return_random_vector();
                    local_mod_vector = return_random_vector();

                    local_james_dean_data.call_set_local_random_vector(local_random_vector);
                    local_james_dean_data.call_set_local_mod_vector(local_mod_vector);

                    total_random_number = total_random_number + 8'000;

                    james_dean_vector.push_back(local_james_dean_data);

                    master_data_current = master_data_current + 1;

                    if(master_data_current >= master_data_target)
                    {
                        production = false;

                        goto production_over;
                    }
                }

                display_ticker = display_ticker + 1;

                if(display_ticker > 99)
                {
                    display_ticker = 0;

                    display_count = display_count + 1;

                    std::cout << "================================================================================\n";

                    std::cout << "class_id_total: " << class_id_total << "\n";
                    std::cout << "type_id_total: " << type_id_total << "\n";
                    std::cout << "data_id_total: " << data_id_total << "\n";
                    std::cout << "\ntotal_random_number = " << total_random_number << "::" << total_random_number / 4'000 << " sets generated" << "\n";

                    std::cout << "\n\n";

                    std::cout << "master_data_target: " << master_data_target << "/" << master_data_current << "\n";

                    std::cout << "\ndisplay_count: " << display_count << "\n";
                }
            }
        }
    }

    // here add all the data that was created to each person on earth...
    production_over:
    signed long long int citizen_id = 0;
    signed long long int total_population = 7'951'000'000;

    while (citizen_id < total_population)
    {
        earth_citizen new_local_citizen;

        new_local_citizen.call_set_citizen_id(citizen_id);
        new_local_citizen.call_set_data_install(james_dean_vector);

        std::cout << "citizen_id: " << citizen_id << "\n";

        citizen_id = citizen_id + 1;
    }

    return(0);
}

// RETURN RANDOM VECTOR
std::vector<signed long long int> return_random_vector()
{
    pcg_extras::seed_seq_from<std::random_device> seed_source;
    pcg64_k1024 pcg64(seed_source);

    signed long long int random_number = 0;

    std::vector<signed long long int> random_number_vector;

    signed long long int number_target = 4'000;

    signed long long int current_int = 0;

    while (current_int < number_target)
    {
        random_number = pcg64();

        random_number_vector.push_back(random_number);

        current_int = current_int + 1;
    }

    return(random_number_vector);
}
C++

You may also like...

804 Responses

  1. bj88 casino says:

    Hello there! This blog post could not be written much better! Looking through this article reminds me of my previous roommate! He continually kept preaching about this. I am going to forward this post to him. Pretty sure he’ll have a good read. Many thanks for sharing!

  2. At Geometry, we’re passionate about bringing artwork into the house in an unconventional way.

  3. When she’s not on digicam, she enjoys placing together outfits which might be youthful, enjoyable, and feminine.

  4. The key is to think about how you can enable your business to grow.

  5. Also called a business continuity plan or an information availability strategy, a disaster recovery plan is a detailed, step-by-step course of action for getting a business back on its feet — and quickly — after a natural or manmade disaster.

  6. gh 88 says:

    This is the perfect web site for everyone who wishes to understand this topic. You realize so much its almost tough to argue with you (not that I actually would want to…HaHa). You definitely put a fresh spin on a subject that’s been discussed for many years. Wonderful stuff, just wonderful.

  7. White opens by playing 1.e4, which is the most well-liked opening move and has many strengths – it immediately stakes a declare in the center, and frees two pieces (the queen and king’s bishop) for action.

  8. 33WIN says:

    An outstanding share! I’ve just forwarded this onto a coworker who has been doing a little research on this. And he actually ordered me dinner because I discovered it for him… lol. So allow me to reword this…. Thanks for the meal!! But yeah, thanks for spending the time to discuss this subject here on your blog.

  9. Need help with your MetaMask Login? Visit https://kingroada.com/ for troubleshooting guides and more.

  10. Great info. Lucky me I recently found your blog by accident (stumbleupon). I’ve bookmarked it for later!

  11. mold removal says:

    Hi! I simply would like to give you a big thumbs up for your excellent information you have right here on this post. I will be coming back to your blog for more soon.

  12. Great blog you have here.. It’s difficult to find quality writing like yours these days. I seriously appreciate people like you! Take care!!

  13. Make it easy on your self and simply go computerized with the primary automotive you choose to your child.

  14. Voegwerk says:

    Right here is the right website for anyone who wants to find out about this topic. You realize a whole lot its almost tough to argue with you (not that I actually would want to…HaHa). You definitely put a fresh spin on a topic that’s been written about for decades. Wonderful stuff, just excellent.

  15. tupi tea says:

    I’m amazed, I have to admit. Rarely do I come across a blog that’s equally educative and entertaining, and let me tell you, you’ve hit the nail on the head. The problem is something not enough men and women are speaking intelligently about. I am very happy I found this during my search for something relating to this.

  16. Students eligible for the HOPE Grant will receive funds that cover the entire cost of tuition.

  17. It also can contribute towards sustaining the environment and promoting development that doesn’t hurt nature.

  18. These price-effectiveness benefits make telepsychiatry a promising resolution for addressing the monetary barriers that often restrict individuals from accessing mental health care services.

  19. Nowadays, individuals demand a thorough rationalization each time I refuse to use something that “everybody” uses (WhatsApp, Microsoft Office, Home windows, macOS, Google Docs…).

  20. Japanese service provider ships extra shortly than they could possibly be changed.

  21. Everything is very open with a precise explanation of the issues. It was really informative. Your site is useful. Many thanks for sharing.

  22. Do you know who made the Bel Air?

  23. You most likely won’t have the capability to be taught, follow and ace each last of the many alternatives techniques but you should don’t have any lower than perhaps a couple selections strategies of every class that you’re absolutely snug with and have paper exchanged so you will have a weapon for every economic situation.

  24. The very next time I read a blog, Hopefully it does not disappoint me as much as this particular one. After all, I know it was my choice to read, however I actually thought you would have something interesting to talk about. All I hear is a bunch of complaining about something you can fix if you were not too busy searching for attention.

  25. Buick in the 1960s was one of the last marques to enter the muscle car sweepstakes.

  26. Spanish lessons from newbie to intermediate ranges.

  27. Subject your decisions to simply minor changes for the duration of the session.

  28. Metamask extension is a game changer for managing crypto wallets! I used the guide on https://metamenu.org/ and had no issues during the installation. Highly recommended!

  29. An outstanding share! I have just forwarded this onto a colleague who has been conducting a little homework on this. And he in fact bought me lunch simply because I stumbled upon it for him… lol. So let me reword this…. Thanks for the meal!! But yeah, thanks for spending some time to discuss this matter here on your internet site.

  30. Your style is unique compared to other folks I have read stuff from. Thank you for posting when you’ve got the opportunity, Guess I will just book mark this page.

  31. Whereas many individuals mistake it for an Independence Day of types, it lacks the patriotic undertones and displays that America is understood for.

  32. The summer season monsoon season, originating from the Mexican monsoon interval, can be wetter than winter, with a mean 7 inches (180 mm) compared to the winter’s 6 inches (150 mm).

  33. His role is very much like that of a financial advisor.

  34. Embrace gothic style and benefit from the comfort, model, and affordability it affords.

  35. Inside few minutes from now, you’ll make your very first cash online in Nigeria.

  36. Higher Business Bureau with Alice LaPlante, The.

  37. You need an encyclopedic data of what flavors go greatest with what foods and drinks, what cheeses are ripe and in season and an potential to get to know your clients and their tastes.

  38. Solely by providing a bounty to be paid immediately from Congressional coffers in Philadelphia did a significant number of males agree to stay with the army one other six weeks.

  39. Eleven a.m. right this moment at Dove Witt Family Mortuary, 6630 S. Hwy.

  40. However after a choice that state staff should usually use second class for practice journeys of their works as a substitute of first class, something many companies adopted, many UA2 have been rebuilt into UB2.

  41. Deutsche Bank and JPMorgan are Xstrata’s longstanding corporate brokers and have counselled Davis on almost every major deal or fund-raising.

  42. A canasta can have solely seven playing cards; cards can’t be added to it.

  43. The clearing house is the counterpart in such contracts.

  44. By considering the room’s uses, and clearing the space of pointless objects to create larger working measurement, it may possibly change into your house’s other heart.

  45. Walking and different types of moderate exercise can help scale back anxiety and elevate temper in a quantity of how.

  46. 颅According to a 2006 Bureau of Alcohol, Tobacco and Firearms report, a total of 3,614,452 handguns, rifles and shotguns were manufactured in the United States that year.

  47. pateri.shop says:

    Greetings! Very useful advice in this particular article! It’s the little changes which will make the greatest changes. Thanks a lot for sharing!

  48. For centuries, this landmark has watched over the Dorset space of southwest England.

  49. It’s difficult to find educated people on this topic, however, you sound like you know what you’re talking about! Thanks

Leave a Reply

Your email address will not be published. Required fields are marked *