|
Post by reden on Dec 27, 2022 15:03:20 GMT
You can use GitLab. Or an open source code host. For example Codeberg or sr.ht .
|
|
|
Post by sound on Dec 27, 2022 17:15:21 GMT
I can't quite stop thinking about Backroom 37. It triggered (in a good way) something deep within me -- like a sense of extreme comfort or nostalgia. It's very strange!!!!!
|
|
|
Post by sound on Dec 27, 2022 17:15:41 GMT
You can use GitLab. Or an open source code host. For example Codeberg or sr.ht . Thanks for the suggestions; I'll look into them.
|
|
|
Post by reden on Dec 27, 2022 17:45:27 GMT
I can't quite stop thinking about Backroom 37. It triggered (in a good way) something deep within me -- like a sense of extreme comfort or nostalgia. It's very strange!!!!! Many backrooms are like this. The word is "liminal" or "liminal spaces". Associated to it are weird aesthetics, which is a modern way of saying thematics or how the word "punk" was spammed (solarpunk, steampunk, etc.), of "weirdcore" and "dreamcore", which may have weird themes of blood and red text, and therefore form a neoemo iconography.
|
|
|
Post by AnthroHeart on Dec 27, 2022 17:57:07 GMT
I can't quite stop thinking about Backroom 37. It triggered (in a good way) something deep within me -- like a sense of extreme comfort or nostalgia. It's very strange!!!!! Interesting. It gave me a creepy vibe, because of how the other levels are mostly creepy. And one can get stuck on the levels.
|
|
|
Post by reden on Dec 27, 2022 18:08:00 GMT
The backrooms are a collective writing exercise. Anyone can write levels. If they get into one or both of the wikis, with the consideration and regard they will get, they shall be made real.
|
|
|
Post by reden on Dec 28, 2022 19:28:26 GMT
AnthroHeart said this one is 7/10 for some reason. The Intention is "I am happy" Is it strong to you sound ? Attachments:rep3.exe (301.21 KB)
|
|
|
Post by sound on Dec 28, 2022 20:05:37 GMT
I'm running it now. Is it supposed to show any text? It is just blinking.
|
|
|
Post by sound on Dec 28, 2022 20:06:26 GMT
I do notice a light feeling in my heart area and some muscle relaxation.
|
|
|
Post by sound on Dec 28, 2022 20:09:40 GMT
It came just as I had opened the program. It would be embarrassing if it hasn't even started. 😂 But I really believe it has even though it is just blinking.
|
|
|
Post by reden on Dec 28, 2022 20:10:43 GMT
I should have posted the code
program Main; {$mode objfpc}{$H+}
uses SysUtils;
var intention: string; intention_value: string; repeat_intention: string; ram_size_value: integer; INTENTION_MULTIPLIER: QWord; a: integer;
begin intention := 'I am happy'; intention_value := ''; repeat_intention := ''; ram_size_value := 1; INTENTION_MULTIPLIER := ram_size_value * 5;
while Length(intention_value) < INTENTION_MULTIPLIER do begin repeat_intention := intention_value; end;
for a := 1 to 2147483647 do begin repeat_intention := intention_value; end; end.
AnthroHeart said the intention multiplying part isn't working. Regardless it was described as strong. I don't know why it is strong considering it's so simple.
|
|
|
Post by sound on Dec 28, 2022 20:12:02 GMT
I don't get it. What is it doing? Is it doing nothing at all?
|
|
|
Post by reden on Dec 28, 2022 20:14:28 GMT
The core of the repeater is more or less this
//Code by Anthro Teacher (5/20/2021) to demonstrate //how to multiply your intention in a variable, up to 1 GB in size. //https://forums.intentionrepeater.com
#include <stdio.h> #include <string>
using namespace std;
int main() { std::string intention = "It feels like I am at Disneyland."; // This is our intention we wish to // repeat. std::string intention_value = ""; // This is the variable we are appending our // intention to, in order to multiply it. std::string repeat_intention = ""; // This calls the Servitor implicitly. It doesn't matter the name of // the variable, only that you are assigning to it repeatedly.
int ram_size_value = 1; // Set how many GB of RAM to allocate unsigned long long int INTENTION_MULTIPLIER = (ram_size_value * 1024 * 1024 * 512); /* We use 512 in here, because we have two variables, repeat_intention and intention_value, that hold the full intention values, and we want total memory used to be 1GB. Therefore, with these two variables, they both need to fit in the 1GB. */
while (intention_value.length() < INTENTION_MULTIPLIER) { intention_value += intention; // Append our intention into the // intention_value variable, to multiply it. }
for (int a = 1; a <= 1E6; a += 1) { // Repeat our 1GB string a million times. repeat_intention = intention_value; }
return 0; } But obviously running continously. I told Chatgpt to translate it to pascal to be able to run it in msdos, as I thought it would be faster. It was surprising to see it running forever. But (does pascal have return? maybe that's why)
I tried to get it to translate the Repeater v3.3 but it got stuck making dozens of commandline options.
|
|
|
Post by reden on Dec 29, 2022 13:22:17 GMT
Anthroheart observed the translated pascal with the busted intention multiplying code is 5/10, standard for the repeater at 1 imem I believe. Interesting it achieved such speed. Need to further experiment on this.
|
|
|
Post by sound on Dec 29, 2022 13:26:19 GMT
Keep us posted.
|
|