Skip to content

Commit fe3e621

Browse files
author
NiallNiall
committed
merged in recent dev
2 parents 2effbe4 + 9eb3390 commit fe3e621

73 files changed

Lines changed: 14372 additions & 921 deletions

File tree

Some content is hidden

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

.DS_Store

0 Bytes
Binary file not shown.

.gitignore

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# Jekyll
12
_site/
23
.sass-cache/
3-
.jekyll-metadata
4+
.jekyll-metadata
5+
.idea/
6+
7+
# MacOS
8+
.DS_Store
9+
_sass/.DS_store
10+
img/.DS_Store
11+
12+
13+
# NPM files
14+
node_modules
15+
npm-debug.log

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: pebble {code}
33
email: hello@pebblecode.com
44
description: > # this means to ignore newlines until "baseurl:"
5-
pebble {code} enable organisations to make the most of modern technologies, data & people through innovation strategy consulting, hacking, rapid prototyping, human-centred design, Agile delivery & measurement.
5+
pebble {code} - Technology Innovation Consultancy - Design Thinking, Rapid Prototyping and Agile Software Development
66
baseurl: "" # the subpath of your site, e.g. /blog/
77
url: "http://pebblecode.com" # the base hostname & protocol for your site
88
twitter: pebblecode

_includes/head.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,14 @@
3737

3838
<!-- segment.io -->
3939
<script type="text/javascript">!function(){var analytics=window.analytics=window.analytics||[];if(!analytics.initialize)if(analytics.invoked)window.console&&console.error&&console.error("Segment snippet included twice.");else{analytics.invoked=!0;analytics.methods=["trackSubmit","trackClick","trackLink","trackForm","pageview","identify","reset","group","track","ready","alias","page","once","off","on"];analytics.factory=function(t){return function(){var e=Array.prototype.slice.call(arguments);e.unshift(t);analytics.push(e);return analytics}};for(var t=0;t<analytics.methods.length;t++){var e=analytics.methods[t];analytics[e]=analytics.factory(e)}analytics.load=function(t){var e=document.createElement("script");e.type="text/javascript";e.async=!0;e.src=("https:"===document.location.protocol?"https://":"http://")+"cdn.segment.com/analytics.js/v1/"+t+"/analytics.min.js";var n=document.getElementsByTagName("script")[0];n.parentNode.insertBefore(e,n)};analytics.SNIPPET_VERSION="3.1.0";
40-
analytics.load("oYxl7b92cjkh5Et7feoBTtVp4jfknzS2");
40+
41+
42+
{% if jekyll.environment == "production" %}
43+
analytics.load("oYxl7b92cjkh5Et7feoBTtVp4jfknzS2");
44+
{% else %}
45+
analytics.load("xPBgNdEqIFZmifgwFwMcvMNaHMLrIJhB");
46+
{% endif %}
47+
4148
analytics.page({%if page.analytics_category %}'{{ page.analytics_category }}', {% endif %}{% if page.title %}'{{ page.title }}'{% endif %})
4249
}}();
4350
</script>

_includes/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<header class="gbl-head {{ page.colour }}">
2-
<a href="../" class="gbl-head-logo" data-sr="enter left move 100px, vF 0">go to pebble {code} home page</a>
2+
<a href="../" class="gbl-head-logo" data-sr="enter left move 100px, vF 0">pebble {code}</a>
33
<button id="navBtn" class="gbl-head-btn">Menu</button>
44
<nav id="navMenu" class="gbl-head-nav">
55
{% assign nav = site.pages %}

_includes/vert-section.html

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
{% if vsecloop.now-image %}
2+
<section id="{{vsecloop.sectionid}}" class="vert-section-container {{vsecloop.color}} {{vsecloop.extra-classes}}">
3+
{% else %}
4+
{% capture nextColor %}next-color-{{ nextSection.color }}{% endcapture %}
5+
<section id="{{vsecloop.sectionid}}" class="vert-section-container {{vsecloop.color}} {{vsecloop.extra-classes}} {{nextColor}}">
6+
{% endif %}
7+
<div class="vert-section-inner grid">
8+
<h4 class="vert-section-breadcrumb">{{page.title}}</h4>
9+
<h2 class="vert-section-title">{{vsecloop.title}}</h2>
10+
<img class="vert-section-large-image" src= '../img/verticals/{{vsecloop.largeimage}}' />
11+
{% for paragraph in vsecloop.paragraphs %}
12+
13+
{% if paragraph.list %}
14+
<ul class="vert-section-points">
15+
{% for paragraphlist in paragraph.list %}
16+
<li>{{paragraphlist}}</li>
17+
{% endfor %}
18+
</ul>
19+
20+
{% elsif paragraph.list-title %}
21+
<h3 class="vert-section-point-title">{{paragraph.list-title}}</h3>
22+
{% elsif paragraph.table %}
23+
<table class="vert-section-table" style="width:100%">
24+
{% for tablerow in paragraph.table %}
25+
<tr>
26+
{% for tablecolumn in tablerow.row %}
27+
<td>
28+
{{tablecolumn}}
29+
</td>
30+
{% endfor %}
31+
</tr>
32+
{% endfor %}
33+
</table>
34+
{% else %}
35+
<p>{{paragraph}}</p>
36+
{% endif %}
37+
38+
39+
{% endfor %}
40+
41+
{% for casestudy in vsecloop.casestudies %}
42+
<a class="vert-section-case-study">
43+
{{ casestudy }}
44+
</a>
45+
{% endfor %}
46+
47+
48+
{% for bloglink in vsecloop.bloglinks %}
49+
<div class="vert-section-blog-link">
50+
{% if vsecloop.link-url %}
51+
<a href="{{vsecloop.link-url}}">
52+
{{ bloglink }}
53+
</a>
54+
{% endif %}
55+
56+
</div>
57+
{% endfor %}
58+
59+
60+
</div>
61+
</section>
62+
{% if vsecloop.now-image %}
63+
<div class="vert-section-prediction-wrapper">
64+
<div class="grid">
65+
<h3 class="vert-section-prediction-heading {{vsecloop.color}}">We predict:</h3>
66+
67+
<div class="vert-section-prediction now">
68+
<h4 class="vert-section-prediction-title">Currently:</h4>
69+
70+
<div class="vert-section-prediction-img-wrap">
71+
<img src="../img/verticals/{{vsecloop.now-image}}.svg" />
72+
</div>
73+
</div>
74+
75+
{% if vsecloop.future-image %}
76+
<div class="vert-section-prediction future">
77+
<h4 class="vert-section-prediction-title">In the future:</h4>
78+
79+
<div class="vert-section-prediction-img-wrap">
80+
<img src="../img/verticals/{{vsecloop.future-image}}.svg" />
81+
</div>
82+
</div>
83+
{% endif %}
84+
</div>
85+
</div>
86+
{% endif %}
87+
88+
<!-- /.vert-section-container -->

_layouts/services.html

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -121,22 +121,6 @@ <h3>Testing &amp; Measurement</h3>
121121
</div>
122122
</div>
123123
</li>
124-
<!-- /.services-item -->
125-
<li id="servicesCollab" class="services-item">
126-
<div class="services-item-inner grid">
127-
<div class="services-item-img col-1-2">
128-
<img src="{{ site.baseurl }}/img/services/collab-3.png" alt="Sharing and Collaboration" data-sr="enter left move 200px, vF 0.2, wait 0.8s" class="services-collab-3">
129-
<img src="{{ site.baseurl }}/img/services/collab-2.png" alt="Sharing and Collaboration" data-sr="enter left move 300px, vF 0.2" class="services-collab-2">
130-
<img src="{{ site.baseurl }}/img/services/collab-1.png" alt="Sharing and Collaboration" data-sr="scale up 40%, vF 0.2, wait 0.4s" class="services-collab-1">
131-
</div>
132-
<div class="services-item-text col-1-2">
133-
<h3>Sharing &amp; Collaboration</h3>
134-
<p>Software is usually developed and deployed in silos and the bigger the business, the more that this happens. By encouraging your people to share and shout about both their successes and failures, others can learn and benefit from that hard work too. A great example is authentication - every team needs to authenticate to the corporate systems in order to release business software and it usually takes a reasonable amount of time. It does not have to. If you create reusable code and share that code, you could save months of time and money each year as well as potentially having that same code improved upon over time.</p>
135-
<p>Removing the fear of failure, trying new things, being user-centric, releasing often, learning and sharing is how you can create a truly innovative technology delivery culture - one in which the best creative technologists want to come and work for and one that keeps you one, or even two, steps ahead of your competition.</p>
136-
</div>
137-
</div>
138-
</li>
139-
<!-- /.services-item -->
140124
</ul>
141125
<!-- /.services-item-container -->
142126

_layouts/vertical.html

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
{% include head.html %}
2+
3+
<body class="{{ page.layout }}">
4+
5+
{% include header.html %}
6+
{% capture nextColor %}next-color-{{ page.sections[0].color }}{% endcapture %}
7+
<section class="hero-container {{ page.colour }} {{ nextColor }}">
8+
<div class="hero-inner grid">
9+
<h1 class="hero-title col-1-1">{% if page.hero-title %}{{page.hero-title}}{% else %}{{page.title}}{% endif %}</h1>
10+
11+
{% if page.hero-subtitle %}
12+
<p class="hero-summary col-1-1">{{page.hero-subtitle}}</p>
13+
{% endif %}
14+
15+
{% if page.hero-btn %}
16+
<a href="{{page.hero-btn-url}}" class="btn btn-primary btn-block" data-sr="scale up 20%, vF 0">{{page.hero-btn}}</a>
17+
{% endif %}
18+
19+
<div class="vert-bubble-container grid">
20+
21+
{% for sectionbubble in page.sections %}
22+
<a href="#{{sectionbubble.sectionid}}" class="vert-sec-bubble">
23+
<img src= '../img/verticals/{{ sectionbubble.bubbleimage }}' />
24+
<h2 class="vert-sec-bubble-title">{{ sectionbubble.title }}</h2>
25+
</a>
26+
{% endfor %}
27+
</div>
28+
</div>
29+
</section>
30+
31+
{% for vsecloop in page.sections %}
32+
{% assign nextIndex = forloop.index %}
33+
{% assign vsection = vsecloop %}
34+
{% assign nextSection = page.sections[nextIndex] %}
35+
{% include vert-section.html %}
36+
{% endfor %}
37+
38+
39+
{% include footer.html %}
40+
41+
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
42+
<script>window.jQuery || document.write('<script src="js/vendor/jquery-2.1.1.min.js""><\/script>')</script>
43+
<script type="text/javascript" src="{{ site.baseurl }}/js/vendor/jquery.lazyload.min.js"></script>
44+
<script type="text/javascript" src="{{ site.baseurl }}/js/vendor/scrollReveal.min.js"></script>
45+
<script type="text/javascript" src="{{ site.baseurl }}/js/main.js"></script>
46+
<script>
47+
jQuery(function ($) {
48+
$("img.lazy").lazyload({
49+
threshold : 600
50+
});
51+
$("#gif1").attr("src","second.jpg");
52+
});
53+
</script>
54+
<script>
55+
56+
</script>
57+
58+
<!-- /scripts-->
59+
60+
</body>
61+
</html>

_posts/2015-08-14-solving-big-data-for-humans.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ layout: post
33
title: Solving Big Data for Humans
44
author: Peter O'Shaughnessy
55
categories: data
6-
featured: true
76
---
87

98
**Modern computing and the Internet are causing a data explosion; how can we process it all? That’s the question at the
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: post
3+
title: Brewing Beer for under £30
4+
author: Jonny Li
5+
categories: lightning talks
6+
---
7+
In Octobers lightning talks, our lead creative technologist Paul Addicott-Evans talks us through his techniques for brewing beer, and gives you all you need to learn to brew on a budget.
8+
We're off to make our own Pebble Pilsner.
9+
10+
<div class="video"><iframe width="532" height="400" src="//www.youtube.com/embed/2hVQz4KXfNQ" frameborder="0" allowfullscreen="allowfullscreen"></iframe></div>
11+
12+
If you want to get the recipe and equipment list, check out the slides below and let us know how you get on!
13+
14+
<iframe src="//www.slideshare.net/slideshow/embed_code/key/klTeeHE4ANBVgY?startSlide=2" width="532" height="532" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;" allowfullscreen> </iframe>
15+
<div style="margin-bottom:5px"> <strong> <a href="//www.slideshare.net/pebblecode/how-to-brew-beer-for-30" title="How to brew Beer for £30" target="_blank">How to brew Beer for £30</a> </strong> from <strong><a href="//www.slideshare.net/pebblecode" target="_blank">pebble {code}</a></strong> </div>

0 commit comments

Comments
 (0)