-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (83 loc) · 3.37 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ruby in Hollywood</title>
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
</head>
<body>
<nav class="white" role="navigation">
<div class="nav-wrapper container"><a id="logo-container" href="/" class="brand-logo"><img height="60" src="SmallBanner.png" alt="" /></a>
<ul class="right hide-on-med-and-down">
<li class="pink accent-3"><a href="http://www.meetup.com/rubyinhollywood/">Join Our Meetup Group</a></li>
</ul>
<ul id="nav-mobile" class="side-nav">
<li class="pink accent-3"><a href="http://www.meetup.com/rubyinhollywood/">Join Our Meetup Group</a></li>
</ul>
<a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
</div>
</nav>
<div class="container">
<h2>
Schedule
</h2>
<div class="row">
<h4>
First Week of Month: n00bs
</h4>
<p>
On the first week of the month, join us if you’re a beginner and need help getting set up. And also join us if you want to help people just getting started. We will help you get Ruby and/or Rails setup on your machine and answer any tooling questions you have and help you get started moving forward.
</p>
</div>
<div class="row">
<h4>
Second Week of Month: Tutorial
</h4>
<p>
Join us to work on learning something new together. The second week involves learning a new piece of tech, or following a tutorial together to get something up and running. Dabble in something new.
</p>
</div>
<div class="row">
<h4>
Third Week of Month: Katas & Algorithms
</h4>
<p>
On the third week of the month, you can expect to write algorithms and complete code challenges. You can find these on codewars and the like, or we can share some of our favorites with you. Language agnostic.
</p>
</div>
<p>
Here are examples of the kind of code challenges we'll do:
<ol>
<li><a href="http://exercism.io">Exercism</a></li>
<li><a href="https://www.hackerrank.com/">HackerRank</a></li>
<li><a href="https://projecteuler.net/">Project Euler</a></li>
<li><a href="https://www.codewars.com/dashboard">Code Wars</a></li>
<li><a href="https://coderbyte.com/">Coder Byte</a></li>
</ol>
</p>
<div class="row">
<h4>
Fourth Week of Month: Code Review
</h4>
<p>
Bring your code and questions! If you are stuck on a project and need help, this is where to go. As a programmer, it’s important to sharpen your skills by reviewing other programmers’ code, so this is great practice.
</p>
</div>
<div class="row">
<h4>
Fifth Week of Month: Nerd Party
</h4>
<p>
On the rare occasion of a fifth week, there will be a party. A nerd party. Bring nerdy shit.
</p>
</div>
<small>
We will also have special events with talks and whatnot, but those do not follow a set schedule.
</small>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/js/materialize.min.js"></script>
</body>
</html>