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...

808 Responses

  1. This includes no improvement within the final 2 matches, and that i determined this was an excellent stopping level to release relatively than getting more involved.

  2. Baji Live says:

    Hi, I do think this is an excellent website. I stumbledupon it 😉 I am going to come back yet again since I saved as a favorite it. Money and freedom is the greatest way to change, may you be rich and continue to help other people.

  3. On 4 February 2013, the Spanish company CAF was awarded the contract to provide twelve 43-metre lengthy seven-sectioned bi-directional trams.

  4. I couldn’t refrain from commenting. Very well written!

  5. Hi, I do think this is a great blog. I stumbledupon it 😉 I’m going to come back once again since i have bookmarked it. Money and freedom is the best way to change, may you be rich and continue to guide others.

  6. CROSS-LINKS says:

    I could not refrain from commenting. Exceptionally well written!

  7. Why choose a career in investment banking?

  8. 6末 配当 says:

    In right now’s corporations it’s easy to solely bond with the people sitting alongside you or in your particular department, resulting in the most popular rifts between accountants and salespersons or customer companies and center administration.

  9. bookmarked!!, I like your website!

  10. Hugh Ernest Jannaway, Superintendent (Grade 1), Metropolitan Police.

  11. Wealth Management educationfor private investors with substantial wealth is offered by several leading universities.

  12. Hello there! I could have sworn I’ve visited this site before but after browsing through a few of the articles I realized it’s new to me. Nonetheless, I’m certainly happy I stumbled upon it and I’ll be bookmarking it and checking back frequently!

  13. 먹튀검증 says:

    You are so cool! I don’t believe I’ve read anything like this before. So nice to discover somebody with a few genuine thoughts on this topic. Really.. many thanks for starting this up. This site is one thing that is required on the web, someone with a bit of originality.

  14. This two-door, two-seater sports activities automotive was first marketed by Nissan in 1969.

  15. Онлайн казино с широким выбором аркадных игр | Развлечения и азарт в аркадном казино | Играйте в лучшие аркады на нашем сайте | Насладитесь азартом в аркадном казино | Онлайн казино с самыми популярными аркадными играми | Азарт и увлечение в аркадном казино | Играйте в лучшие аркады в онлайн казино | Увлекательные аркады и возможность заработать деньги | Лучшие аркадные развлечения для вас | Аркадные игры и азарт ждут вас в онлайн казино | Онлайн казино с увлекательными аркадами | Уникальные аркадные игры в вашем распоряжении | Побеждайте в аркадах и станьте миллионером | Новейшие аркадные игры на ваш выбор | Уникальные аркадные игры в онлайн казино | Увлекательные аркады и возможность заработать деньги
    arkada casino официальный [url=https://slot-rating.online/]arkada casino онлайн[/url] .

  16. I was pretty pleased to uncover this site. I wanted to thank you for ones time for this particularly fantastic read!! I definitely savored every little bit of it and i also have you saved as a favorite to check out new information in your blog.

  17. The Chigorin Defense has the classification D07 in the Encyclopedia of Chess Openings.

  18. An economic downturn is a phase of the business cycle in which the economy as a whole is in decline.This phase basically marks the end of the period of growth in the business cycle.

  19. Hickey, Hannah. “Toxic chemicals present in common scented laundry merchandise, air fresheners.” University of Washington Information.

  20. Hi, I do think this is an excellent blog. I stumbledupon it 😉 I may return yet again since I book marked it. Money and freedom is the best way to change, may you be rich and continue to help others.

  21. A lack of funding is a major reason that some couples choose to put off their honeymoons.

  22. Current features are on the homepage, while the reader can use its Explore web page to go looking and browse its sources.

  23. Ideally, you and your accomplice will have the ability to make the choice together and support one another in no matter you both resolve.

  24. 940 A.D. Situated conveniently along the Pink Sea and Nile trading routes, the civilization’s commerce sector prospered, allowing it to increase into Arabia even further.

  25. At other times rebalancing can reduce returns.

  26. Investing in jurisdictions that have totally different accounting standards, and totally different financial reporting requirements, increases risk.

  27. Because of this the blonde in the yoga pants might be far much less prone to hit her husband’s golf clubs when she pulls into the storage, as a result of the automotive will not block her view of the bottom instantly in front of her.

  28. Flights as a way to Dubai can be found by each place along with corner of the universe.

  29. Australia, for instance, has an extensive anti-smoking program, together with a Quitline that smokers can name for support and the online neighborhood QuitCoach that offers sources for those looking to give up.

  30. A bail agent is backed by a special type of insurance firm referred to as a surety company and pledges to pay the total worth of the bond if the accused does not seem in court.

  31. Ministry of Overseas Affairs and Worship.

  32. This tells you that big players such as mutual funds and hedge funds are selling stocks.

  33. Prices increased rapidly from 2001, but the 1980 high was not exceeded until 3 January 2008 when a new maximum of $865.35 per troy ounce was set (a.m.

  34. Will I play the identical move once more?

  35. Mr. Skene had all the day-rooms and dormitories freshly decorated to advertise a cheerful environment for all the patients that lived within the establishment.

  36. snaptwit says:

    Everything is very open with a precise description of the issues. It was really informative. Your website is very useful. Thank you for sharing.

  37. Whereas these outcomes are distinctive and never everybody can assume the level of progress in trading that he has achieved, it is probably going for you to make extra money in buying and selling commodities.

  38. That same homeowner might have a passing knowledge of the generalities of his mortgage contract.

  39. Napoleon Bonaparte, born in Corsica in 1769, rose by the ranks of the French military and grew to become a wildly ambitious army chief identified for his speed and cunning on the battlefield.

  40. I do shill for Amazon, however that’s as a result of I do really feel they are an awesome useful resource, and the little I make from sales helps me to pay for the location.

  41. opec とは says:

    It is an independent non-profit membership organization, committed to promoting and expanding research and education by organizing and sponsoring conferences, programs and activities at the intersection of finance and econometrics, including links to macroeconomic fundamentals.

  42. Everything is very open with a precise clarification of the issues. It was really informative. Your website is very helpful. Many thanks for sharing!

  43. Woman, in all international locations, and in all classes of society was for countless ages in nearly full subjugation and under the guardianship of a household.

  44. Avenial “Veni” B. Hale (b.1878) & Julia Edith Macklin (b.1887).

  45. But he regained his first choice goalkeeper position for the club within the last two matches of the 2020-21 season and helped RC Strasbourg end fifteenth place.

  46. hi88 says:

    You ought to take part in a contest for one of the most useful websites online. I’m going to recommend this blog!

  47. Patients admire the comfort and flexibility that telepsychiatry offers.

  48. fc88 says:

    May I simply just say what a relief to find somebody who actually knows what they are talking about over the internet. You certainly know how to bring an issue to light and make it important. More people ought to read this and understand this side of the story. I was surprised that you’re not more popular since you certainly possess the gift.

  49. May I simply just say what a comfort to find someone that actually knows what they are talking about on the net. You certainly know how to bring a problem to light and make it important. More people have to look at this and understand this side of the story. I was surprised you aren’t more popular since you most certainly possess the gift.

  50. What are some environmental factors that affect the aging process?

Leave a Reply

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