Bring4th Forums
  • Login Register
    Login
    Username:
    Password:
  • Archive Home
  • Members
  • Team
  • Help
  • More
    • About Us
    • Library
    • L/L Research Store
User Links
  • Login Register
    Login
    Username:
    Password:

    Menu Home Today At a Glance Members CSC & Team Help
    Also visit... About Us Library Blog L/L Research Store Adept Biorhythms

    As of Friday, August 5th, 2022, the Bring4th forums on this page have been converted to a permanent read-only archive. If you would like to continue your journey with Bring4th, the new forums are now at https://discourse.bring4th.org.

    You are invited to enjoy many years worth of forum messages brought forth by our community of seekers. The site search feature remains available to discover topics of interest. (July 22, 2022) x

    Bring4th Bring4th Studies Science & Technology My Free Intention Repeater Software

    Thread: My Free Intention Repeater Software


    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #1
    08-19-2018, 07:00 PM (This post was last modified: 04-03-2020, 11:51 PM by AnthroHeart.)
    Edit: This can all be run from the website: https://intentionrepeater.com/

    Edit: Python open source code can be found here: https://github.com/tsweet77/intention-repeater

    Note: Below in this thread is the website that makes this much easier to just run and balance your chakras.

    I learned that a computer can send energy. We can tailor this energy to specific chakras. When we write, or speak anything, it does things. The more we speak or write a certain thing, the stronger it gets. I learned that a computer can write things many thousands of times faster than a person. And a computer is not limited by beliefs, which would cause resistance. By using a database, and writing our intent to this database, we can intend what we want many thousands of times or more. And if you write the same sentence to a database this many times, it effects change. In my example I add a little variety by putting iteration numbers.

     
    In my experience, I bought a Raspberry Pi 3B, which is a simple computer that costs like $35. I got a better one for $80 which included the SD Card. The Raspbian operating system is free. You will also need to install Apache and either MySQL or MariaDB. I recommend MariaDB because it is a better open source database. This post won’t go into the configuration of a Raspberry Pi, Apache or MariaDB, but will cover source code for getting the computer to send energy from source to your chakras. This assumes you know how to create databases and tables.

    These code examples I am giving are strong. I can definitely feel them in my heart and my third eye when I choose those chakras in the $chakra variable.

    Requirements:
    1)      Create database in MariaDB named sample_db
    2)      Create table in sample_db database named energy_table
    3)      Create these in the user schema/profile of the user you want to use for the program.
     
    This is the source for inserting into the database, which sends energy to the chosen chakra of specified user name.
    Feel free to put your name in $user_name variable.
    $num_iterations can be set larger if you want to go for longer.

    energy_insert.php

    Quote:<html>

    <head>
    <title>Chakra Energy Sender</title>
    </head>
    <body>

    <h2>Source Energy Transmitter</h2>
    <h3>v1.0 by Thomas Sweet</h3>

    <?php
    $dbname = "sample_db";
    $dbuser = "database username";
    $dbpass = "datbase password";
    $dbhost = "localhost";
    $num_iterations = 10000;
    $chakra = "Heart Chakra";
    $user_name = "Current User";
    $what_to_send = $chakra . " Energy From Source";

    $dbconnect = mysqli_connect($dbhost, $dbuser, $dbpass, $dbname);

    if ($dbconnect->connect_error) {
    die("Database connection failed: " . $dbconnect->connect_error);
    }

    $sql = "truncate table energy_table";

    if ($dbconnect->query($sql) === TRUE) {
    /* Do Nothing */
    } else
    {
    echo "Error: " . $sql . "<br>" . $conn->error;
    }

    for ($i = 1; $i <= $num_iterations; $i++) {
    $sql = "insert into energy_table (description)
    values('Sending " . $user_name . " " . $what_to_send . " Iteration #".$i."')";

    if ($dbconnect->query($sql) === TRUE) {
    /* Do Nothing */
    } else {
    echo "Error: " . $sql . "<br>" . $conn->error;
    }
    }

    echo "<h2>Done Writing " . $chakra . "</h2>";

    $dbconnect->close();

    ?>

    </body>
    </html>


    And this is the code for viewing the table after it is written:

    view_energy_table.php
    Quote:<html>

    <head>
    <title>Energy Table Viewer</title>
    </head>
    <body>

    <h3>Energy Table Details</h3>

    <table border=1>
    <tr>
    <th>Description</th>
    </tr>

    <?php

    $dbname = "sample_db";

    $dbuser = "database username";
    $dbpass = "datbase password";

    $dbhost = "localhost";

    $dbconnect = mysqli_connect($dbhost, $dbuser, $dbpass, $dbname);

    if ($dbconnect->connect_error) {
    die("Database connection failed: " . $dbconnect->connect_error);
    }

    $query = mysqli_query($dbconnect,"select * from energy_table")
    or die(mysqli_error($dbconnect));

    while ($row = mysqli_fetch_array($query)) {
    echo "<tr>";
    echo "<td>{$row['description']}</td>";
    echo "</tr>";
    }

    ?>

    </table>
    </body>
    </html>

    Hope others understand this. I may expand upon it to create a simple web app for helping to balance chakras.
    Right now it sends energy to the chosen chakra specified in the $chakra variable.
    [+] The following 1 member thanked thanked AnthroHeart for this post:1 member thanked AnthroHeart for this post
      • towerbuster
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #2
    08-19-2018, 07:45 PM (This post was last modified: 08-19-2018, 07:55 PM by AnthroHeart.)
    This is much easier. This is an Excel Macro you can run.


    Quote:Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)


    Sub Energy()
    Dim i As Long
    Dim s As String
    Dim intention As String
    Dim num_iterations As Long

    Debug.Print "Starting sending"

    intention = InputBox("What is your intention?", , "Sending Heart Chakra Energy from Source to me")
    num_iterations = InputBox("How many Iterations?", , 10000)

    For i = 1 To num_iterations
    Cells(1, 1).Value = intention & ", Iteration #" & i & " / " & num_iterations
    Sleep (100)
    DoEvents
    Next i
    Debug.Print "Done " & intention
    End Sub
    You could also simply put the intention as: Balancing your chakras
    It should be in third person, and a statement as if it's doing something at the moment.
    [+] The following 1 member thanked thanked AnthroHeart for this post:1 member thanked AnthroHeart for this post
      • towerbuster
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #3
    08-19-2018, 08:00 PM (This post was last modified: 08-19-2018, 08:46 PM by AnthroHeart.)
    I created an Excel workbook. You need to enable editing and enable macros to use it.

    http://www.anthroshaman.com/uploads/ener...akras.xlsm

    You can put your intention, and how many iterations to run it for. It has defaults.

    An intention could be: Balancing your chakras

    Also: Clearing your chakras

    You can charge water with it and then drink the water afterwards as well. Just use the intent you wish.
    But I usually just use it to balance myself and I set the iterations to 20000.
    [+] The following 1 member thanked thanked AnthroHeart for this post:1 member thanked AnthroHeart for this post
      • towerbuster
    Foha (Offline)

    Member
    Posts: 308
    Threads: 27
    Joined: Oct 2017
    #4
    08-19-2018, 11:14 PM
    Indigo! You are wonderful.

    I remember when you shared with us the link to that software designed to do just this. It is great to see you decided to implement it yourself Smile
    [+] The following 2 members thanked thanked Foha for this post:2 members thanked Foha for this post
      • AnthroHeart, towerbuster
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #5
    08-20-2018, 11:47 AM (This post was last modified: 08-20-2018, 12:18 PM by AnthroHeart.)
    Here is a webpage I made using stopwatch javascript code I found.

    This makes it very easy to balance your chakras and ground:

    http://www.anthroshaman.com/energy/energy_balancer.html

    Clearing Your Window is a way of saying clearing the blockages within you, so you can open up.

    Grounding is always important. It's all about the intention.

    Please let me know if you feel anything from it, or your experience.

    It's pretty strong to me. I could only handle less than 7 minutes of it as an energy sensitive.

    Foha yeah, you might like this webpage.

    I want to develop it to allow for custom intentions.
    [+] The following 2 members thanked thanked AnthroHeart for this post:2 members thanked AnthroHeart for this post
      • Foha, towerbuster
    Foha (Offline)

    Member
    Posts: 308
    Threads: 27
    Joined: Oct 2017
    #6
    08-20-2018, 05:42 PM
    (08-20-2018, 11:47 AM)IndigoGeminiWolf Wrote: Here is a webpage I made using stopwatch javascript code I found.

    This makes it very easy to balance your chakras and ground:

    http://www.anthroshaman.com/energy/energy_balancer.html

    Clearing Your Window is a way of saying clearing the blockages within you, so you can open up.

    Grounding is always important. It's all about the intention.

    Please let me know if you feel anything from it, or your experience.

    It's pretty strong to me. I could only handle less than 7 minutes of it as an energy sensitive.
    I am anything but an energy sensitive. I will try it and tell you how it goes, though.

    (08-20-2018, 11:47 AM)IndigoGeminiWolf Wrote: Foha yeah, you might like this webpage.

    I want to develop it to allow for custom intentions.

    I'll let you know. One moment.

    [...]

    I am letting it run now. I am interested in knowing what your code is writing to, and what it is writing.

    I remember your previous implementation wrote their username and what chakra they were working on, but I can't seem to view the code your current page is using. Is there a username being used?

    I don't often give credence to feelings like this, but I feel a pressure in the middle of my head, towards what I expect is around the very middle of the brain.
    However, I often experience psychosomatic feelings that I train myself to ignore due to my previous diagnosis.

    I will say I am not very sensitive to energy, though.

    What do you feel, exactly?

    I stopped it at timer showing 3.5 minutes or so.
    [+] The following 1 member thanked thanked Foha for this post:1 member thanked Foha for this post
      • towerbuster
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #7
    08-20-2018, 06:03 PM (This post was last modified: 08-20-2018, 07:09 PM by AnthroHeart.)
    I feel some pressure in my 3rd eye and my heart chakras. Those are the most sensitive to me.
    I changed the statement to say It is Done, because we should always talk as if it's already completed.

    The code is writing to an element:  <div><span id="time"></span></div>

    The in between the <span> tags placeholder gets updated with the statement: Your Chakras are Balanced. Your Window is Cleared. You are Grounded. It is Done.: 00:00:00.000
    in the Javascript.

    It writes that statement with a stopwatch, so it writes to the screen every 1/10th second.

    So it's printing that statement to the browser 10 times a second.
    It would be like saying the statement out loud or writing it out repeatitively.

    I had to slow it down because it was too strong for me. Too many iterations.

    No, there is no username being used in this website. That was in the PHP code I use locally with my database.
    [+] The following 1 member thanked thanked AnthroHeart for this post:1 member thanked AnthroHeart for this post
      • towerbuster
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #8
    08-21-2018, 08:15 AM
    I'm studying Python now. Just beginning and have created a sample database already. It was really easy.

    I want to write something nice, and create it as an open source project on Linux.

    Maybe Windows too because Python works on all OS's once it is written.

    I did some card reading on my software and it said the pressure was crushing me, because it has too much energy.
    So I have to slow down how many times I am writing out that statement to just one or so per second.

    I have to decide if I want to write it to memory or write it to a physical database.
    I haven't determined the difference yet. But maybe I can do both.
    Ten times a second is too much.
    [+] The following 1 member thanked thanked AnthroHeart for this post:1 member thanked AnthroHeart for this post
      • towerbuster
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #9
    08-21-2018, 07:48 PM (This post was last modified: 09-14-2018, 09:42 PM by AnthroHeart.)
    Here is Python code. It is free for you to use.
    You can install Python v3.7 for Windows to run it.

    Then save this code as a .PY file, and run it with: python intention_repeater.py

    You get to type the intention, intensity and how many minutes to run.

    I want to release it as open source, but I don't know any other developers to help build the project.


    I edited to remove the link.
    [+] The following 1 member thanked thanked AnthroHeart for this post:1 member thanked AnthroHeart for this post
      • towerbuster
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #10
    09-12-2018, 08:14 AM (This post was last modified: 09-14-2018, 09:41 PM by AnthroHeart.)
    I updated to version 2 of the Intention Repeater software.

    I edited to remove the link. I will be making the software available on Android and iPhone after development.

    I increased max intensity to 10000.
    I took off the file write and left it to write only to memory.
    This way systems like Raspberry Pi wouldn't overuse the SD Card.
    Those cards have only so many writes.

    I also made the max duration unlimited. But I haven't tested it into the hours range.

    You should only need a few minutes, no more than an hour anyway.

    I like to program water or coffee with an intent.

    I find that when balancing my own chakras directly using this program, it is too strong to handle for more than 5 minutes on max intensity.

    Programming water with repeating intentions is more subtle and gentler.

    For the intention "My heart chakra is balanced and clear." I like to use an intensity of 500 (out of 10000). I am running it for like 5 mins to get a newer feel for it.
    [+] The following 3 members thanked thanked AnthroHeart for this post:3 members thanked AnthroHeart for this post
      • Foha, EvolvingPhoenix, towerbuster
    EvolvingPhoenix (Offline)

    Member
    Posts: 1,760
    Threads: 122
    Joined: Apr 2018
    #11
    09-14-2018, 04:34 PM
    Kickass, man!
    [+] The following 1 member thanked thanked EvolvingPhoenix for this post:1 member thanked EvolvingPhoenix for this post
      • towerbuster
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #12
    09-14-2018, 04:36 PM
    I dowsed, and when working on a person, it's best to use an intensity of like 250 for 2 hours.
    When charging water that will be consumed, intensity can be 5000 for 1 hour.
    [+] The following 2 members thanked thanked AnthroHeart for this post:2 members thanked AnthroHeart for this post
      • EvolvingPhoenix, towerbuster
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #13
    09-14-2018, 08:03 PM (This post was last modified: 09-14-2018, 08:04 PM by AnthroHeart.)
    I'm having this app converted to an Android and iPhone app. I am talking with some developers.
    It will be a chance to generate some ad revenue and maybe sell some apps.

    It costs up front, but I should get the money back. If anything, it will help others.

    It will allow for multiple intentions at the same time.

      •
    Airwave (Offline)

    Newbie
    Posts: 6
    Threads: 0
    Joined: May 2017
    #14
    09-26-2018, 09:28 AM
    Wow this is awesome! Thank you!

      •
    cosmicllamabae (Offline)

    Newbie
    Posts: 1
    Threads: 0
    Joined: Oct 2018
    #15
    10-16-2018, 08:39 PM
    This is awesome. I'm becoming more interested in the metaphysics of AI. Are there more threads similar to this?

      •
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #16
    04-12-2019, 02:09 PM (This post was last modified: 04-12-2019, 03:38 PM by AnthroHeart.)
    I put my Intention Repeater software online. You can use it for balancing chakras, feeling love, healing a situation, or anything like that.

    Here is the link. Feedback would be appreciated. It repeats your intention 10,000 times per second in the computer's memory.


    http://www.anthroshaman.com/intention_repeater.html


    I'm using it now for: Intelligent Infinity flows through me.
    or this: I AM perfectly balanced and open to Intelligent Infinity.

    They both open my crown, and I feel a sort of bliss.

      •
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #17
    04-13-2019, 12:47 AM
    Another great intention is: I am forgiven for everything.
    I feel it in my heart, working on tension.

      •
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #18
    04-13-2019, 01:56 AM
    I have my own domain now for the Intention Repeater:

    https://intentionrepeater.com/

    It is a great aid to meditation, as it programs the Quantum Field.

      •
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #19
    04-13-2019, 02:46 AM
    (10-16-2018, 08:39 PM)cosmicllamabae Wrote: This is awesome.  I'm becoming more interested in the metaphysics of AI.  Are there more threads similar to this?

    I created another thread:

    https://www.bring4th.org/forums/showthre...?tid=17110

      •
    Tae (Offline)

    Fellow Creator
    Posts: 183
    Threads: 0
    Joined: Dec 2018
    #20
    04-16-2019, 06:10 AM (This post was last modified: 04-17-2019, 10:22 PM by Tae.)
    One of the sample intentions is...

    Quote:My coffee attracts financial abundance

    That's some strong coffee!

    I strapped a note to my water bottle to keep it charged with intention. I always have it with me. There's all kinds of snarky mugs, so why are there not water containment systems with more positive reinforcement. Reminded me of that a lil. I don't drink too much coffee... usually a couple of cups a week... but almost all the water I drink goes into my water bottle.

    I used it and I stopped running at 4:44 and then stopped it at 2880000 repeats. I thought that was interesting. I could feel the energy charge building and running through me too. I used it for a healing request for an internet friend who's in a coma. I tried sending him healing energy once before, and it was close in time proximity after that they posted he'd responded for the first time, his lip twitching when they were asking what god they should appeal to, and they listed Quetzalcoatl.

    I hope he wakes up.

    Anyway, I may try using it for smaller, more personal things. It was quite interesting as a brief meditation companion. Thanks for sharing your work.

    Edit: I also tried it with "I am creatively energized and focused on this project" and boy was that intense. I couldn't even listen to my YouTube video anymore, I had to switch to music to keep working because of how intensely directed it made me.
    [+] The following 2 members thanked thanked Tae for this post:2 members thanked Tae for this post
      • AnthroHeart, flofrog
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #21
    10-25-2019, 02:38 PM
    BUMP.

    I'm finding this a powerful aid to my manifestation dreams.

      •
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #22
    01-09-2020, 04:48 PM
    I just used this intention:

    My chakras are clear and balanced and I am open to the orgasmic bliss of the Universe.

    Since I have spent 15 years meditation I am able to be more sensitive, but this makes me feel warm and fuzzy.

      •
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #23
    01-10-2020, 05:25 AM
    It helped a lady who was disturbed by the Australian bushfires and running on adrenaline.
    It helped her to find bliss to get her through her day.

      •
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #24
    01-11-2020, 06:39 PM
    I am running it now with the intention: I am blissfully open to cosmic consciousness.

    A couple of moments I hit profound bliss for a few moments, and almost had an ephiphany.

    https://www.intentionrepeater.com/

      •
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #25
    01-13-2020, 02:16 AM (This post was last modified: 01-13-2020, 04:30 AM by AnthroHeart.)
    Ok, I have made my Intention Repeater open source.

    I have placed the Python code on GitHub.

    https://github.com/tsweet77/intention-repeater

    This can run over a million iterations per second.

      •
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #26
    01-19-2020, 05:24 PM
    The Python version works with files too.

    It's command line. Here I am using a one-minute WAV file of 33Hz (christ consciousness)
    with a picture of myself.

    These files are in the same folder/directory as the intention_repeater.py file.

    [Image: screencap2.jpg]

      •
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #27
    02-10-2020, 02:20 AM
    Before I had tried "my teeth are pain-free" but that made my teeth hurt more. So bad I could barely eat.

    Now I do "My teeth are healed and blissful and regrown."

    I'm going to see if I can regrow a molar.

    It definitely feels more blissful in my teeth. No pain to speak of.

    Though I've had work done twice on my teeth before. They were getting sensitive lately.
    [+] The following 1 member thanked thanked AnthroHeart for this post:1 member thanked AnthroHeart for this post
      • flofrog
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #28
    04-02-2020, 07:38 PM
    You can download the Python version here: http://www.intentionrepeater.com/Python/...epeater.py

    Save it in a folder and run it using: python3 intention_repeater.py


    This version lets you run over a million repetitions per second.
    Plus you can use the name of pictures to work with it.

      •
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #29
    04-03-2020, 10:08 PM (This post was last modified: 04-04-2020, 03:36 AM by AnthroHeart.)
    Everyone,

    I updated the webpage to make it cleaner and easier to use.

    I sometimes use it to feel a low level Ayahuasca or other psychedelic.
    Or to just feel nurtured. Or to feel one with God.

    You can click on the image below for the link.

    [Image: Sweet_Intention_Repeater_Image.jpg]
    [+] The following 1 member thanked thanked AnthroHeart for this post:1 member thanked AnthroHeart for this post
      • flofrog
    AnthroHeart (Offline)

    Anthro at Heart
    Posts: 19,119
    Threads: 1,298
    Joined: Jan 2010
    #30
    04-12-2020, 12:10 PM (This post was last modified: 04-12-2020, 12:20 PM by AnthroHeart.)
    I am now using this intention:

    Whatever needs to be done gets done in my energy to progress spiritually and physically in the best manner possible.



    Feel free to use it if you like. I change up what I use every so often. This is what resonates now.

    I don't really know if that's a spiritual intention, but it was what was provided to me through insight.

    It requires faith and surrender to the Universe since I don't know what it's doing.

    But I definitely feel it working.

      •
    « Next Oldest | Next Newest »

    Users browsing this thread: 2 Guest(s)

    Pages (4): 1 2 3 4 Next »



    • View a Printable Version
    • Subscribe to this thread

    © Template Design by D&D - Powered by MyBB

    Connect with L/L Research on Social Media

    Linear Mode
    Threaded Mode