-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·97 lines (82 loc) · 4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="blog-masthead">
<div class="container">
<nav class="blog-nav">
<a class="blog-nav-item active" href="#">Home</a>
</nav>
</div>
</div>
<div class="container">
<div class="blog-header">
<h1 class="blog-title">Eduan's Github Page</h1>
<p class="lead blog-description">Just another ordinary github page of a pretentious programmer.</p>
</div>
<div class="row">
<div class="col-sm-8 blog-main">
<div class="blog-post">
<a name="drawing"></a>
<h2 class="blog-post-title">Drawing with GA</h2>
<a href="javascript:;" onclick="p.nextGeneration()" title="Play"><i class="glyphicon glyphicon-play"></i></a></p>
<canvas id="escopo" width="600" height="600" style="border:1px solid #d3d3d3;"></canvas>
<a href="https://github.com/eduan/jsexperiments/blob/master/gadrawaline.html" target="_blank">Source code</a> |
<a href="https://en.wikipedia.org/wiki/Genetic_algorithm" target="_blank">What's this?</a>
</div><!-- /.blog-post -->
<div class="blog-post">
<a name="gameoflife"></a>
<h2 class="blog-post-title">Game of life using ES6</h2>
<p>
<a href="javascript:;" onclick="a.play()" title="Play"><i class="glyphicon glyphicon-play"></i></a> | <a href="javascript:;" onclick="a.stop()" title="Stop"><i class="glyphicon glyphicon-pause"></i></a></p>
<table id="canvas"></table>
<a href="https://github.com/eduan/gameoflife" target="_blank">Source code</a> |
<a href="https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life" target="_blank">What's this?</a>
</div><!-- /.blog-post -->
</div><!-- /.blog-main -->
<div class="col-sm-3 col-sm-offset-1 blog-sidebar">
<div class="sidebar-module sidebar-module-inset">
<h4>About</h4>
<p>Magento Consultant and PHP/Java/Python Dev. Nothing interesting.</p>
</div>
<div class="sidebar-module">
<h4>Archives</h4>
<ol class="list-unstyled">
<li><a href="#drawing">Drawing with GA</a></li>
<li><a href="#gameoflife">Game of life using ES6</a></li>
</ol>
</div>
<div class="sidebar-module">
<h4>Elsewhere</h4>
<ol class="list-unstyled">
<li><a href="https://github.com/eduan/">GitHub</a></li>
<li><a href="http://twitter.com/eduanlenine">Twitter</a></li>
<li><a href="http://facebook.com/eduan.lenine">Facebook</a></li>
<li><a href="https://analisandoosistema.wordpress.com/">Blog</a></li>
</ol>
</div>
</div><!-- /.blog-sidebar -->
</div><!-- /.row -->
</div><!-- /.container -->
<footer class="blog-footer">
<p>Blog template built for <a href="http://getbootstrap.com">Bootstrap</a> by <a href="https://twitter.com/mdo">@mdo</a>.</p>
<p>
<a href="#">Back to top</a>
</p>
</footer>
<script type="text/javascript" src="js/animation.js"></script>
<script type="text/javascript" src="js/gameoflife.js"></script>
<script type="text/javascript" src="js/drawingga.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-100410098-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>