




Shall justice be had for his violations of persons? I doubt it is necessary. Let his victims come out and speak their truth! Surely the real victims are from technological misrepresentations of his truest intentions, I’d argue. The Sixth Amendment is on your side, right next to the presumption of innocence… They’ll never get you Mr. President. Never.
//DignityMachine Core To Build From
class dignityMachine {
constructor(){
this.weights = [Math.random(), Math.random()]; //2 Inputs
this.bias = Math.random();
this.humility = 0.1;
}
//Activation function (Sigmoid algorithm)
sigmoid(x){
return 1 / (1+ Math.exp(-x));
}
prediction(inputs){
let sum = this.bias;
for (let i=0; i < inputs.length; i++){
sum += inputs[i] * this.weights[i];
}
return this.sigmoid(sum);
}
train(inputs, target){
const output = this.prediction(inputs);
const error = target - output;
for (let i = 0; i < this.weights.length; i++){
this.weights[i] += error * inputs[i] * this.humility;
}
this.bias += error * this.humility;
}
}
const dm = new dignityMachine();
for (let i=0; i < 20; i++) {
dm.train([0, 0], 0);
dm.train([1, 0], 0);
dm.train([0, 1], 0);
dm.train([1, 1], 1);
}
let humility = ["Empathy", "Give Charity", "Kindness", "Forgive", "Ask how you can help.", "Listen to person's experience amd story.", "Say a prayer", "Pray together", "Ensure needs of real food, real water, real sleep, real shelter, real clothing, real hygiene, real psychological need of safety, real need of belonging within social, peer, and family groupings are met."];
let random1 = humility[Math.floor(Math.random() * humility.length)];
let random2 = humility[Math.floor(Math.random() * humility.length)];
console.log("DM: ", dm.prediction(1,1));
console.log(dm.prediction(1,1) > 0.25 ? random1 : random2);
-Lots of physical exercise. Wear and tire yourself out.
-Drink lots of water.
-Distract yourself with reading, meditation, prayer, anything that is healthy or healing.
-Just get through it. No matter what, don’t ingest or consume whatever your addiction is to.
-Express yourself creatively. Make artwork, read, and write.
I endorse lifelong sobriety. if possible. If you go through life and need a little “extra something” regarding a mind altering substance, just satisfy that want with coffee. If you need a little more than that, I feel marijuana use is acceptable and not-so-damaging of a drug.
I do not endorse consuming or participating in pornography anymore. It seems something from the good old days of porn has changed. I think about the appropriate porn star with an extremely high sex drive and an extremely sexually attractive physique. That porn star loves expressing her sexuality and no violations occur when she does. Pornography would just provide some sexual stimulation to the consumer.
People also have the right to change their preferences.
People always deserve and have a right to humility and to be treated with dignity!