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
    « Next Oldest | Next Newest »

    Users browsing this thread:



    Messages In This Thread
    My Free Intention Repeater Software - by AnthroHeart - 08-19-2018, 07:00 PM
    RE: I wrote a simple PHP program to send energy - by AnthroHeart - 08-19-2018, 07:45 PM
    RE: I wrote a simple PHP program to send energy - by AnthroHeart - 08-19-2018, 08:00 PM
    RE: PHP program I wrote to send energy (plus an Excel Workbook) - by Foha - 08-19-2018, 11:14 PM
    RE: PHP program I wrote to send energy (plus an Excel Workbook) - by AnthroHeart - 08-20-2018, 11:47 AM
    RE: Software I wrote to send energy (plus Excel and a Webpage) - by Foha - 08-20-2018, 05:42 PM
    RE: Software I wrote to send energy (plus Excel and a Webpage) - by AnthroHeart - 08-20-2018, 06:03 PM
    RE: Software I wrote to send energy (plus Excel and a Webpage) - by AnthroHeart - 08-21-2018, 08:15 AM
    RE: Software I wrote to send energy (plus Excel and a Webpage) - by AnthroHeart - 08-21-2018, 07:48 PM
    RE: Intention Repeater Software - by AnthroHeart - 09-12-2018, 08:14 AM
    RE: Intention Repeater Software - by EvolvingPhoenix - 09-14-2018, 04:34 PM
    RE: Intention Repeater Software - by AnthroHeart - 09-14-2018, 04:36 PM
    RE: Intention Repeater Software - by AnthroHeart - 09-14-2018, 08:03 PM
    RE: Intention Repeater Software - by Airwave - 09-26-2018, 09:28 AM
    RE: Intention Repeater Software - by cosmicllamabae - 10-16-2018, 08:39 PM
    RE: Intention Repeater Software - by AnthroHeart - 04-13-2019, 02:46 AM
    RE: Intention Repeater Software - by AnthroHeart - 04-12-2019, 02:09 PM
    RE: Intention Repeater Software - by AnthroHeart - 04-13-2019, 12:47 AM
    RE: Intention Repeater Software - by AnthroHeart - 04-13-2019, 01:56 AM
    RE: Intention Repeater Software - by Tae - 04-16-2019, 06:10 AM
    RE: Intention Repeater Software - by AnthroHeart - 10-25-2019, 02:38 PM
    RE: Intention Repeater Software - by AnthroHeart - 01-09-2020, 04:48 PM
    RE: Intention Repeater Software - by AnthroHeart - 01-10-2020, 05:25 AM
    RE: Intention Repeater Software - by AnthroHeart - 01-11-2020, 06:39 PM
    RE: Intention Repeater Software - by AnthroHeart - 01-13-2020, 02:16 AM
    RE: Intention Repeater Software - by AnthroHeart - 01-19-2020, 05:24 PM
    RE: Intention Repeater Software - by AnthroHeart - 02-10-2020, 02:20 AM
    RE: Intention Repeater Software - by AnthroHeart - 04-02-2020, 07:38 PM
    RE: Intention Repeater Software - by AnthroHeart - 04-03-2020, 10:08 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 04-12-2020, 12:10 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 04-18-2020, 01:48 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 04-19-2020, 04:02 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 04-19-2020, 11:09 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 04-22-2020, 12:35 AM
    RE: My Free Intention Repeater Software - by AnthroHeart - 04-23-2020, 04:40 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 04-26-2020, 05:44 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 04-28-2020, 01:44 PM
    RE: My Free Intention Repeater Software - by Scah - 04-28-2020, 03:55 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 04-28-2020, 05:32 PM
    RE: My Free Intention Repeater Software - by Scah - 04-28-2020, 05:47 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 04-28-2020, 05:50 PM
    RE: My Free Intention Repeater Software - by Scah - 04-28-2020, 07:04 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 04-28-2020, 07:07 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 04-28-2020, 07:21 PM
    RE: My Free Intention Repeater Software - by Scah - 04-28-2020, 09:01 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 04-30-2020, 10:47 AM
    RE: My Free Intention Repeater Software - by AnthroHeart - 04-28-2020, 09:05 PM
    RE: My Free Intention Repeater Software - by flofrog - 04-29-2020, 12:18 AM
    RE: My Free Intention Repeater Software - by AnthroHeart - 04-29-2020, 12:24 AM
    RE: My Free Intention Repeater Software - by flofrog - 04-29-2020, 12:43 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 04-29-2020, 07:49 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 04-29-2020, 01:14 PM
    RE: My Free Intention Repeater Software - by flofrog - 04-29-2020, 10:02 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 04-30-2020, 07:02 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 04-30-2020, 08:10 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 05-01-2020, 08:01 AM
    RE: My Free Intention Repeater Software - by AnthroHeart - 05-01-2020, 03:36 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 05-01-2020, 11:21 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 05-02-2020, 08:52 AM
    RE: My Free Intention Repeater Software - by AnthroHeart - 05-02-2020, 09:21 AM
    RE: My Free Intention Repeater Software - by AnthroHeart - 05-03-2020, 03:50 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 05-03-2020, 05:16 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 05-03-2020, 11:37 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 05-04-2020, 05:37 PM
    RE: My Free Intention Repeater Software - by Navaratna - 05-05-2020, 01:41 AM
    RE: My Free Intention Repeater Software - by AnthroHeart - 05-05-2020, 02:27 AM
    RE: My Free Intention Repeater Software - by AnthroHeart - 05-05-2020, 03:30 AM
    RE: My Free Intention Repeater Software - by Navaratna - 05-05-2020, 05:17 AM
    RE: My Free Intention Repeater Software - by AnthroHeart - 08-31-2020, 08:48 AM
    RE: My Free Intention Repeater Software - by AnthroHeart - 05-05-2020, 05:31 AM
    RE: My Free Intention Repeater Software - by AnthroHeart - 05-05-2020, 02:35 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 05-05-2020, 03:52 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 05-10-2020, 03:24 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 09-07-2020, 12:35 AM
    RE: My Free Intention Repeater Software - by AnthroHeart - 09-07-2020, 03:52 AM
    RE: My Free Intention Repeater Software - by AnthroHeart - 09-07-2020, 08:20 AM
    RE: My Free Intention Repeater Software - by AnthroHeart - 09-08-2020, 12:52 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 09-25-2020, 01:45 PM
    RE: My Free Intention Repeater Software - by flofrog - 09-25-2020, 04:20 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 09-25-2020, 05:00 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 12-22-2020, 11:35 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 12-24-2020, 04:25 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 01-02-2021, 11:55 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 01-02-2021, 11:59 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 01-08-2021, 09:55 AM
    RE: My Free Intention Repeater Software - by towerbuster - 01-20-2021, 07:19 AM
    RE: My Free Intention Repeater Software - by AnthroHeart - 03-08-2021, 06:51 PM
    RE: My Free Intention Repeater Software - by flofrog - 03-08-2021, 11:04 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 03-09-2021, 01:37 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 03-13-2021, 06:32 PM
    RE: My Free Intention Repeater Software - by LeafieGreens - 03-31-2021, 02:14 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 03-31-2021, 10:15 PM
    RE: My Free Intention Repeater Software - by AnthroHeart - 06-18-2021, 07:35 PM
    RE: My Free Intention Repeater Software - by flofrog - 06-18-2021, 08:55 PM
    RE: My Free Intention Repeater Software - by Ebe - 06-22-2021, 12:35 AM

    • 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