Skip to content
This repository was archived by the owner on Dec 7, 2019. It is now read-only.

Commit 2c9d1d0

Browse files
committed
Archive from createdhack 2018
0 parents  commit 2c9d1d0

57 files changed

Lines changed: 1580 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
_site
2+
.sass-cache
3+
.jekyll-metadata
4+
node_modules/
5+
.DS_Store
6+
*.swp
7+
*.swo

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.2.4

CNAME

Whitespace-only changes.

Gemfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
source "https://rubygems.org"
2+
3+
ruby "2.3.1"
4+
5+
gem "jekyll"
6+
gem "jekyll-watch"
7+
gem "kramdown"
8+
gem "scss_lint"

Gemfile.lock

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.5.2)
5+
public_suffix (>= 2.0.2, < 4.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.0.5)
8+
em-websocket (0.5.1)
9+
eventmachine (>= 0.12.9)
10+
http_parser.rb (~> 0.6.0)
11+
eventmachine (1.2.5)
12+
ffi (1.9.21)
13+
forwardable-extended (2.6.0)
14+
http_parser.rb (0.6.0)
15+
i18n (0.9.5)
16+
concurrent-ruby (~> 1.0)
17+
jekyll (3.7.2)
18+
addressable (~> 2.4)
19+
colorator (~> 1.0)
20+
em-websocket (~> 0.5)
21+
i18n (~> 0.7)
22+
jekyll-sass-converter (~> 1.0)
23+
jekyll-watch (~> 2.0)
24+
kramdown (~> 1.14)
25+
liquid (~> 4.0)
26+
mercenary (~> 0.3.3)
27+
pathutil (~> 0.9)
28+
rouge (>= 1.7, < 4)
29+
safe_yaml (~> 1.0)
30+
jekyll-sass-converter (1.5.2)
31+
sass (~> 3.4)
32+
jekyll-watch (2.0.0)
33+
listen (~> 3.0)
34+
kramdown (1.16.2)
35+
liquid (4.0.0)
36+
listen (3.1.5)
37+
rb-fsevent (~> 0.9, >= 0.9.4)
38+
rb-inotify (~> 0.9, >= 0.9.7)
39+
ruby_dep (~> 1.2)
40+
mercenary (0.3.6)
41+
pathutil (0.16.1)
42+
forwardable-extended (~> 2.6)
43+
public_suffix (3.0.2)
44+
rake (12.3.0)
45+
rb-fsevent (0.10.2)
46+
rb-inotify (0.9.10)
47+
ffi (>= 0.5.0, < 2)
48+
rouge (3.1.1)
49+
ruby_dep (1.5.0)
50+
safe_yaml (1.0.4)
51+
sass (3.5.5)
52+
sass-listen (~> 4.0.0)
53+
sass-listen (4.0.0)
54+
rb-fsevent (~> 0.9, >= 0.9.4)
55+
rb-inotify (~> 0.9, >= 0.9.7)
56+
scss_lint (0.56.0)
57+
rake (>= 0.9, < 13)
58+
sass (~> 3.5.3)
59+
60+
PLATFORMS
61+
ruby
62+
63+
DEPENDENCIES
64+
jekyll
65+
jekyll-watch
66+
kramdown
67+
scss_lint
68+
69+
RUBY VERSION
70+
ruby 2.3.1p112
71+
72+
BUNDLED WITH
73+
1.16.1

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2017 Major League Hacking (MLH)
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# CreatED 2018 Website
2+
CreatED is a 24 hour hardware hackathon coming to Edinburgh this April.
3+
4+
This website is based on https://github.com/MLH/mlh-hackathon-boilerplate
5+
6+
### The hackathon is run by [The University of Edinburgh Embedded and Robotics Society](http://ears-edi.com/ "EaRS website")

0 commit comments

Comments
 (0)