Dear Lord,
Please untie the knots
That are in my mind.
My heart and my life.
Remove the have Nots,
The can Nots, the do,
Nots. Erase the will Nots,
May Nots
Might Nots that may find
A home on my heart.
Release me from the
Could Nots, would Nots
And
Should Nots that obstruct
My life.
And most of all,
Dear God,
I ask that you remove
From my mind, my heart
And my life all ov the “am
Nots” that I have allowed
To hold me back,
Especially the thought
That I am Not good enough.
Amen
Author Known by God
Praise Tabernacle
770)943-2484
‘Testing 1,2,3.’ is the fourth entry in the Trans Luminal Mail Archives (TLMAP)
TLMAP 002276-88 (Letter the fourth) following TLMAP 00776-26 (Letter the third- Ideational Sensate)
The Editors
—
These are the real spaces you can choose from.
Of course there…
Huh …
I don’t think these guys are cool, but frankly it’s kind of hard to tell.
Found on facebook
Someone OBVIOUSLY doesn’t understand the definition of “meta”.
Doctor Who RPG [Click for video]
Save the universe, then save your game.
I just bought a $2 dollar bill for $1.88. That’s a quick 6% profit. Who says you can’t make money in a bad economy?
A law banning abortion after 20 weeks has been shelved to see if it’s constitutional?
I wish I didn’t have to watch women so selfish as to slaughter human beings and the executioners not only out of jail, but working to make murder legal.
How has America become so disturbed?
I got to throw up now. Talk later.
This could become the most horrifying thing human beings have ever developed (as my Love fears) or the greatest advance in manufacturing and medical science and vastly change social work and the world’s economies. (Is that over reaching?)
I’m learning to program in JAVA
This is the Main class for a job board I’m making. Remember I’m still learning so if you have a corrective comment I may not be able to understand it.
public class Main {
public static void main(String [] args){
districtManager myDistrictManager = new districtManager(); // imports districtManager class
storeManager myStoreManager = new storeManager(); // imports storeManager class
Supervisor mySupervisor = new Supervisor(); // import Supervisor class
Employee myEmployee = new Employee(); // imports Employee class
storeManager myStoreManagerTwo = new storeManager(“Jim”, “Confrontational”, 25.00, 2);
// District Manager info
System.out.println(“District Manager Info:”);
System.out.println(“Name: ” + myDistrictManager.getName());
System.out.println(“Starting Salary: $” + myDistrictManager.getSalary());
System.out.println(“Proferred Style: ” + myDistrictManager.getstyle());
System.out.println(“Minimum Proformance: ” + myDistrictManager.getProformance() + ” out of 10.”);
// Store Manager info
System.out.println();
System.out.println(“Store Manager Info:”);
System.out.println(“Name: ” + myStoreManager.getName());
System.out.println(“Starting Salary: $” + myStoreManager.getSalary());
System.out.println(“Proferred Style: ” + myStoreManager.getstyle());
System.out.println(“Minimum Proformance: ” + myStoreManager.getProformance() + ” out of 10.”);
// Supervisor info
System.out.println();
System.out.println(“Supervisor Info:”);
System.out.println(“Name: ” + mySupervisor.getName());
System.out.println(“Starting Salary: $” + mySupervisor.getSalary());
System.out.println(“Proferred Style: ” + mySupervisor.getstyle());
System.out.println(“Minimum Proformance: ” + mySupervisor.getProformance() + ” out of 10.”);
// Employee info
System.out.println();
System.out.println(“Employee Info:”);
System.out.println(“Name: ” + myEmployee.getName());
System.out.println(“Starting Salary: $” + myEmployee.getSalary());
System.out.println(“Minimum Proformance: ” + myEmployee.getProformance() + ” out of 10.”);
// Store Manager 2 info
System.out.println();
System.out.println(“Current Store Manager Info:”);
System.out.println(“Name: ” + myStoreManagerTwo.getName());
System.out.println(“Starting Salary: $” + myStoreManagerTwo.getSalary());
System.out.println(“Proferred Style: ” + myStoreManagerTwo.getstyle());
System.out.println(“Minimum Proformance: ” + myStoreManagerTwo.getProformance() + ” out of 10.”);
}
}