Skip to content

Commit 14bc287

Browse files
author
Entrances
committedSep 30, 2013
.
1 parent 3eab7c0 commit 14bc287

10 files changed

+160
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{"ts":1380508701500,"silentsave":true,"restoring":false,"patch":[[]],"length":0}
2+
{"contributors":[],"silentsave":false,"ts":1380509122358,"patch":[[{"diffs":[[1,"<!DOCTYPE HTML>\n<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n<title>Untitled Document</title>\n</head>\n\n<body>\n</body>\n</html>\n"]],"start1":0,"start2":0,"length1":0,"length2":163}]],"length":163,"saved":false}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"ts":1380514442255,"silentsave":true,"restoring":false,"patch":[[{"diffs":[[1,"<!DOCTYPE HTML>\n<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n<title>Empty</title>\n</head>\n\n<body>\n</body>\n</html>\n"]],"start1":0,"start2":0,"length1":0,"length2":151}]],"length":151}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{"ts":1380165246075,"silentsave":true,"restoring":false,"patch":[[]],"length":0}
22
{"contributors":[],"silentsave":false,"ts":1380165438985,"patch":[[{"diffs":[[1,"This is a test\n\nWe will fork Ripple\n\nWe will use it for development purposes"]],"start1":0,"start2":0,"length1":0,"length2":76}]],"length":76,"saved":false}
33
{"ts":1380184686686,"patch":[[{"diffs":[[-1,"This is a test\n\nWe will fork Ripple\n\nWe will use it for development purposes"],[1,"<!DOCTYPE HTML>\n<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n<title>PROJECT FORKING RIPPLE</title>\n</head>\n\n<body>\n <strong>PROJECT FORKING RIPPLE</strong>\n \n <br><br>\nBITMESSAGE ADDRESS: <strong>TBA\n</strong>\n<br>\n <br>\nFork this project and add your own comments and feedback\n <br>\n <div align=\"center\">\n <img src=\"\"/>\n\n </div>\n</body>\n</html>\n"]],"start1":0,"start2":0,"length1":76,"length2":394}]],"length":394,"saved":false}
4+
{"contributors":[],"silentsave":false,"ts":1380506176005,"patch":[[{"diffs":[[0,"\n <br>\n"],[1," \nWe want a Ripple fork to see if we can remove the fee to trust someone.\n\n<br>\nThree developers will build this.\n<br>\nOur deadline is 4 months from now.\n<br>\nYou can join by forking this project, adding your code to the webpage and submitting a pull request.\n<br>\n"],[0," <div a"]],"start1":319,"start2":319,"length1":16,"length2":282}]],"length":660,"saved":false}
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"ts":1380509189672,"silentsave":true,"restoring":false,"patch":[[{"diffs":[[1,"<!DOCTYPE HTML>\n<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n<title>PROJECT ZEROCOIN IMPLEMENTATION</title>\n</head>\n\n<body>\n <strong>PROJECT ZEROCOIN IMPLEMENTATION</strong>\n \n <br><br>\nBITMESSAGE ADDRESS: <strong>BM-2DBNQdH6fqmCZw4PKuMR6mxEpbAr7BjXvr\n</strong>\n<br>\n <br>\nFork this project and add your own comments and feedback\n <br>\n <div align=\"center\">\n <img src=\"http://zerocoin.org/media/images/zq_bw_72.png\"/>\n\n </div>\n</body>\n</html>\n"]],"start1":0,"start2":0,"length1":0,"length2":491}]],"length":491}

‎ProjectAnimatedWebsite.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE HTML>
2+
<html>
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5+
<title>Animated Bitcoin Website</title>
6+
</head>
7+
8+
<body>
9+
</body>
10+
</html>

‎ProjectBouncingBalls.html

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<script type="text/javascript">
2+
var context;
3+
var dx= 4;
4+
var dy=4;
5+
var y=150;
6+
var x=10;
7+
function draw(){
8+
context= myCanvas.getContext('2d');
9+
context.clearRect(0,0,300,300);
10+
context.beginPath();
11+
context.fillStyle="#0000ff";
12+
context.arc(x,y,20,0,Math.PI*2,true);
13+
context.closePath();
14+
context.fill();
15+
if( x<0 || x>300)
16+
dx=-dx;
17+
if( y<0 || y>300)
18+
dy=-dy;
19+
x+=dx;
20+
y+=dy;
21+
}
22+
setInterval(draw,10);
23+
</script>
24+
<!DOCTYPE html>
25+
<html>
26+
<head>
27+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
28+
<title>HTML5 Bouncing Ball</title>
29+
<style type="text/css">
30+
<!--
31+
body { background-color:#ededed; font:normal 12px/18px Arial, Helvetica, sans-serif; }
32+
h1 { display:block; width:600px; margin:20px auto; padding-bottom:20px; font:normal 24px/30px Georgia, "Times New Roman", Times, serif; color:#333; text-shadow: 1px 2px 3px #ccc; border-bottom:1px solid #cbcbcb; }
33+
#container { width:600px; margin:0 auto; }
34+
#myCanvas { background:#fff; border:1px solid #cbcbcb; }
35+
#nav { display:block; width:100%; text-align:center; }
36+
#nav li { display:block; font-weight:bold; line-height:21px; text-shadow:1px 1px 1px #fff; width:100px; height:21px; padding:5px; margin:0 10px; background:#e0e0e0; border:1px solid #ccc; -moz-border-radius:4px;-webkit-border-radius:4px; border-radius:4px; float:left; }
37+
#nav li a { color:#000; display:block; text-decoration:none; width:100%; height:100%; }
38+
-->
39+
</style>
40+
</head>
41+
<body>
42+
<h1>Bitcoin Bouncing Ball</h1>
43+
<div id="container">
44+
45+
<canvas id="myCanvas" width="300" height="300"></canvas>
46+
47+
</div>
48+
49+
</body>
50+
</html>

‎ProjectCountdownBitcoin.html

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<!DOCTYPE HTML>
2+
<html>
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5+
<title>Bitcoin Countdown</title>
6+
</head>
7+
8+
<body>
9+
10+
<span id="countdown"></span>
11+
12+
<script>
13+
14+
// set the date we're counting down to
15+
var target_date = new Date("Aug 15, 2019").getTime();
16+
 
17+
// variables for time units
18+
var days, hours, minutes, seconds;
19+
 
20+
// get tag element
21+
var countdown = document.getElementById("countdown");
22+
 
23+
// update the tag with id "countdown" every 1 second
24+
setInterval(function () {
25+
 
26+
    // find the amount of "seconds" between now and target
27+
    var current_date = new Date().getTime();
28+
    var seconds_left = (target_date - current_date) / 1000;
29+
 
30+
    // do some time calculations
31+
    days = parseInt(seconds_left / 86400);
32+
    seconds_left = seconds_left % 86400;
33+
     
34+
    hours = parseInt(seconds_left / 3600);
35+
    seconds_left = seconds_left % 3600;
36+
     
37+
    minutes = parseInt(seconds_left / 60);
38+
    seconds = parseInt(seconds_left % 60);
39+
     
40+
    // format countdown string + set tag value
41+
    countdown.innerHTML = days + "d, " + hours + "h, "
42+
    + minutes + "m, " + seconds + "s";  
43+
 
44+
}, 1000);
45+
46+
47+
48+
</script>
49+
50+
51+
</body>
52+
53+
54+
</html>

‎ProjectEmpty.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE HTML>
2+
<html>
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5+
<title>Empty</title>
6+
</head>
7+
8+
<body>
9+
</body>
10+
</html>

‎ProjectForkingRipple.html

+10
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,16 @@
1515
<br>
1616
Fork this project and add your own comments and feedback
1717
<br>
18+
19+
We want a Ripple fork to see if we can remove the fee to trust someone.
20+
21+
<br>
22+
Three developers will build this.
23+
<br>
24+
Our deadline is 4 months from now.
25+
<br>
26+
You can join by forking this project, adding your code to the webpage and submitting a pull request.
27+
<br>
1828
<div align="center">
1929
<img src=""/>
2030

‎ProjectMakeYourOwnCryptocurrency.html

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE HTML>
2+
<html>
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5+
<title>Untitled Document</title>
6+
</head>
7+
8+
<body>
9+
10+
We need our own cryptocurrency.
11+
<br><br>
12+
It is for experimental purposes but can also be used as a reward for developers etc.
13+
<br><br>
14+
We need a team of a couple of developers to do this. Or just one might be enough too.
15+
<br><br>
16+
Starting now.
17+
<br><br>
18+
Apply by forking this code, adding code and submitting a pull request.
19+
<br>
20+
</body>
21+
</html>

0 commit comments

Comments
 (0)
Please sign in to comment.