Shining with coffee in a parallel universe
I have been trying to shine the hardest, splitting universes at will while surfing in java code. If this sounds very abstract, that’s exactly how my current state of mind is. Grappling with too many ideas at once which are polar opposite to one another.
This is the first time I’m reading something Mr. Stephen King has written. I have never watched anything that was made based on his work. So, I picked up ‘The Shining’, apparently very popular and revered by many. Given the horror genre it is set in, it’s interesting to see if it can hold my attention. Because, I don’t believe in ghosts or anything super-natural as a matter of fact.
Coming to Java programming, I am going through an exploratory phase where encountering a new concept is exciting rather than panicky. This exploration is boosted by a catalyst called coffee(’Black’ to be precise).
They both go so well together, it almost feels like they can never be mutually exclusive. According to the internet, James Gosling and his team were working on a programming language and they were drinking lots of coffee during their brainstorming sessions. They had to come up with a name and they have decided to call it ‘Java’, an island in Indonesia famous for its coffee beans.
public class ExploreJava {
private static final Logger logger = LoggerFactory.getLogger(ExploreJava.class);
public static void main(String[] args) {
ExploreJava expJava = new ExploreJava();
expJava.prepCoffee();
}
private void prepCoffee(){
logger.info("Placing an order of Light Roast Coffee, size: large at Panera bread…”)
//TODO: Implement the logic to drive and pick up coffee
}
}
Lately, I have developed a great interest in anything scientific. I was never really interested in science, never even attempted to ask why something worked the way it did. I took things for granted. I memorized Ohm’s law, quickly answered the question ‘What was the famous equation Einstein formulated?” and listed out Newton’s laws, without knowing how they were derived and what they meant. Memorizing them was enough to pass my exams and no one asked whether I have understood the meaning.
Starting to ask/learn the ‘why’ aspect of everything suddenly feels like I have been given a pandora box. Given the vastness of the subject, it’s proving tough to put in words about this. I’ll just stick to mentioning about this application I chanced upon, in-fact heard it from Mr. Sean Carroll, an astrophysicist mentioning it in Joe Rogan’s podcast. Going forward, you can give me the source credits as well. And the application is ‘Universe Splitter’, only available in App store (sorry, Android folks).
Scientists say that every quantum event plays out simultaneously in every possible way, with each possibility becoming real in a separate universe.
Let's say you have to make a difficult decision — for example, whether to accept a job offer or to turn it down. Just type both actions into your Universe Splitter, and press the "Split Universe" button.
Universe Splitter will then, over the internet, activate a remote "Quantis" brand quantum device (made by id Quantique, and certified by the National Metrology Institute of Switzerland) which sends individual photons towards a partially-silvered mirror, so that each photon will have two possible paths. Scientists say the photon will take both paths... but in separate universes. Within seconds, Universe Splitter will report to you which of the two universes you’re in, and by taking a different action in each, you will cause these otherwise identical universes to diverge.
According to current scientific thinking, though, the photon will actually be in a "both, but in separate universes" state!
Here is the link to the app, https://apps.apple.com/us/app/universe-splitter/id329233299
Note: The above java code won’t compile. Anyone who identifies the problem gets free coffee for a week and my blessings.








