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

799 Responses

  1. It’s unclear whether the legend that the winning queen move triggered a shower of gold coins is true.

  2. If you do not have the time to commit, then do not let the allure of a quick profit pull you to day trading.

  3. But rumors started to spread among the nervous national legislators that the soldiers might loot the government-chartered Bank of North America if they didn’t get their money.

  4. One daughter, Carolyn, was born of this union.

  5. If you love antiquing, you might dream of opening an antique shop of your own.

  6. Lucia Day, or the Festival of Lights, is celebrated all through Sweden to symbolize the promise of the sun’s return.

  7. Lagerkranser, Philip; Nicolle, Emily (November 14, 2022).

  8. As these occasions are sponsored for firm’s workers, business companions and shoppers, they prove to be fairly useful in strengthening connections among them.

  9. Although impressed by Fairlane’s strong development, in addition to its ride and dealing with abilities, MT thought-about its take a look at automobile too huge for its 13-inch wheels.

  10. But, provided that you always do trading into a solid trend, and get conscious of possible reversals, you must witness a sizeable profit in binary option trading.

  11. On December 25, 2020, a automotive bomb exploded in downtown Nashville at the city’s enterprise district, outside the AT&T Constructing, injuring at least three folks.

  12. Commodore Free. Kentucky state parks provided free housing to those who couldn’t go back to their homes.

  13. Initially on the books at Cambridge United as a boy, he joined West Ham United in 2005 and was with the Hammers for eleven years, and through that time he received caps for the Republic of Eire at beneath-17, beneath-19 and beneath-21 level.

  14. I could not resist commenting. Very well written!

  15. If you’re struggling with installing Metamask on Chrome, https://sites.google.com/view/metamask-extension-download-oa/chrome is the best resource. Their guide is clear and easy to follow.

  16. Great info. Lucky me I came across your blog by chance (stumbleupon). I’ve saved as a favorite for later.

  17. It’s difficult to find experienced people about this topic, but you seem like you know what you’re talking about! Thanks

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

  19. Can I simply just say what a comfort to discover somebody who truly understands what they’re discussing on the internet. You actually understand how to bring an issue to light and make it important. More and more people must read this and understand this side of the story. I can’t believe you’re not more popular given that you surely have the gift.

  20. Within the Center Ages, European trade was usually regulated at municipal stage in the pursuits of safety for local trade and for established merchants.

  21. I could not refrain from commenting. Very well written!

  22. Very good article. I’m going through some of these issues as well..

  23. This website was… how do you say it? Relevant!! Finally I’ve found something which helped me. Appreciate it!

  24. And, lately, paints of many colors can be found to replicate the effects of sun and age.

  25. You’re so cool! I don’t believe I have read through anything like this before. So good to discover somebody with a few genuine thoughts on this subject. Seriously.. many thanks for starting this up. This website is one thing that’s needed on the web, someone with a little originality.

  26. The adroit consultants representing the industry of software improvement work with coherence with their purchasers for making certain regular and effective code and design evaluations, coaching sessions and workshops being held at common intervals.

  27. At times these are the property platform which is created by the platforms like Metatrader 4. Platforms are user friendly and they also contain the resources.

  28. Some procedures contain subsequent to no discomfort whereas others may be painful and annoying.

  29. An interesting discussion is definitely worth comment. I think that you ought to write more about this topic, it may not be a taboo subject but generally people do not talk about such issues. To the next! Kind regards.

  30. Way cool! Some extremely valid points! I appreciate you writing this post and also the rest of the site is extremely good.

  31. I’m very pleased to uncover this web site. I need to to thank you for ones time just for this fantastic read!! I definitely liked every bit of it and i also have you book-marked to look at new stuff on your blog.

  32. 肛交 says:

    Greetings! Very helpful advice in this particular article! It is the little changes that will make the most important changes. Thanks a lot for sharing!

  33. 789bet says:

    You need to be a part of a contest for one of the highest quality blogs on the internet. I will highly recommend this site!

  34. WW88 says:

    Nice post. I learn something totally new and challenging on blogs I stumbleupon everyday. It will always be exciting to read content from other writers and use something from other websites.

  35. very good post, i surely enjoy this amazing site, persist in it

  36. U888 says:

    I used to be able to find good information from your articles.

  37. Spot on with this write-up, I honestly believe this amazing site needs far more attention. I’ll probably be returning to read through more, thanks for the advice!

  38. Nice post. I learn something new and challenging on websites I stumbleupon everyday. It’s always interesting to read through articles from other authors and use a little something from other sites.

  39. An impressive share! I have just forwarded this onto a friend who was conducting a little homework on this. And he in fact bought me lunch because I found it for him… lol. So let me reword this…. Thanks for the meal!! But yeah, thanx for spending the time to discuss this matter here on your internet site.

  40. Do you wear boxers or biefs? I wana bui em.

  41. Идеальный привод для жалюзи.
    с помощью привода.
    для офиса.
    Зачем нужен привод для автоматизации жалюзей.
    Современные разработки для управления жалюзями.
    Как управлять жалюзями с помощью смартфона с использованием привода.
    Секреты успешной установки привода для автоматизации жалюзей.
    Плюсы привода для жалюзи в экономии ресурсов.
    Забавные истории об использовании приводов для жалюзей.
    Почему привод для жалюзи делает жизнь легче и удобнее.
    привод жалюзи электрический [url=https://elektrokarniz21.ru/]https://elektrokarniz21.ru/[/url] .

  42. Be sure to stain, seal, or paint your wood to make sure it’s protected from moisture to avoid rot.

  43. автоматический карниз для штор [url=http://prokarniz17.ru/]автоматический карниз для штор[/url] .

  44. карнизы с электроприводом купить [url=http://prokarniz11.ru]карнизы с электроприводом купить[/url] .

  45. Mrs. Gipson is survived by her kids, Fannie Hutchison of Palestine, Walter Lee Gipson of Temple, Daymond Gipson of Beeville, Tommie Gipson of Houston and Jerry Gipson of Elkhart; brother, Vassie L. Conner of Phelps; 17 grandchildren and 25 great-grandchildren.

  46. porn teacher with student [url=http://www.teacherporntube.com]porn teacher with student[/url] .

  47. автоматические карнизы [url=http://www.prokarniz19.ru]автоматические карнизы[/url] .

  48. Understanding these parts can provide helpful insights for city design and planning.

  49. That is a great tip especially to those fresh to the blogosphere. Simple but very accurate information… Many thanks for sharing this one. A must read post!

  50. Market tendencies are viewed throughout a broad spectrum for change and interaction with related segments, and then for life and duration of modifications.

Leave a Reply

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