The Astral Pulse
News: http://www.astralpulse.com/aup.html. Acceptable Use Policy for the forums. Please read and ensure that you respect these policies. Thank you.

If you wish the join The Astral Pulse, please create an account and then email myself or one of the moderators your username and email address (do not send us your password please) and we will activate your account for you. 
If it's been over 24 hours and you still haven't been approved, please send another email, we are just people too and sometimes we get busy.
http://www.astralpulse.com/forums/welcome_to_astral_chat/member_registration_requiring_approval-t42962.0.html

We apologize for any inconveniences this may cause, but it's the last resort we have to fighting the spam for now.
 
*
Welcome, Guest. Please login or register. June 08, 2023, 23:19:39


Login with username, password and session length


Pages: [1]   Go Down
  Print  
Author Topic: random "cards" for remote viewing  (Read 21797 times)
Smertrios
Astral Energy 1
*
Offline Offline

Posts: 19


View Profile Email
« on: July 03, 2020, 20:32:38 »

after 60 seconds your screen fills with cards that show an index number and a random character.
Code:
<html>
<!--
Name: cards.html
Author: Smertrios
Purpose: something random to look at (appears after 60 seconds)
Date: July 3, 2020

Revision: July 4, 2020
background color is black
text color is white
every cards border is the same color but chosen randomly (red, green, blue)
each cards background is a random color (red, green blue)
each cards character is a random character (character codes 32-126)
-->
<script>
var character=["&nbsp;","!","\"","#","$","%","&amp;","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","&lt;","=","&gt;","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~"];
var color=["red","green","blue"];
</script>
<body style="color:white;background-color:black">
<div id="timer">00</div>
<div id="cards"></div>
<!-- timer -->
<script>
var date=new Date();
var start_time=date.getTime();
setInterval(function(){
var date=new Date();
var temp=Math.floor((date.getTime()-start_time)/1000);
var elapsed_time=temp;
var day=Math.floor(temp/86400);temp=temp%86400;
var hour=Math.floor(temp/3600);temp=temp%3600;
var min=Math.floor(temp/60);temp=temp%60
var sec=temp;
var time=""
if(elapsed_time>=86400)time+=day+":";
if(elapsed_time>=3600)if(hour<10)time+="0"+hour+":";else time+=hour+":";
if(elapsed_time>=60)if(min<10)time+="0"+min+":";else time+=min+":";
if(elapsed_time>=0)if(sec<10)time+="0"+sec;else time+=sec;
timer.innerHTML=time;
},1000);
</script>
<!-- cards -->
<style>
.card {
display:inline-block;
width:3em;
height:5em;
color:white;
border-color:gray;
border-style:solid;
border-width:.2em;
border-radius:.5em;
background-color:yellow;
margin:.5em 0em 0em .5em;
padding:.5em;
}
.cardcontent {
font-size:3em;
font-family:"lucida console";
}
</style>
<script>
setTimeout(function(){
var fragment="";
var counter=0
var card_border_color=color[Math.floor(Math.random()*color.length)];
var addcard=function(){
counter++;
var card_color=color[Math.floor(Math.random()*color.length)];
var card_value=character[Math.floor(Math.random()*character.length)];
fragment+="<div class=\"card\" style=\"border-color:"+card_border_color+";background-color:"+card_color+"\">"+counter+"<br><span class=\"cardcontent\">"+card_value+"</span></div>";
}
for(var i=0;i<999;i++){
addcard();
}
cards.innerHTML=fragment;
},60000);
</script>
</body>
</html>
« Last Edit: July 04, 2020, 22:39:25 by Smertrios » Logged
Smertrios
Astral Energy 1
*
Offline Offline

Posts: 19


View Profile Email
« Reply #1 on: July 13, 2020, 01:51:57 »

Be interesting to setup a website for this and actually have a computer setup somewhere so people can try to look =/. I thought a closet would be a good spot but not sure I want the world knowing my address. This next version is basically the same thing but has a few extra features to support remote viewing of a printed page like a layout that fits on 1 page, the time the html page was loaded and "blank cards" that show the layout before the random cards are shown.

To automatically print the page after 1 minute you need to be using chrome with the command line switch "--kiosk-printing" and have the code on this html page where it says "window.print()" un-commented. There are probably other ways of doing this but thats an easy way and it allows someone doing their own remote viewing to print out  a page without having had a chance to also look at it until they choose to (they have a minute from the time the page is loaded before the cards display and print).

I thought printing was a nice touch just incase computer displays are hard to see.
Code:
<html>
<!--
Name: cards.html
Author: Smertrios
Purpose: something random to look at (appears after 60 seconds)
Date: July 3, 2020

Revision: July 4, 2020
background color is black
text color is white
every cards border is the same color but chosen randomly (red, green, blue)
each cards background is a random color (red, green blue)
each cards character is a random character (character codes 32-126)

Revision: July 5, 2020
card layout is 12x6 to match print preview (on my computer)

Revision: July 7, 2020
using a div to preserve layout when window is resized

Revision: July 12, 2020
displays the time the page was loaded and "blank cards" for 60 seconds
-->
<script>
var character=["&nbsp;","!","\"","#","$","%","&amp;","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","&lt;","=","&gt;","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~"];
var color=["red","green","blue"];
</script>
<body>
<div style="padding:.5em;color:white;background-color:black;display:inline-block;width:59.3em">
<div id="timer">00</div>
<div id="cards"></div>
<!-- display "blank" cards -->
<script>
var fragment="";
for(var i=0;i<72;i++){
if(i%12==0){
fragment+="<br>";
}
//fragment+="<div class=\"card\"><span class=\"cardcontent\">?</span></div>";
fragment+="<div class=\"card\">"+(i+1)+"<br><span class=\"cardcontent\">?</span></div>";
}
cards.innerHTML=fragment;
</script>
</div>
<!-- timer -->
<script>
var start_date=new Date();
var start_time=start_date.getTime();
setInterval(function(){
var date=new Date();
var temp=Math.floor((date.getTime()-start_time)/1000);
var elapsed_time=temp;
var day=Math.floor(temp/86400);temp=temp%86400;
var hour=Math.floor(temp/3600);temp=temp%3600;
var min=Math.floor(temp/60);temp=temp%60
var sec=temp;
var time=""
if(elapsed_time>=86400)time+=day+":";
if(elapsed_time>=3600)if(hour<10)time+="0"+hour+":";else time+=hour+":";
if(elapsed_time>=60)if(min<10)time+="0"+min+":";else time+=min+":";
if(elapsed_time>=0)if(sec<10)time+="0"+sec;else time+=sec;
timer.innerHTML=time+" - "+start_date;
},1000);
</script>
<!-- cards -->
<style>
.card {
display:inline-block;
width:3em;
height:5em;
color:white;
border-color:white;
border-style:solid;
border-width:.2em;
border-radius:.5em;
margin:0em 0em .5em .5em;
padding:.5em;
background-color:gray;
}
.cardcontent {
font-size:3em;
font-family:"lucida console";
}
</style>
<script>
setTimeout(function(){
var fragment="";
var counter=0
var card_border_color=color[Math.floor(Math.random()*color.length)];
var addcard=function(){
counter++;
var card_color=color[Math.floor(Math.random()*color.length)];
var card_value=character[Math.floor(Math.random()*character.length)];
fragment+="<div class=\"card\" style=\"border-color:"+card_border_color+";background-color:"+card_color+"\">"+counter+"<br><span class=\"cardcontent\">"+card_value+"</span></div>";
}
for(var i=0;i<72;i++){
if(i%12==0){
fragment+="<br>";
}
addcard();
}
cards.innerHTML=fragment;
/* wait 5 seconds after display then print... test with print preview first!!!
setTimeout(function(){
window.print(); // Note: use chromes --kiosk-printing option to avoid the print dialog
},5000);
//*/
},60000);
</script>
</body>
</html>
Logged
The Astral Pulse
« Reply #1 on: July 13, 2020, 01:51:57 »

logoVisit the website of Astral Pulse creator Adrian Cooper.

Home of the best selling book Our Ultimate Reality.

Astral Projection, Metaphysics and many other subjects.

 Logged
Karxx Gxx
Astral Energy 3
***
Offline Offline

Posts: 366



View Profile
« Reply #2 on: July 13, 2020, 06:50:46 »

i havnt been on ages, can find again in my messages, but there is a site for this basically with other people.

I can give the complicated way they do it , but basically you are given a coordinate #  Such as 124543.
You remorte view trying to see what that picture is. Lets say on Monday.
Tuesday they post the picture associated with that number.

http://www.p-i-a.com/ is the website. I think you just email someone on there and they can get you a group. It is free. I think there are pay options.
They have free videos and teach. Or did when i was there years ago.

You can also do this style yourself if you have a friend.
Logged

Loading . . .
The Astral Pulse
   



 Logged
Pages: [1]   Go Up
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.21 | SMF © 2015, Simple Machines
SMFAds for Free Forums


The Astral Pulse Copyright © 2002 - 2014
Valid XHTML 1.0! Valid CSS! Dilber MC Theme by HarzeM