-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
89 lines (71 loc) · 4.07 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
<!DOCTYPE html>
<html>
<head>
<title>BelfastJS</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" href="stylesheets/normalize.css">
<link rel="stylesheet" href="stylesheets/styles.css">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="http://use.edgefonts.net/droid-sans.js"></script>
</head>
<body>
<div class="wrapper">
<h1>BelfastJS</h1>
<p class="intro">We are a group of passionate JavaScript developers from Belfast. We usually have a monthly meetup, where we have JavaScript or node.js talks, presentations or discussions. We would love you to come along!</p>
<div id="next" class="next-meetup">
<h3>Next Meetup</h3>
<p class="intro">
Wednesday, 25th February 2015 from 6.30pm
<span class="venue">@ <a href="http://www.farsetlabs.org.uk/">Farset labs</a>, Unit 1, Weavers Court Business Park, Belfast, BT12 5GH</span>
<span class="venue-notes">Farset Labs are a non-profit organization, donations are welcome</span>
</p>
<div class="more-links">
<span><a href="http://www.meetup.com/Belfast-JS">meetups</a></span> ·
<span><a href="https://trello.com/belfastjs">topics</a></span> ·
<span><a href="http://twitter.com/belfastjs">follow</a></span> ·
<span><a href="https://groups.google.com/forum/#!forum/belfastjs">mailing list</a></span>
</div>
</div>
<h2>Starting Point</h2>
<h3>Learning JavaScript</h3>
<ul>
<li><a href="http://eloquentjavascript.net/">Eloquent JavaScript</a></li>
<li><a href="http://addyosmani.com/largescalejavascript/">Patterns For Large-Scale JavaScript Application Architecture</a> </li>
<li><a href="http://mattdw.github.com/2012/rapid-coffee-postmortem.html">CoffeeScript under Pressure</a></li>
<li><a href="https://developer.mozilla.org/en/JavaScript/A_re-introduction_to_JavaScript">A re-introduction to JavaScript (Mozilla)</a></li>
<li><a href="https://developer.mozilla.org/en/Introduction_to_Object-Oriented_JavaScript">https://developer.mozilla.org/en/Introduction_to_Object-Oriented_JavaScript (Mozilla)</a></li>
</ul>
<h3>Frameworks You Should Know About</h3>
<ul>
<li><a href="http://documentcloud.github.com/backbone/">backbone.js</a></li>
<li><a href="http://ricostacruz.com/backbone-patterns/%20backbone%20patterns">backbone patterns</a></li>
<li><a href="http://emberjs.com/">Ember</a></li>
</ul>
<h3>Unit Testing Backbone apps</h3>
<ul>
<li><a href="http://phawk.co.uk/articles/testing-backbone-with-mocha">Testing Backbone.js with mocha</a></li>
<li><a href="http://tinnedfruit.com/2011/03/03/testing-backbone-apps-with-jasmine-sinon.html">Testing Backbone with Jasmine and sinon</a></li>
<li><a href="http://addyosmani.com/blog/unit-testing-backbone-js-apps-with-qunit-and-sinonjs/">Testing backbone with Qunit and sinon</a></li>
<li><a href="http://blog.involver.com/2012/01/26/testing-backbone-js-best-practices-2">Testing backbone best practises</a></li>
</ul>
<footer>
<span class="credits">Project maintained by <a href="https://github.com/belfastjs">belfastjs</a>— Hosted on GitHub Pages</span>
</footer>
</div><!-- end .wrapper -->
<!-- Google Analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-38094684-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>