The Road to Alexandria (IG: UPX)

So I’ve implemented most of one of five user stories I have left to do, but I haven’t tested the implementation yet. Like some others online I have watched, I have remained focused on other things , mainly the things I previously described. The last couple of nights have been quite intense in terms of my inner life, and late waking most of the time (well, compared to a 6 or 7am wake time, I’m talking several times of waking and falling asleep again).

I will get around to the testing, but things will be slow until whatever has been “distracting” me is resolved. If what I’ve been learning this afternoon has anything to do with it, maybe this ASBR is coming at exactly the right time for what needs to happen next. I feel like I’m being prepared for greatness.

Potential ASBR result.

After finally getting around to testing the user story I mentioned, last night I discovered my Quest 2 no longer connecting to my PC. I was also unable to access the settings for my device in the mobile app. This was quite frustrating and I spent quite some time trying to get it working again, including setting up 2FA on my dev account (which I suppose is what they wanted in order to track me), and still it didn’t solve the problem.

It took until this morning to figure out the app wasn’t seeing the device because it needed Bluetooth enabled. I figured this out by sheer accident while asking Bard about the problem. Once I could see the device, it was pretty clear… Meta had automatically disabled developer mode on my device quite arbitrarily. Re-enabling it through the app, I was finally able to install my new app version. Only to discover it’s still not rotating the characters of the axis title properly so its back to the drawing board. But at least the big F U problem was solved. I was worried for a good 12 hours that I wasn’t going to get the thing working ever again.

So I’m at 2.5 to 3 user stories done out of 5 now, with two days left to go in the week. Unless there is some major hiccup between now and then, God willing I will have version 1 done by the end of this week on track for time.

Today I had a shock when watching a Youtube video. Someone sharing a dream they had had about … lets just say, upcoming events … mentioned certain symbols or objects in their dreams. One was a boat being rowed by celestial beings, the other was an open field.

These symbols were the same ones, changed slightly for my internal symbolic consciousness, that I encountered in my two prophetic dreams, part of which has already come to pass. In my dream, what they had seen as a row boat was a tugboat (atop which was a section housing the Ark of the Covenant) and a dingy. In my dream, the field was still a green field, but I was crawling on my stomach through the field because the hacker group Anonymous had compromised my phone.

This video also described a red sky which opened up, which was almost the same as a dream my ex-partner (who I still communicate with) had about fire letters where the skies were red and writ with letters.

The dreams I know were prophetic because they foretold me working with Rust when Rust was barely a glint in the eye of its developer, and also predicted my second partner 3-4 years before they showed up.

Hearing the material on the Youtube clued me in finally to what the tugboat and the dingy meant, as well as the line of people holding a rope which gradually descended to the water and the life-raft/dingy. In the dream, the final line of the dream was me saying “ahh… I see you finally found my Grail”.

Finding out what it meant has filled me with some hope for the future, although it has also raised other questions at the same time. It seems both my spiritual life and my work on the app are proceeding on target and both are of equal importance right now.

Got some user acceptance testing done today, which confirmed my suspicions about the context sensitive help required in the app. I’ll add that in tomorrow. Other than that, not as productive a day as usual in the business sphere.

However, revelations continue in other spheres and there’s no way I can ascribe all of them to subs I’ve run. Not that I should do that anyway, and I have always disagreed with that ideal of trying to ascribe everything happening that looks like a result to a sub (especially everything good happening). It turns subliminals into a form of antichrist, rather than a contributing agent or seed.

But basically, its almost like spiritual knowledge and answers to parts of my life are opening up one by one helping to integrate old knowledge and adding new stuff. Don’t worry, I’m not turning into Hermit lol. But I am definitely in awe of the process that is going on. There’s literally no way it can all be the result of the subs. It’s more likely the result of actions I’ve begun taking, and the “equal and opposite reaction” in the numinous world.

It was literally only yesterday I was writing about my gaining of knowledge regarding those dreams that foretold parts of my at the time future and the further future that has not yet occurred (and I was able to identify the meaning of the symbols I hadn’t yet understood), and now today I’m understanding other things which to me are just as profound and relevant to current world events. I can only hope this continues, hopefully eventually at a little slower of a pace or in a way that is a little less disruptive to my daily routine.

Today was a write-off for doing the code. However, I did still get some good progress on other things.

I’ve started looking into how to set up smart home like stuff without needing a Thread border router always on to facilitate that. It was a frustrating process, but through a friend and some querying of Bard I managed to determine that Home Assistant / HAOS can run a thread border router on a PC using OpenThread. That means devices such as programmable lights which are compatible with the Thread protocol and Bluetooth such as the Nanoleaf Essentials which works with the Matter protocol should technically be able to be used with an HAOS VirtualBox installation.

I already have the installation running, I just need to trial installing the Add-On to see if what Bard tells me is correct (and given its track record I reckon thats about 50/50). Once I have it working, hopefully I should be able to control light color over our local Wifi network.

Gonna try to get this fixed and out of the way tonight so I can focus on code tomorrow.

No code today. The way a Saturday ought to be. Will run GLM tonight in the hopes of assisting motivation to bring everything together tomorrow with the remaining user stories.

Possible EWTP result (I rotate my stack a lot so I can get experience of different subs) today. Being able to tell one of the fake Youtubers from real ones. ie, in this case, someone trying to pretend to be something they were not, not AI generated videos which I’ve noticed plenty before. Being able to distinguish through the body language of the person and their verbal language, among other things. Scattered in among results from keeping up with my various news information channels.

U dont know if its ASBR or not, but there has definitely been a very RoM like experience the last couple of days, but jacked up a couple of levels. More on that later maybe.

Code finally began to flow this evening and I have Utf8 string categories for x and z axes working and stable. Now the only remaining bug in the code is the SpriteBuffer HashMap being freed/reallocated between plots and needing to be refreshed in specific circumstances.

I think I’m going to go at Space weather conversion for some quick wins tomorrow. Then I can have everything started for the explanatory video / dev log before my meeting on Thursday.

Felt the need to put a post on this thread which will be my last at least for a fair while. I ended up finishing the first version of the app and the last several weeks have been geared towards creating an introductory video to the app, which has been incredibly difficult. Video production has never been my forte.

Just hitting Index Gate and programming related topics first, I updated the app to allow multiple plots to be loaded and interacted with at once, and then the ability to run a script at startup to automatically load tables, queries, plot settings and plots, as well as to set environment variables relevant to how polars executes its queries.

In the course of doing this, I hit a brick wall with the default allocator which led to me having to replace that with MiMalloc. It is now my opinion that for dynamic situations like VR apps where lots of things are being created and destroyed over the course of the app lifetime, it makes sense to use an allocator which was designed to prevent heap fragmentation. It reduces drastically the number of instances where Rust’s Hashmap and Vector libraries from the pinned version I’m using in my app is forced to potentially allocate memory that may overlap other objects.

I also learned that Rust’s HashMap implementation can cause the memory addresses of its stored members to change as keys are added and removed. This led to some interesting situations where creating a new child window (which internally manipulates a hash map) caused a reference originally obtained from the mesh manager to become invalidated, with the result that the fields of that referenced object contained garbage, invalid values. This further reinforced the importance of understanding what kind of memory manipulation different libraries perform so that splitting references out from their parent objects can be done safely.

Finally, I probably didn’t mention in my last post adding multiple custom colors to the plots via the fourth column to create things like heat maps, but that’s now a thing. I also figured out how to run a bash + perl one-liner to extract data from netcdf files so that data from things like NASA’s DISCOVR probe could be extracted and plotted.

I feel like I’ve mastered enough of the Rust + VR world that I can start teaching it to others, and looking it over it almost seems like second nature to me. I’m now moving into a different phase of the business (trying to get people to buy the damned thing, or participate in a beta).

Moving on to what I’m assuming is ASBR territory and later on LB, the process of working on the videos has been an eye opener. I really don’t like using my own voice on the videos, and I ended up going with a British Male AI voice so I didn’t have to do that. Even my own image I won’t use without some kind of manipulation to it. My mind reacts with alarm to the idea of doing live streams, and the idea of faceless channels but with personality piques my interest. I suppose this is in line with my previous roles at various companies… even though I acted as the “face” of the company when doing phone support, I was never really “representing” the company but more helping people to solve their problems with the products. I was once annoyed at my supervisors for putting me in back of house roles deliberately, because it seemed like they were casting aspersions on my appearance or my presentation etc, but further down the track I realised I would have hated front of house roles anyway. The whole superficial appearance that people in the sales industry assume in order to win sales never sat well with me, and probably the reason I always took months or even years to find a new role after ending a prior one came down to appearance/presentation and confidence in speaking off the cuff to people who were often being disingenuine or putting on a mask. I can even link my successes with this as well.

I feel like with ASBR there is definitely the possibility of using this to create fame for the brand or channel without associating it with a real face, ie separating the personal me from the business me. And that’s where I need to go with all this.

Finally, I would be remiss if I didn’t mention how LB and some of the subs I do less in my rotation have been impacting me, and the draw away from the strong business drive I had previously towards the creative, religious and other pursuits which are more in line with my core being. I have been drawn back again to the beej mantras and to connection with the divine will. It is a very strong pull that I was able to observe from a kind of witness position. It contributed to my decision to pull back from the forum, as I was uncomfortable not just with the rules about what you can and can’t talk about or say (something that goes against my core nature) but with some of the directions that were emerging in the hype threads at the time which were catering to some of the desires of society at the moment which are no longer in alignment with who I am. This was separate from the subs I listen to themselves, which continued to have a positive effect and evolution.

Although my work on the business appears to have slowed down, its really like those original periods last year when I was still learning and nothing appeared to be happening unless you looked under the surface. The process of internal self reflection I’ve been going through in order to decide what aspects of my being to put forth in my videos and other content has been an intense, evolutionary process which is not yet over. If I’m still on-planet after this upcoming eclipse, I feel things will push forward a lot after that and start moving again. Over the next few days however, other than working on finishing the promotional videos for my app, it will be a strong push to mantra and prayer work which I have been feeling a lot of urgency to lately. These two things are not unrelated, because harmony with the external good in the world is necessary in order to have the strength to work effectively in spite of the incredibly intense external energies of chaos that sensitives such as my self pick up on in the environment due to the nature of my nervous system etc.

I intend to be publishing the first videos promoting my product early next week assuming all heaven and hell doesn’t break loose beforehand. If I do post more on this thread, it will likely not be until May at the earliest, and I consider the documentation of the programming component of my journey as effectively complete, but I’ll leave the thread open for now to allow for future comments.

Just a final image to show I really do have multiple plots at once working (and no longer crashing on close).

2 Likes

Although I said my last post would be my last in a while, there are a few loose ends I need to tie up.

The Road To Alexandria

Firstly, the title of this thread is The Road To Alexandria, and the reason for that was that originally my first app was going to be a reading and research app, leaving the data analysis app for development after the first app was completed. However I quickly realized as I got into the mechanics of development that both apps would take about equal time to develop, due to all the shared libraries I had to craft. So the title “The Road To Alexandria” is not as descriptive as it was intended to be, and to be honest, the reading and research app for the Quest 2 may never come about as I have too many other projects that are likely to pull more money or interest in.

ASBR, spirituality/manifestation and sub interaction

The journey I took from November of 2022 when I re-entered programming work and started exploring Christian spirituality, up until the current day where I have reached a kind of uneasy equilibrium in the programming side of things, began with Revelation of Mind and Revelation of Spirit, among other subs.

Prior to that journey, I had a rich experience in many spiritual traditions including Indian spirituality (Hindu and some Buddhist), some Native American historical and prophetic context, Qabalah, ceremonial magic(k), free energy tech, Egyptian religious traditions and many more. One could say that as an undiagnosed autistic individual with a tendency towards obsessively thorough research, I made it my task to understand as much of these fields as possible, and to research their roots and origins. That even included around 20 years studying alchemy via the original texts and appeal to the laboratory of Nature.

I mention all these things to point to the stark difference between the journey of the last one and a half to two years, and the prior journey. One of the over-arching questions that remained in the back of my mind during that period was: how are these two seemingly incompatible groupings of knowledge going to integrate together? And how can I marry them with my subliminal work, as well as my personal moral and ethical position?

Particularly, a concern I had always had with subliminals was around teasing out the contributions of subliminals to forward development and growth, versus the contribution from communion with God and prayer, versus the 101 other factors that can yield a result. This is not a moot question, because it is possible if one ascribes a result to the wrong thing, to become overly grateful or dependent upon that thing, or more precisely to develop erroneous thinking.

I feel like I finally have answers to these questions that are solid enough that I can use them in forging a path forward. I won’t go into a lot of detail on this point since this is not a place to give a theological or epistemological discourse, other than to say that I think that it is crucial that every subliminal listener find a way to answer these questions to their own satisfaction as well. Anyone who seriously walks a spiritual path and also uses subliminal audio is going to run into the same questions eventually.

Ultimately even beyond the spiritual implications, the questions go to the core of using subs in a “scientific” way, by which I mean a way wherein you test a hypothesis about subliminal use and outcome and get repeatable results in similar circumstances.

Interestingly, I feel like my original run of RoM/RoS in early 2023 ended up overflowing into my use of other subs like Hero or ASBR, or to put it a different way, the seed forms created by RoM/RoS were watered by the later subs and bore fruit.

Through this journey of fruiting these seeds I have identified that unique aspects of Judeo-Christian thought that are still relevant to God-loving individuals of today, while at the same time finally identifying a means of differentiating between false doctrines (or those which open one to manipulation by other beings, physical and non physical) and ones which are compatible with the teachings of Christ, in alignment with John 7:16-17. This finally gives me license to move forward using the knowledge I had previously gleaned in my studies without fear of acting in a way contrary to the teachings of the Master (although, acting in a way that would probably be frowned upon by “orthodox” or “accepted” versions of the faith)

This was important to me to work out. Mainly because I have never been one to blindly accept something without verification, and also because I am painfully aware of how a single subtle untruth in a document can be used to turn people in wrong directions. The letter kills, but the spirit vivifies.

The reason I mentioned ASBR with regards to this is how it is meant along with the newer ZP to have you answer for yourself internally those questions about your core being that relate to the subs, and I feel like ASBR kicked that up a notch as soon as I started periodically using it. The questioning (and finding the right questions) was intense and geared towards me finding the truth of what I could speak about as a content creator and potentially as a writer as well without sending people on a path towards error, and a way of ensuring complete confidence in what I was to speak about so as to avoid problems when responding to haters or trolls etc.

Conclusion

All of these is to say that I feel like ASBR and the other lesser subs I use periodically set the stage for me to begin a role as a content creator in my own unique niche by intensifying an existing process of integration, to ensure things were not thrown out unnecessarily. It hasn’t completely resolved all the questions I have to address before I go down this path (the fame and brand creation aspects still hold a few questions for example), but I’m a lot closer to a solid plan in this than I was a month ago.

1 Like

What is your salary as a software engineer?

@Judoka I’m currently not working as an employee at a company. Typical salaries are going to vary depending on the country hiring. As an example, Google currently lists anything between 90K and 130K per year in my country, although the lower end is based on older data.

I’ve chosen the more difficult approach of being a small business, and that means so far I haven’t made any money off this app. I’m actually hoping to go live with my soft launch finally on Friday after reviewing my end to end processes with my mentor and after that, I’m pushing the content creator angle of teaching people how to write virtual reality apps from start to finish using only free and open source tools, along with data analysis topics as a side bar of interest and other topics relating to critical thinking and remaining rational in an era of non-rationality.

I was about to post this as an update anyway, but here is my initial very green introduction to the app for SME’s. Just for context, it took me a good month to get up to speed enough in CapCut to produce the video on my laptop. Future videos will be faster, and I’m learning that for my more live face to face approach, OBS Studio with appropriate plugins should be even faster to produce once I can pre-script what I need to discuss.

1 Like

What do you think someone could realistically make playing this subliminal and trying to learn to code after about 5 years?

Why limit it?

The value of software is not in how long it takes to write but in the end product and the way it is marketed to its target audience. There’s so many potentials with the current state of tech, but resilience springs to mind as a key factor.

Realistically, 5 years is long enough to get to expert level in any language you might choose and series of APIs of your choice to write some program. The rest is going to be up to your creativity with how you use the sub.

No sorry lol i meant money wise as in 6 figures is realistic?

“You even think like an earther” – Anderson Dawes to Detective Miller

Since I just said “why limit it” and then not only that but explicitly qualified it for you by pointing out that there is no limit to the value of the software you could develop and bring to market as a developer…

Then let me be even more explicit: YES, you wanna make six figures? Knock yourself out. Again, it’s going to depend on how you use the product. Are you going to become the world’s best tech support agent? Great, do it! Are you going to learn Javascript as a Full Stack Developer and help write components of some SaaS software a large corporation is bringing to market while getting paid 100 grand a year? Well, if you can find a software company that’s going to survive the tumultuous world economy we’re currently all living through, then by all means! It’s all on your actions, all Index Gate and the subs do is to provide your deeper mind with the right environment to predispose you to the right mindset and so on.

1 Like

Journaling note: something remarkable seems to have happened earlier tonight for me. Went to bed feeling my age and the heaviness of the lung scarring from smoking, the eyesight issues, the postural problems and body fat, then something happened and within an hour or so I started feeling… what I can only describe as “normal” again for the first time in an indefinite period. How long, I couldn’t tell you, because its hard to judge where things began to change for me. All I can tell is that it was after meeting my first partner, and may be related to sinus issues arising from dental work I had done as a young adult.

I can’t pin down any single cause. I regularly run Paragon Ultima V2 but until now haven’t seen any major improvements as a result of running it, only a kind of “maintenance mode”, preventing or slowing further degeneration.

All I know is that my sinuses are in better condition now suddenly than they’ve been for many years. Or a long time blocked clearly, again very sudden shift. There is an increased clarity of thought that comes with this, and I’ve been noticing very acutely at a gradually increasing rate all of the different aspects of my body’s functioning and how they contribute to my intellectual capacities.

Prior to that was nothing special. Watching a Youtube video about the Apocalypse of James and something known as “Jerusalem syndrome” which was being connected with the opening fragments of this pseudoepigrapha where Jesus is made to say that Jerusalem is a dwelling place for many archons. It’s a very Valentinian gnostic sentiment (I wasn’t aware that Valentinus was in the running to be a bishop of Rome before his broke with the church to begin his own teaching path) but a surprising one, the first place I’ve actually seen archons indicated as capable of inhabiting an earthly locus.

There were some conclusions drawn as a result of watching the video, but other than that quite an ordinary night leading up to the physical changes. There seemed to be a clearing of other physical problems such as what you might call lymph congestion.

I’m not sure how permanent these changes are yet, but I am self-observing dispassionately with interest to see how these affect the uptake of the subs. At the very least this will probably change my hearing acuity positively which would affect how clearly I can hear the subs.

The physical clarity of last night backslid somewhat during sleep and morning routine, but the vision of what primary health issues affect me and ways to address that has remained. Particularly, there are specific physical exercises (inverting the upper torso to push blood flow to the upper body and to enable working on the diaphragm, postural exercises, massaging certain areas) I can do to help Paragon along.

Aside from that, I’m realizing I may be in the wrong industry. I do programming well because I learned it from a very young age, from the days of the Z80 microprocessor when I wasn’t even in high school yet, and then learning 80386 assembly language back in high school.

But what I really do well outside this learned skill is research, writing, and creativity with words. Music included, but mainly poetry, creative writing, and “private detective” style research particularly on certain focused topics. I feel like a return to my writing is inevitable, but in the meantime I do have a solid focus for my Youtube channel relating to niche programming information and critical thinking related topics.

Whether I go back to my trilogy or focus on another research topic I have a specialization in is a decision for the future, one that needs to be made eventually but comes second to my current work to focus on the app and its success.

I suspect that the backsliding from the condition of clarity that occurred last night and continued today into more health related concerns is subconsciously seeded, relating to events that occurred around the same time as the healing that caused a psychological disconnect or lack of faith in my own right to improvements in those area, or to accept the brief mercy granted to me. I have some ideas on how to work on this, but I also have to address the physical problems as well and take a multi-faceted approach.

Watching some interviews with a particular remote viewer tonight led to some insights that reminded me of Win Wenger’s Einstein Factor and his work on image streaming. This CRVer explained the process of CRV in a way that is more simplified than previous explanations I had heard, where a session is basically a way of asking questions in a structured way to the core non local mind or “subconscious” and then receiving the data back and accurately recording “just the data” without analysing it. It occurred to me just how connected image streaming is to this method, except the structural elements are not present in as much of a degree as in the CRV process.

Decision made: return to carefully using such techniques to supplement my existing business processes to remove the extraordinary confusion I’ve had around the path forward recently.

Beyond that, nothing else to report. The health concerns were quite bad today, especially during my gaming session in WoW where I soloed part of Trial of Valor (a second time, and it took me upgrading my gear and taking half an hour battle to succeed) but never made it to the end of Odyn’s Judgement. Dark Waters got me several times; eventually I had to stop because what would have ordinarily just made me tired was causing me physical congestion and other more serious issues. I needed an hour or so nap at the end of the day to help heal, and I still don’t feel fully over it. Hopefully things improve tomorrow / today (Friday)

EDIT to add: connecting the use of these methods of structured conversation with the subconscious with New Limitless.

Spent last night and all of today working on research for my novel trilogy. The research has to do with looking at both psychology and body language of people involved in the mafia or related fields. This would be both the moral code as narrated by these people themselves, and also the motivations or origin stories that they don’t tell.

What I’ve realised in doing this preparatory work again is just how good I am at it when it is something that interests me. I also wonder whether I might be noticing the effects of Limitless in my ability to sit really still in almost like a meditation on someone’s appearance/body language. I know it’s an innate talent that I’ve used before, but I have become more aware of when I’m doing it, without marring its effectiveness.

The last couple of hours were spent doing this on a video of Richard Kuklinski, the so called Iceman. His body language fascinates me (or I should say fascinated perhaps, since he’s long dead). At times you see the clear signs of possession, where there are two different personalities fighting for control of his body, or operating at the same time. And in fact the only time I saw him begin to show remorse was when the psychiatrist at the end of the video explained to him the likely origins of his condition. The range of emotions displayed in no more than 10 minutes without him saying a word until the end was quite incredible to watch, and I was noticing things like a swallow in the throat here, a change in eye movement there, and the movement from arrogance to cold superiority, then to emotionless acceptance, and finally displaying some degree of emotion upon full comprehension.

The other thing I noticed about him was a dislike of having to think deeply or even peripherally about things which he had done in the past, lest they bring up strong emotion. He would employ various tricks to avoid having to do this. And it wasn’t until near the end, knowing the root causes of his condition, that the walls began to come down in admitting that it was “time to die”.

Meditating deeply on videos like this is quite an uncomfortable thing to do, but also deeply satisfying on some levels. Either way, it is definitely a skill I have, and one that is very useful in a creative writing context.

Is it Limitless that is giving me these insights into my own strengths and weaknesses, actions and so on? I think it might be, because other than a brief run of an ultrasonic copy of the old RVX, there’s been nothing else in my stack that I can see having this type of effect.

2 Likes

Reflections before bed. I continue to get better at ability to communicate with that non verbal part that many call the subconscious. This evening after my first REM cycle, my evening/night time walk saw me connecting with it for guidance in feeling out the environment.

I need to be applying this ability to listen to the non verbal part to the process of writing. Perhaps I will try adding UWX to synergise after Limitless during one run per week, and see how that “stacks up”

Also need to formally run through the Image Streaming process again and apply it to the content creation problems I’ve been having in the other side of the business.

A part of me also senses now that this is definitely from Limitless. Techniques of problem solving I ordinarily wouldn’t use or think of using. Different ways of using the brain. The themes match up at least.