|
Post by AnthroHeart on May 17, 2021 19:18:17 GMT
I am excited.
I have just released version 4.0, a major update, to the Intention Repeater Max.
I have added the Holo-Link framework, as created by tai
To generate the Holo-Link files, just run:
intention_repeater_max.exe --createhololinkfiles
Once created, make an INTENTIONS.TXT file in the same folder with your intentions in it.
Then, you can run, depending on what you want: intention_repeater_max.exe --usehololink --color LIGHTBLUE --dur 00:01:00 --timer EXACT --imem 10
When using the --usehololink option, the --intent option is disabled.
Here is a screenshot on my Linux system. Please test the Windows version.
If you like, you can check the MD5 Checksum of:
md5sum ./intention_repeater_max_4.0.exe 097f2e091525195b930604626de23272 ./intention_repeater_max_4.0.exe
|
|
tai
Full Member
Posts: 128
|
Post by tai on May 17, 2021 21:29:06 GMT
This is beautiful
|
|
tai
Full Member
Posts: 128
|
Post by tai on May 17, 2021 21:49:06 GMT
Utilized this and my nose almost started bleeding and it was only 2 seconds in. Might be because of the physical change I am trying to achieve, I am running it for 5 hours. Shall get back to you five hours from now.
|
|
|
Post by reden on May 17, 2021 22:12:07 GMT
Utilized this and my nose almost started bleeding and it was only 2 seconds in. Might be because of the physical change I am trying to achieve, I am running it for 5 hours. Shall get back to you five hours from now. Can I ask which physical change is that?
|
|
tai
Full Member
Posts: 128
|
Post by tai on May 17, 2021 22:31:49 GMT
Utilized this and my nose almost started bleeding and it was only 2 seconds in. Might be because of the physical change I am trying to achieve, I am running it for 5 hours. Shall get back to you five hours from now. Can I ask which physical change is that? It's changes I specified in this commissioned subliminal, basically its to modify the appearance of my face and body. Just had a whole leg spasm on my left leg, then I had aches on my ankles and then on my spine. It feels like im being smacked with micro sized particles.
|
|
pompom
Junior Member
Posts: 68
|
Post by pompom on May 17, 2021 22:37:03 GMT
Darn I wish I could understand computers, this stuff looks like hieroglyphics.
Edit: Nevermind I actually got it to work. Wasn't even that difficult, I feel silly now
|
|
pompom
Junior Member
Posts: 68
|
Post by pompom on May 17, 2021 22:38:53 GMT
Can I ask which physical change is that? It's changes I specified in this commissioned subliminal, basically its to modify the appearance of my face and body. Just had a whole leg spasm on my left leg, then I had aches on my ankles and then on my spine. It feels like im being smacked with micro sized particles. Off-topic but I've been using some of your subliminals and manifesting physical changes like crazy. Keep up the good work!
|
|
|
Post by AnthroHeart on May 18, 2021 0:33:25 GMT
I love the name of the clang c++ compiler. I just learned there is a clang-format utility, which is a command-line C++ beautifier.
It is pretty sophisticated, and can do to a number of styles.
It formats C/C++/Java/JavaScript/Objective-C/Protobuf/C# code to these styles, according to their documentation:
Coding style, currently supports: LLVM, Google, Chromium, Mozilla, WebKit. Use -style=file to load style configuration from .clang-format file located in one of the parent directories of the source file (or current directory for stdin). Use -style="{key: value, ...}" to set specific parameters, e.g.: -style="{BasedOnStyle: llvm, IndentWidth: 8}
I chose LLVM for the next version (fixing a few bugs), which is what CLang is based off.
I was thrilled to find an official code beautifier.
For Linux, I use Visual Studio Code for my coding.
I compile command line using both g++ and clang++.
I'm going to compare those two for Linux, with x86_64-w64-mingw32-g++, the Windows compiler for Linux. I can run with Wine on my Linux.
|
|
|
Post by AnthroHeart on May 18, 2021 1:30:12 GMT
What's your favorite color to use?
|
|
|
Post by AnthroHeart on May 18, 2021 1:44:35 GMT
Darn I wish I could understand computers, this stuff looks like hieroglyphics. I'm not sure if you're referring to the part below, but that's not regular C++ programming. It's just color codes that I found on the web.
#define DEFAULT "\x1b[0m"
#define DARKGRAY "\x1b[1;30m"
#define BLACK "\x1b[0;30m"
#define LIGHTRED "\x1b[1;31m"
#define RED "\x1b[0;31m"
#define LIGHTGREEN "\x1b[1;32m"
#define GREEN "\x1b[0;32m"
#define LIGHTYELLOW "\x1b[1;33m"
#define YELLOW "\x1b[0;33m"
#define LIGHTBLUE "\x1b[1;34m"
#define BLUE "\x1b[0;34m"
#define LIGHTMAGENTA "\x1b[1;35m"
#define MAGENTA "\x1b[0;35m"
#define LIGHTCYAN "\x1b[1;36m"
#define CYAN "\x1b[0;36m"
#define WHITE "\x1b[1;37m"
#define LIGHTGRAY "\x1b[0;37m"
|
|
|
Post by hambumger1 on May 18, 2021 3:09:32 GMT
I tried using this on my Android. I got an error. Everything works until I get to the part where I enter the clang++ command
First I enter the clang++ command:
clang++ intention_repeater_max_4.0.cpp -O3 -o intention_repeater_max_4.0
This is what I get after entering the clang++ command:
intention_repeater_max_4.0.cpp:24:10: fatal error: 'bits/stdc++.h' file not found #include <bits/stdc++.h> ^~~~~~~~~~~~~~~ 1 error generated.
|
|
|
Post by reden on May 18, 2021 3:27:52 GMT
I tried using this on my Android. I got an error. Everything works until I get to the part where I enter the clang++ command First I enter the clang++ command: clang++ intention_repeater_max_4.0.cpp -O3 -o intention_repeater_max_4.0 This is what I get after entering the clang++ command: intention_repeater_max_4.0.cpp:24:10: fatal error: 'bits/stdc++.h' file not found #include <bits/stdc++.h> ^~~~~~~~~~~~~~~ 1 error generated. The header (a file which provides helpful functions the program may use) <bits/stdc++.h> is GCC/G++ only. Termux does not have direct access to GCC, it's on another software repository you have to manually enable. A link I found says that you can replace the line for <iostream> and it should work. The "24:10" means "the 10th character (letter/number/symbol) on the 24th line". Can you do "sed 's/<bits/stdc++.h'/<iostream>/g' intention_repeater_max_4.0.cpp"? (without the " "). Sed is a text manipulation program. It has no form to view the text as you are editing it, so over the years it has become reserved to text replacement jobs or other related tasks. <iostream> is a different file, however. I hope that it won't negatively affect the Repeater's usability. The Android NDK may have the header. Another solution the link gave was downloading a precompiled header and including it. But I'm not sure if that file would then have to be there on the Repeater's folder forever or not.
|
|
|
Post by reden on May 18, 2021 3:36:22 GMT
The include directive for <iostream> is already on the file.
There's a block called #ifndef _WIN32 which means "the compiler shall include those files too if the platform is Windows." The issue is that for some reason it doesn't work and tries to include the menctioned files regardless if the platform is Windows or not.
Since <iostream> was already in the file, I deleted the #include <bits...> line and the compile worked with no issues.
|
|
|
Post by hambumger1 on May 18, 2021 3:42:16 GMT
I entered it,but nothing happened.
|
|
|
Post by reden on May 18, 2021 3:47:20 GMT
I entered it,but nothing happened. Can you try to compile it again? Sed is one of those tools that says nothing when its job is done well.
|
|