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

0 0 votes
Article Rating
Subscribe
Notify of
1.1K Comments
Inline Feedbacks
View all comments
onexxxxslots
2 months ago
2 months ago

Wonderful post! We will be linking to this great post on our site. Keep up the great writing.

2 months ago

The writings of George Washington: Being his correspondence, addresses, messages, and other papers, official and non-public.

2 months ago

Everything is very open with a precise description of the challenges. It was definitely informative. Your website is extremely helpful. Thanks for sharing!

2 months ago

Golden Jewellery is not just a chunk of ornament for a woman; it’s epitome of her beauty & accentuates her elegance.

2 months ago

If you are considering gather any evidence,legal advice could be really important.コスプレ エッチ

2 months ago

This website definitely has all of the info I wanted concerning this subject and didn’t know who to ask.

slotsonex
2 months ago
2 months ago

Oh my goodness! Amazing article dude! Thank you so much, However I am going through issues with your RSS. I don’t understand why I can’t subscribe to it. Is there anybody getting identical RSS issues? Anybody who knows the solution will you kindly respond? Thanks.

2 months ago

Remarks: Korchnoi will get the tables turned on him in this Ruy Lopez and throws within the towel after discovering himself unable to both protect his passed pawn and cease White’s from queening.

2 months ago

This is a topic that is close to my heart… Best wishes! Exactly where can I find the contact details for questions?

2 months ago

At present, all it takes to seek out and complete any type, corresponding to Printable blank soccer play sheet template, is opening just one browser tab.

2 months ago

I really like reading through a post that can make men and women think. Also, many thanks for permitting me to comment.

2 months ago

This is a topic that’s near to my heart… Many thanks! Where are your contact details though?

2 months ago

Evison, V. I. (2000).

2 months ago

They will scarcely have developed after the arrival of the Waṇetsi speakers of their present dwelling, which is by no means topographically lower off from the remainder of Paṣ̌to territory.

2 months ago

The very next time I read a blog, Hopefully it won’t disappoint me as much as this particular one. After all, I know it was my choice to read, but I really believed you’d have something useful to say. All I hear is a bunch of crying about something you could possibly fix if you weren’t too busy searching for attention.

2 months ago

I’m impressed, I have to admit. Truly rarely should i encounter a blog that’s both educative and entertaining, and without a doubt, you’ve hit the nail within the head. Your notion is outstanding; the pain is an issue that insufficient everyone is speaking intelligently about. I am very happy that we stumbled across this inside my try to find some thing relating to this.

2 months ago

I’d like to thank you for the efforts you have put in penning this site. I am hoping to check out the same high-grade content from you in the future as well. In fact, your creative writing abilities has encouraged me to get my very own website now 😉

slotsonexee
2 months ago
2 months ago

lovedollAs long as we have a smartphone in our pocket,it is less likely that we spend time daydreaming,

2 months ago

I’m extremely pleased to discover this page. I want to to thank you for ones time just for this wonderful read!! I definitely liked every part of it and i also have you saved to fav to see new things in your web site.

2 months ago

Hello there! This is type of off subject but I need to have some guidance from an established website. Is it difficult to set up your private website? I’m not really techincal but I can figure issues out pretty rapid. I’m contemplating about generating my own but I’m not sure exactly where to start. Do you have any points or ideas? Numerous many thanks

2 months ago

One more thing. In my opinion that there are many travel insurance web sites of reputable companies than enable you to enter your holiday details and have you the quotes. You can also purchase the actual international travel insurance policy on-line by using your credit card. All that you should do will be to enter your current travel specifics and you can see the plans side-by-side. Simply find the package that suits your capacity to pay and needs after which use your bank credit card to buy the idea. Travel insurance on the web is a good way to start looking for a respectable company to get international travel cover. Thanks for expressing your ideas.

2 months ago

An interesting discussion is worth comment. I do think that you need to publish more on this subject, it might not be a taboo matter but typically folks don’t discuss these subjects. To the next! Kind regards.

2 months ago

I really love your blog.. Very nice colors & theme. Did you develop this website yourself? Please reply back as I’m attempting to create my own site and would love to find out where you got this from or what the theme is named. Kudos.

2 months ago

I don’t make it a habit to make comments on many articles, but this one deserves attention. I agree with the data you have written so eloquently here. Thank you.

corgislottt
2 months ago
2 months ago

Hi, just required you to know I he added your site to my Google bookmarks due to your layout. But seriously, I believe your internet site has 1 in the freshest theme I??ve came across. It extremely helps make reading your blog significantly easier.

2 months ago

Everything is very open with a clear description of the challenges. It was really informative. Your site is extremely helpful. Thank you for sharing!

2 months ago

You’re so cool! I do not think I’ve truly read anything like this before. So good to discover someone with a few genuine thoughts on this topic. Really.. thank you for starting this up. This website is something that is required on the internet, someone with a little originality.

2 months ago

well, outsourcing can actually save any company several million dollars because of cheap labor.,

2 months ago

Nice post. I be taught one thing more difficult on totally different blogs everyday. It’s going to all the time be stimulating to read content from different writers and follow a bit one thing from their store. I favor to make use of some with the content on my blog whether you don’t mind. Natually I provide you with a link on your internet blog. Thanks for sharing.

2 months ago

Hey, I’ve been ranking the crap out of “pre spun articles”.

2 months ago

Spot on with this write-up, I actually believe that this website needs a great deal more attention. I’ll probably be returning to read through more, thanks for the advice!

2 months ago

Spot up for this write-up, I truly believe this web site wants considerably more consideration. I’ll more likely be again to study considerably more, thank you for that information.

2 months ago

it is of course wise to always use recycled products because you can always help the environment’

2 months ago

Vos article : bon voici plusieurs agréables sujets de controverse mais reste sceptique de la fidélité des indices supputés ici meme dans votre/vos blog

2 months ago

I’d must talk to you here. Which is not some thing Which i do! I like reading an article that can make people believe. Also, thank you for permitting me to comment!

2 months ago

Hi! I could have sworn I’ve been to this blog before but after looking at some of the posts I realized it’s new to me. Anyways, I’m definitely pleased I found it and I’ll be book-marking it and checking back regularly!

2 months ago

You made various good points there. I did a search on the topic and found most people will have the same opinion with your blog.

2 months ago

information technology is increasing these days, most jobs are also related to information technology”

2 months ago

An impressive share, I just now with all this onto a colleague who has been doing small analysis on this. And hubby in fact bought me breakfast simply because I stumbled upon it for him.. smile. So ok, i’ll reword that: Thnx for your treat! But yeah Thnkx for spending enough time go over this, I feel strongly regarding it and love reading on this topic. If it is possible, as you grow expertise, would you mind updating your blog post to comprehend details? It is actually extremely ideal for me. Massive thumb up due to this post!

2 months ago

Everything is very open with a precise explanation of the challenges. It was truly informative. Your site is extremely helpful. Thanks for sharing!

2 months ago

Incredible this specific guideline is certainly impressive it truly helped me and my children, many thanks!

2 months ago

I as well as my buddies appeared to be looking through the nice key points found on your site and unexpectedly developed a horrible suspicion I had not thanked the blog owner for those tips. The guys were definitely as a result joyful to read through them and now have in truth been tapping into them. Appreciate your actually being really thoughtful as well as for going for this kind of decent subject matter millions of individuals are really needing to be aware of. My sincere regret for not expressing appreciation to you earlier.

2 months ago

I couldn’t resist commenting. Well written.

2 months ago

I’m not sure exactly why but this site is loading very slow for me. Is anyone else having this issue or is it a issue on my end? I’ll check back later on and see if the problem still exists.

2 months ago

you are in reality a excellent webmaster. The website loading speed is amazing. It kind of feels that you’re doing any unique trick. Furthermore, The contents are masterwork. you’ve performed a fantastic job on this matter!

2 months ago

Hello! I could have sworn I’ve been to this web site before but after going through many of the posts I realized it’s new to me. Regardless, I’m definitely pleased I discovered it and I’ll be book-marking it and checking back regularly.

1.1K
0
Would love your thoughts, please comment.x
()
x