-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (61 loc) · 4.26 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Learn Something New by learn-something-new</title>
<link rel="shortcut icon" type="image/x-icon" href="https://raw.githubusercontent.com/learn-something-new/learn-something-new.github.io/master/favicon.ico">
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/github-light.css">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<header>
<h1>Learn Something New</h1>
<p><a href="#"><img src="https://raw.githubusercontent.com/learn-something-new/learn-something-new.github.io/master/logo.png?v=2" alt="logo"></a></p>
<p>A collection of coding examples and projects to help you learn something new.</p>
<h2>
<a id="topics" class="anchor" href="#topics" aria-hidden="true"><span class="octicon octicon-link"></span></a>Topics</h2>
<p><a href="https://github.com/learn-something-new/functional-programming">Functional Programming</a></p>
<p><a href="https://github.com/learn-something-new/go-data-structures">Go Data Structures</a></p>
<p><a href="https://github.com/learn-something-new/data-structures">C++ Data Structures</a></p>
<p><a href="https://github.com/learn-something-new/go-slices">Go Slices</a></p>
<h2>Links</h2>
<p><a href="https://github.com/learn-something-new/learn-something-new.github.io/wiki">Wiki</a></p>
<p><a href="https://github.com/learn-something-new">View the Project on GitHub</a></p>
<p><a href="https://github.com/obihann">View My GitHub Profile</a></p>
</header>
<section>
<h2>What do you want to learn?</h2>
<h3>
<a id="functional-programming" class="anchor" href="#functional-programming" aria-hidden="true"><span class="octicon octicon-link"></span></a><a href="https://github.com/learn-something-new/functional-programming">Functional Programming</a>
</h3>
<p>In this suite of documents we discuss functional programming: What it looks like, how it works, and what it's good for. We try to do this from a practical-but-fun perspective, showing examples of functional programming in conventional languages, and (most importantly) how functional programming can complement object-oriented programming.</p>
<h3>
<a id="go-data-structures" class="anchor" href="#go-data-structures" aria-hidden="true"><span class="octicon octicon-link"></span></a><a href="https://github.com/learn-something-new/go-data-structures">Go Data Structures</a>
</h3>
<p>A collection of Go code for me to re-learn data structures including stacks, queues, linked lists and doubly linked lists.</p>
<h3>
<a id="go-slices" class="anchor" href="#go-slices" aria-hidden="true"><span class="octicon octicon-link"></span></a><a href="https://github.com/learn-something-new/go-slices">Go Slices</a>
</h3>
<p>In Go, slices are the most common way of dealing with sequences of data. Slices are an abstraction of the array type in Go. In this topic I provide a basic example of slices and how you can start using them.</p>
<h3>
<a id="c-data-structures" class="anchor" href="#c-data-structures" aria-hidden="true"><span class="octicon octicon-link"></span></a><a href="https://github.com/learn-something-new/data-structures">C++ Data Structures</a>
</h3>
<p>A collection of C++ code for me to re-learn data structures including stacks, queues, linked lists, stacked linked lists and even doubly linked lists.</p>
<h3>
<a id="license" class="anchor" href="#license" aria-hidden="true"><span class="octicon octicon-link"></span></a>License</h3>
<p>This tool is protected by the <a href="http://www.gnu.org/licenses/gpl-2.0.html">GNU General Public License v2</a>.</p>
<p>Copyright <a href="http://jeffreyhann.ca/">Jeffrey Hann</a> 2015</p>
</section>
<footer>
<p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
</footer>
</div>
<script src="javascripts/scale.fix.js"></script>
</body>
</html>