diff --git a/_includes/challenge-list.html b/_includes/challenge-list.html new file mode 100644 index 0000000..efa97d5 --- /dev/null +++ b/_includes/challenge-list.html @@ -0,0 +1,12 @@ + + +{% if paginator.previous_page or paginator.next_page %} + {% include pagination.html %} +{% endif %} diff --git a/_includes/navigation.html b/_includes/navigation.html index 2334d29..610b1e9 100755 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -13,5 +13,8 @@ members {% endif %} + {% if page.url != "/challenges/" %} + challenges + {% endif %} Subscribe - \ No newline at end of file + diff --git a/_layouts/challenge.html b/_layouts/challenge.html new file mode 100644 index 0000000..c7f0f25 --- /dev/null +++ b/_layouts/challenge.html @@ -0,0 +1,14 @@ +--- +layout: default +archive: true +--- + +
+
+

{{ page.title }}

+

{{ page.date | date:"%B %-d, %Y" }}

+
+
+ {{content}} +
+
diff --git a/_posts/challenges/2015-09-05-green-squares.md b/_posts/challenges/2015-09-05-green-squares.md new file mode 100644 index 0000000..64d8d55 --- /dev/null +++ b/_posts/challenges/2015-09-05-green-squares.md @@ -0,0 +1,12 @@ +--- +title: "Green Squares" +date: 2015-09-05 10:00:00 +category: challenge +layout: challenge +permalink: /challenges/greensquares +--- + +

The Green Square Incident

+

Our first real "challenge" started at some point in the fall of 2015. One of the Joshes spontaneously suggested this challenge, and it turned into something suprisingly fun and creative:

+ +

Put a green square on your screen as many ways as you can in 10 minutes.

\ No newline at end of file diff --git a/_posts/challenges/2015-12-20-bandcamp.md b/_posts/challenges/2015-12-20-bandcamp.md new file mode 100644 index 0000000..2e6e3ba --- /dev/null +++ b/_posts/challenges/2015-12-20-bandcamp.md @@ -0,0 +1,10 @@ +--- +title: "Apply to Bandcamp" +date: 2015-12-20 00:00:00 +category: challenge +layout: challenge +permalink: /challenges/bandcamp +--- + +

Get a Job

+

This challenge was simple - figure out how to apply to Bandcamp.com as a Systems Engineer. The clues begin by visiting Bandcamp.com's jobs page and look for the Systems Engineer position. Read it carefully, and go!

\ No newline at end of file diff --git a/_posts/challenges/2016-02-13-fuse.md b/_posts/challenges/2016-02-13-fuse.md new file mode 100644 index 0000000..7224ef1 --- /dev/null +++ b/_posts/challenges/2016-02-13-fuse.md @@ -0,0 +1,31 @@ +--- +title: "Build a FUSE plugin" +date: 2016-02-13 00:00:00 +category: challenge +layout: challenge +permalink: /challenges/fuse +--- + +Ok, go ahead. Build a filesystem, using FUSE and the bindings for your favorite language. You could use Python, or Ruby, or Go, or Lua, or JavaScript, or... really, just about any language out there. So give it a shot. It's stupidly fun. + +

WTF is FUSE?

+ + + + + + +

Resources

+ + \ No newline at end of file diff --git a/assets/css/main.css b/assets/css/main.css index d9e55a1..ebed23d 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -51,3 +51,18 @@ code { } } + + +.post-date { + color: #aaaaaa; +} + +#greensquare { + float: left; + width: 200px; + height: 200px; + margin-right: 20px; + margin-bottom: 20px; + background-color: #007700; +} + diff --git a/challenges.html b/challenges.html new file mode 100644 index 0000000..ad89959 --- /dev/null +++ b/challenges.html @@ -0,0 +1,27 @@ +--- +profile: false +title: "Welcome to Code and Coffee, Long Beach" +permalink: challenges/ +--- + +

Challenges

+ +

Every weekend Code && Coffee has a variety of activities, including group discussions, lightning talks, and - ocassionally - challenges. Challenges should be fun and offer something interesting to every skill level.

+ +
+ +

our challenges...

+ + {% for post in site.posts %} + {% if post.category == 'challenge' %} + {% assign author = site.authors[post.author] %} + {{ author.display_name }} +

{{ post.title }}

+ {% endif %} + {% endfor %} + +
+ +

If you have an idea for a new challenge, send @rogerhoward a private message (to avoid spoilers).

+ +{% include footer.html %} \ No newline at end of file