Widespread Augmented Reality

Widespread Augmented Reality
Click on the image to get the Android Augmented Reality Heads up Display

Saturday, October 23, 2021

Time for the Communist Party Virus "Vaccine" Booster

"It is likely that vaccinated individuals are less likely to transmit the virus but further research is needed..."

"Those vaccinated should take the same precautions, which include social distancing, wearing a mask, and washing hands frequently. The vaccine provides only 50% protection after 14 days and 95% protection after the second dose. Therefore, an individual is never 100% protected. Additionally, it is unknown how long the protection from the vaccine lasts. Finally, some individuals may be unable to receive the vaccine for various health reasons and will remain at risk until herd immunity is achieved"

Source: https://patientsafetymovement.org/covid-19-vaccine-information/?gclid=EAIaIQobChMI1PiLh-Pg8wIVgD6tBh120ASLEAAYASAAEgKNa_D_BwE
Questions:

1. Does the "vaccine" promote herd immunity?

2. Is the "vaccine" preventing infection or only relieving symptoms?

3. Do masks and distance in open air prevent the virus from entering the body?

4. Why are there vaccine and mask mandates if answers to 1, 2 and 3 are unclear?

5. Who is paying for and profiting from the vaccine?

6. Who is paying for the loss of livelihood and productivity

7. Where are the causation vs correlation studies?

8. Is the reaction to the pandemic worse than the pandemic itself?

9. Since when is the risk of death not part of life?

10. Do we really believe that this "vaccine" regiment is the ONLY way?

May I just note that everyone is an expert until they are wrong.

Disregard this if you are content with living "better safe than sorry".

Thursday, October 21, 2021

Chinese Communist Party Virus aka Covid-19

Source: https://www.theepochtimes.com/ccp-virus?utm_source=CCPVirusNewsletter&utm_medium=email&utm_campaign=2021-10-21

Sunday, October 17, 2021

Mining Bitcoin

Links for reference:
https://www.luno.com/blog/en/post/bitcoins-hash-rate-is-hitting-record-highs-but-does-it-even-matter
https://www.baeldung.com/java-blockchain
https://medium.com/programmers-blockchain/create-simple-blockchain-java-tutorial-from-scratch-6eeed3cb03fa

My Simple Pseudo BLock Chain in JavaScript

class Block {
constructor(index, timestamp, data, prevHash = '') {
this.index = index;
this.timestamp = timestamp;
this.data = data;
this.prevHash = prevHash;
this.hash = this.calculateHash();
}
calculateHash(){
return 'need to calc the hash';
}
}
class Blockchain{
constructor(){
this.chain = [this.createGenesisBlock()];
}
createGenesisBlock(){
return new Block(0, "09/01/2021", "Genesis block", "0");
}
getLatestBlock(){
return this.chain[this.chain.length - 1];
}
addBlock(newBlock){
newBlock.prevHash = this.getLatestBlock().hash;
newBlock.hash = newBlock.calculateHash();
this.chain.push(newBlock);
}
}
let myCoin = new Blockchain();
myCoin.addBlock(new Block(1, "09/20/2021", {amount: 4}));
myCoin.addBlock(new Block(2, "09/27/2021", {amount: 5}));
console.log(JSON.stringify(myCoin, null, 4));

Console output:
{
"chain": [
{
"index": 0,
"timestamp": "09/01/2021",
"data": "Genesis block",
"prevHash": "0",
"hash": "need to calc the hash"
},
{
"index": 1,
"timestamp": "09/20/2021",
"data": {
"amount": 4
},
"prevHash": "need to calc the hash",
"hash": "need to calc the hash"
},
{
"index": 2,
"timestamp": "09/27/2021",
"data": {
"amount": 5
},
"prevHash": "need to calc the hash",
"hash": "need to calc the hash"
}
]
}
}

This pseudo block chain is missing the nonce, which is what gets the block's hash to start with appropriate number of leading zeros.

Friday, October 1, 2021

Blockchain - How is it physically stored for persistence?

It's fine and dandy to write a blockchain in JavaScript, Python or even PHP, but sending the output to a console is useless. Where is THE blockchain stored so I can write a program that accepts the blockchain data as input?

Maybe this will help understand how it is physically stored.


Info graphic from www.101Blockchains.com