-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathabout.html
117 lines (109 loc) · 5.66 KB
/
about.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Generates guitar scale charts
Minor, Major, Blues, Pentatonic."/>
<title>About. FretsMap. Guitar Scales. Minor, Major, Blues.</title>
<link rel="stylesheet" href="public/fretsmap.css">
</head>
<body>
<div class="navbar navbar-default" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="text-bold navbar-brand" style="font-size: 24px; color: #000" href="./">
fretsMap
</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a class="active" href="./about.html">About</a></li>
<li><a href="./feedback.html">Feedback</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container">
<h1>About</h1>
<div class="container">
<p class="lead p-indent-50">
This project was created for research purposes for studying
<a href="http://facebook.github.io/react/">Reactjs</a>.
The main idea is taken from the resource
<a href="http://www.scalerator.com/cgi-bin/sdispatch.py?optionsDisp=none&root=C&pattern=major&tuning=EADGBE&size=30">scalerator.com</a>.
This project helps in studying scales and chords on the guitar.
I added some useful features from my self such as playing selected
part of fretboard notes, changing play direction and play repeat.
Provided more detailed scale information (interval formulas).
I am going to add another cool features to this project soon.
So any feedback or contributing will be appreciated.
</p>
<p class="lead">
All code is available on <a href="https://github.com/AlexMost/fretboard">github</a>.
</p>
<p class="lead">
You may leave your feedback on <a href="./feedback.html">feedback page</a>
or create an issue on <a href="https://github.com/AlexMost/fretboard/issues?state=open">github</a>.
</p>
</div>
<h2>Some technical info</h2>
<div class="container">
<p class="lead p-indent-50">
Scales generator is built on top of <a href="http://facebook.github.io/react/">reactjs</a>
framework. This my first react application and i really positively impressed.
You just working with your application state, and react cares about all
DOM modifications end other stuff.
It has a good documentation and community support.
One of the main advantages for me - was an ability to render components on the server-side.
If you will look at source page code <a href="http://alexmost.github.io/fretboard/">here</a> - then
you will see that the main component was already prerendered on the server, and that is really awesome.
</p>
<p class="lead p-indent-50">
All business logic and react components in application are written in coffeescript.
As for me, describing react's virtual dom in coffeescript's syntax looks like much better even than in jsx.
</p>
<p>
Look here at example:
</p>
<pre>
React = require 'react'
{div, span, button} = React.DOM
MyComponent = React.createClass
render: ->
(div {className: "someClass"},
(span
style: {color: "#000"},
"Some Text"
(button {name: "my-button"}, "button text")
)
)
</pre>
<p class="lead p-indent-50">
Project is build with <a href="http://gruntjs.com/">Grunt</a> build system.
All modules are bundled with <a href="http://browserify.org/">browserify</a>.
</p>
<p class="lead p-indent-50">
Suggestions and contributings are welcome =)
</p>
<a href="https://twitter.com/MostovenkoA" class="twitter-follow-button" data-show-count="false">Follow @MostovenkoA</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</div>
</div>
<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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-49906596-1', 'alexmost.github.io');
ga('send', 'pageview');
</script>
</body>
</html>