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
And this is the code for viewing the table after it is written:
view_energy_table.php
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.
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.