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…)
#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++
Остекление балконов по выгодной цене в Петербурге, поможем выбрать подходящий вариант.
Остекление балконов и лоджий в СПб, по доступным ценам и с гарантией качества.
Изысканное остекление балконов в Петербурге, с учетом всех пожеланий клиента.
Качественное остекление балконов в Петербурге, без скрытых платежей и срочно.
Остекление балкона под ключ в СПб, с учетом всех требований и технических норм.
остеклить лоджию в спб [url=https://balkon-spb-1.ru/]https://balkon-spb-1.ru/[/url] .
Hello there! This blog post could not be written any better! Reading through this article reminds me of my previous roommate! He always kept preaching about this. I will forward this article to him. Fairly certain he’s going to have a very good read. Thanks for sharing!
1 юань в тенге [url=https://converter-valut.kz/]калькулятор валют[/url] .
Нужно быстро узнать курс валют? На платформе представлены тенге, рубли, юани и доллары с актуальными котировками. Мгновенная конвертация доступна в один клик.
Howdy! I could have sworn I’ve visited this site before but after browsing through some of the posts I realized it’s new to me. Anyways, I’m definitely delighted I stumbled upon it and I’ll be bookmarking it and checking back regularly.
Выбор номер один – натяжные потолки в Петербурге|Скидки на натяжные потолки в СПб|Опытные мастера по натяжным потолкам в Санкт-Петербурге|Разнообразие натяжных потолков в Петербурге|Как выбрать идеальный натяжной потолок в СПб|Натяжные потолки в Петербурге для вашего уюта|Современный дизайн с натяжными потолками в Санкт-Петербурге|Натяжные потолки в СПб: лучший выбор для вашего дома|Долговечные и стойкие натяжные потолки в Санкт-Петербурге|Последние тренды для натяжных потолков в Петербурге|Легко и быстро: установка натяжных потолков в СПб|Идеальный выбор: натяжные потолки в СПб|Инновации и креативность в сфере натяжных потолков в Санкт-Петербурге|Экономьте на натяжных потолках в Санкт-Петербурге|Дизайнерские потолки в Петербурге: натяжные|Профессиональные консультации по выбору натяжных потолков в СПб|Красота и функциональность: натяжные потолки в СПб|Точное соответствие вашим потребностям: натяжные потолки в Петербурге|Персональные решения для вас: натяжные потолки в Петербурге|Плюсы натяжных потолков в Петербурге|Технологические новинки для натяжных потолков в Санкт-Петербурге|Премиальный сервис по установке натяжных потолков в СПб|Новинки в оформлении потолков: натяжные потолки в Петербурге|Идеальное сочетание цены и качества: натяжные потолки в СПб
спб установка натяжных потолков недорого [url=https://potolki-spb-1.ru/]https://potolki-spb-1.ru/[/url] .
Very good blog post. I absolutely love this site. Keep it up!
Way cool! Some very valid points! I appreciate you writing this article plus the rest of the website is extremely good.
bookmarked!!, I really like your website.
New players at Taya365 are welcomed with a ?999 bonus, providing an exciting start to explore the platform’s variety of games. This incentive makes it easier to experience the best of Filipino online casinos.
taya365 slot [url=https://taya365-casino.pro/]taya365 download[/url] .
The overall health of the native economy, native incomes and rent potential all make it an ideal place to buy Real Estate in Brantford.
I really like it when people come together and share thoughts. Great site, stick with it.
That is a very good tip particularly to those new to the blogosphere. Simple but very accurate info… Thanks for sharing this one. A must read article.
This site was… how do I say it? Relevant!! Finally I’ve found something that helped me. Thanks a lot.
Very good article. I am facing many of these issues as well..
I absolutely love your blog.. Very nice colors & theme. Did you build this site yourself? Please reply back as I’m hoping to create my very own blog and would like to know where you got this from or exactly what the theme is called. Kudos!
Glad to be one of the visitants on this amazing web site : D.
Возможности выигрыша в онлайн казино, где ставки высоки.
Получайте азарт и адреналин вместе с нами, и ощутите атмосферу азарта и волнения.
Обнаружьте свое новое казино онлайн, и начните выигрывать уже сегодня.
Почувствуйте атмосферу настоящего казино в режиме онлайн, не выходя из дома.
Выигрывайте крупные суммы при помощи наших игр, и станьте настоящим мастером азарта.
Играйте вместе с друзьями и соперниками со всего мира, и докажите свое превосходство.
Играйте и выигрывайте, получая щедрые бонусы, которые принесут вам еще больше радости и азарта.
Играйте и наслаждайтесь азартом в каждой ставке, и готовьтесь к бесконечным выигрышам.
Станьте частью казино онлайн и получите доступ к эксклюзивным играм, сделав всего несколько кликов мыши.
онлайн казино [url=https://casino-on-line.by/]казино онлайн беларусь[/url] .
Join Taya365 to experience Filipino gaming at its best. Whether you’re a seasoned player or a beginner, the platform offers tailored promotions, a vast game selection, and robust security measures.
taya365 casino login [url=https://taya365-casino.pro/]taya365 login[/url] .
Good web site you’ve got here.. It’s difficult to find good quality writing like yours these days. I truly appreciate individuals like you! Take care!!
Great information. Lucky me I found your blog by chance (stumbleupon). I’ve book marked it for later.
Your style is so unique compared to other folks I have read stuff from. Thanks for posting when you have the opportunity, Guess I will just book mark this blog.
There are some attention-grabbing points in time on this article however I don’t know if I see all of them center to heart. There is some validity but I will take hold opinion till I look into it further. Good article , thanks and we wish extra! Added to FeedBurner as well
I really love your blog.. Pleasant colors & theme. Did you build this site yourself? Please reply back as I’m attempting to create my own personal website and would love to find out where you got this from or exactly what the theme is named. Appreciate it.
I was pretty pleased to uncover this web site. I need to to thank you for ones time due to this fantastic read!! I definitely really liked every little bit of it and I have you saved to fav to check out new information in your web site.
Aw, this was a really good post. Finding the time and actual effort to create a superb article… but what can I say… I hesitate a whole lot and never seem to get nearly anything done.
You should be a part of a contest for one of the most useful websites on the internet. I’m going to recommend this website!
Most customer service specialists can walk you through setting up the best passwords, watching out for scam Web sites or fake landing pages when accessing information, and selecting and setting up home security to keep hackers and viruses at bay.
Good day! I just wish to give you a big thumbs up for the great info you have got here on this post. I’ll be returning to your site for more soon.
One among the most important issues to keep in mind when planning or tweaking your advantages package deal is that there is a robust and rising development toward serving to staff balance their work with their household lives.
Your style is very unique compared to other folks I have read stuff from. Thank you for posting when you have the opportunity, Guess I will just bookmark this web site.
Incidentally, Beth’s 2 Broke Ladies co-star Kat Dennings had worn a Jennifer Behr piece to the 2014 Folks’s Choice Awards, where she and Beth spoke onstage together.
The results reveal that the increase in economic welfare of an average American has stabilised after the 1970s although the economy, measured by GDP, has continued to grow.
Having read this I believed it was really enlightening. I appreciate you finding the time and energy to put this short article together. I once again find myself personally spending way too much time both reading and commenting. But so what, it was still worth it!
Ding quickly gained the advantage, having a passed d-pawn and a powerful g-pawn.
A fascinating discussion is definitely worth comment. I believe that you ought to publish more on this issue, it may not be a taboo subject but usually people don’t speak about these issues. To the next! Best wishes.
Then after he grabbed a couple of girls’ behinds, they’re like, well, we can’t deal with this guy.
Pretty! This has been a really wonderful article. Thank you for providing this info.
In 2009 he also predicted that the US government would take over and nationalize a number of large banks; it did not happen.
You made some good points there. I looked on the web for more info about the issue and found most people will go along with your views on this site.
Very good article. I am going through some of these issues as well..
Other services of the company are to guide the client through the development process.
Hi, I do think your website could be having web browser compatibility problems. When I look at your web site in Safari, it looks fine but when opening in I.E., it’s got some overlapping issues. I merely wanted to provide you with a quick heads up! Other than that, great blog.
Frances Stephanie Moor, Health Customer and Fieldwork Trainer, Liverpool Well being Authority.
You made some really good points there. I checked on the net for more information about the issue and found most individuals will go along with your views on this site.
Oh my goodness! Awesome article dude! Thank you, However I am going through troubles with your RSS. I don’t know the reason why I cannot subscribe to it. Is there anybody getting the same RSS problems? Anyone who knows the answer can you kindly respond? Thanks!
Howdy! I could have sworn I’ve visited this web site before but after going through some of the articles I realized it’s new to me. Anyhow, I’m definitely pleased I came across it and I’ll be bookmarking it and checking back frequently!
This website certainly has all of the information and facts I needed about this subject and didn’t know who to ask.
This blog was… how do I say it? Relevant!! Finally I have found something that helped me. Kudos!
I love reading a post that will make people think. Also, thank you for permitting me to comment.
This is the fitting weblog for anybody who desires to seek out out about this topic. You notice a lot its virtually arduous to argue with you (not that I really would want…HaHa). You undoubtedly put a new spin on a subject thats been written about for years. Nice stuff, just great!