Sign in to follow this  
Followers 0
Oppositionless

Js coin flip and psi video game/study (Dean Radin)

4 posts in this topic

you can construct a simple coinflip, using Java Script, like this: 

let num = Math.random();

if (num < 0.5) {
  console.log("Head");
} else {
  console.log("Tail");
}                     (https://sebhastian.com/coin-flip-javascript/

type  a comment or some html  around your coinflip, saying something to the effect of 'the coin flip will behave differently than chance would predict,' or

'x will appear more often than y.'look at the distribution of results,  interesting.

 

 

Dean Radin has been doing this type of research for a long time https://psiarcade.org/gotpsi/tasks

 

 

"jsPsych is a JavaScript framework for creating behavioral experiments that run in a web browser. "

https://www.jspsych.org/7.2/

Edited by Oppositionless

Share this post


Link to post
Share on other sites

People say that computers can only be pseudo-random and not truly random, I don't understand the complicated logic behind it though. It seems random enough to me... as it's likely any physical coin you use in a heads/tails trial will be slightly weighted 1 way or the other and not exactly 50/50 either, for example.

Dean Radin is legit. I've participated in his studies with the Institute of Noetic Sciences & Boundary Institute going back to 2004.

Based on my performance on their site (used to be gotpsi.org, now psiarcade.org) I've been invited to participate in "talent tests" where I had to do hundreds of formal trials with the ESP card test. They even gave me some Amazon gift cards for taking part xD. So if you think you might be psychic, you might as well do some trials and hope they reach out and maybe you'll get paid for it xD

I'm best at the Location Test and Remote Viewing Test. Not sure if I'm truly psychic, moreso just consistently above-average luck and intuition which I attribute to my Chinese zodiac sign among other things.

You might be interested in the Global Conciousness Project and their little egg thingies too: https://global-mind.org/realtime/ Apparently they went off the charts when planes hit the towers on 9/11 and a few other major global events.

Edited by Yarco

Share this post


Link to post
Share on other sites

@Yarco that would be a fantastic side hustle. I don't think I made the cut, although I suspect the bar only gets higher. I  we are all psychic, don't cha think? some people can produce psi phenomena in a way that is conducive to making money at it. most, not so...

Edited by Oppositionless

Share this post


Link to post
Share on other sites

<body>
  <button id="flip" type="button">Flip the coin</button>
  <div id="result"></div>
  <script>
    let button = document.getElementById("flip");
    let result = document.getElementById("result");

    function fnClick(event) {
      let num = Math.random();

      if (num < 0.5) {
        result.innerHTML = "You got HEAD";

         console.log('head');


      } else {
        result.innerHTML = "You got TAIL";

           console.log('tail')
      }
    }
    
    button.addEventListener("click", fnClick);
  </script>
</body>
 there, that's the complete code for the coinflip.

Edited by Oppositionless

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0