Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
nmackenzie committed Nov 25, 2020
0 parents commit 87d8f26
Show file tree
Hide file tree
Showing 54 changed files with 8,811 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
_site
.sass-cache
.jekyll-metadata
yarn.lock
Gemfile.lock
package-lock.json
node_modules/

### macOS ###
*.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
soitgoes.dev
9 changes: 9 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
source 'https://rubygems.org'

gem 'jekyll'

group :jekyll_plugins do
gem "jekyll-sitemap"
gem "jekyll-paginate"
gem "jemoji"
end
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# So It Goes

This is the source repo for the So It Goes blog.
36 changes: 36 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
title: So It Goes
description: > # this means to ignore newlines until "baseurl:"
So It Goes is a blog with some occasional cloud-related posts with a
focus on Microsoft Azure.
permalink: ':title/'
baseurl: "/" # the subpath of your site, e.g. /blog
url: "https://soitgoes.dev" # the base hostname & protocol for your site, e.g. http://example.com
site-twitter: #if your site has a twitter account, enter it here

# Author Settings
author: Neil Mackenzie # add your name
author-img: clouds.jpg # add your photo
about-author: Cloud Solution Architect at Microsoft # add description
social-twitter: mknz # add your Twitter handle
#social-facebook: # add your Facebook handle
social-github: nmackenzie # add your Github handle
social-linkedin: neilmackenziesfo # add your Linkedin handle
#social-email: # add your Email address

# Disqus
discus-identifier: # add your discus identifier

# Tracker
analytics: # Google Analytics

# Build Settings
markdown: kramdown
plugins:
- jekyll-sitemap
- jekyll-paginate
- jemoji

paginate: 8
paginate_path: "/page/:num"

exclude: ["node_modules", "gulpfile.js", "package.json", "yarn.lock"]
8 changes: 8 additions & 0 deletions _includes/analytics.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', '{{ site.analytics }}', 'auto');
ga('send', 'pageview');
</script> <!-- End Analytics -->
16 changes: 16 additions & 0 deletions _includes/disqus.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<section class="comment-area">
<div class="comment-wrapper">
{% if site.discus-identifier %}
<div id="disqus_thread" class="article-comments"></div>
<script>
(function() {
var d = document, s = d.createElement('script');
s.src = '//{{ site.discus-identifier }}.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
{% endif %}
</div>
</section> <!-- End Comment Area -->
88 changes: 88 additions & 0 deletions _includes/head.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
<head>
<meta charset="utf-8">
<title>{% if page.title %}{{page.title}} - {{site.title}}{% else %}{{site.title}}{% endif %}</title>

<!-- Edit site and author settings in `_config.yml` to make the social details your own -->

<meta content="{{ site.title }}" property="og:site_name">
{% if page.title %}
<meta content="{{ page.title }}" property="og:title">
{% else %}
<meta content="{{ site.title }}" property="og:title">
{% endif %}
{% if page.title %}
<meta content="article" property="og:type">
{% else %}
<meta content="website" property="og:type">
{% endif %}
{% if page.description %}
<meta content="{{ page.description }}" property="og:description">
{% else %}
<meta content="{{ site.description }}" property="og:description">
{% endif %}
{% if page.url %}
<meta content="{{ site.url }}{{ page.url }}" property="og:url">
{% endif %}
{% if page.date %}
<meta content="{{ page.date | date_to_xmlschema }}" property="article:published_time">
<meta content="{{ site.url }}/about/" property="article:author">
{% endif %}
{% if page.img %}
<meta content="{{ site.url }}{{ site.baseurl }}/assets/img/{{ page.img }}" property="og:image">
{% else %}
<meta content="{{ site.url }}{{ site.baseurl }}/assets/img/{{ site.author-img }}" property="og:image">
{% endif %}
{% if page.categories %}
{% for category in page.categories limit:1 %}
<meta content="{{ category }}" property="article:section">
{% endfor %}
{% endif %}
{% if page.tags %}
{% for tag in page.tags %}
<meta content="{{ tag }}" property="article:tag">
{% endfor %}
{% endif %}

<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@{{ site.site-twitter }}">
<meta name="twitter:creator" content="@{{ site.social-twitter }}">
{% if page.title %}
<meta name="twitter:title" content="{{ page.title }}">
{% else %}
<meta name="twitter:title" content="{{ site.title }}">
{% endif %}
{% if page.url %}
<meta name="twitter:url" content="{{ site.url }}{{ page.url }}">
{% endif %}
{% if page.description %}
<meta name="twitter:description" content="{{ page.description }}">
{% else %}
<meta name="twitter:description" content="{{ site.description }}">
{% endif %}
{% if page.img %}
<meta name="twitter:image:src" content="{{ site.url }}{{ site.baseurl }}/assets/img/{{ page.img }}">
{% else %}
<meta name="twitter:image:src" content="{{ site.url }}{{ site.baseurl }}/assets/img/{{ site.author-img }}">
{% endif %}

<meta name="description" content="{{ page.description }}">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta property="og:image" content="">
<link rel="shortcut icon" href="{{ "/assets/img/favicon/favicon.ico" | prepend: site.baseurl }}" type="image/x-icon">
<link rel="apple-touch-icon" href="{{ "/assets/img/favicon/apple-touch-icon.png" | prepend: site.baseurl }}">
<link rel="apple-touch-icon" sizes="72x72" href="{{ "/assets/img/favicon/apple-touch-icon-72x72.png" | prepend: site.baseurl }}">
<link rel="apple-touch-icon" sizes="144x144" href="{{ "/assets/img/favicon/apple-touch-icon-144x144.png" | prepend: site.baseurl }}">
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#263959">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#263959">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#263959">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=PT+Serif:400,700|Lato:300,400,700&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="{{ "/assets/fonts/font-awesome/css/font-awesome.min.css" | prepend: site.baseurl }}">
<!-- Styles -->
<link rel="stylesheet" href="{{ "/assets/css/main.css" | prepend: site.baseurl }}">
</head>
2 changes: 2 additions & 0 deletions _includes/javascripts.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<!-- Main Js -->
<script src="{{site.baseurl}}/assets/js/main.js"></script>
21 changes: 21 additions & 0 deletions _includes/pagination.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<div class="container">
<nav class="pagination" role="pagination">
<ul>
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<p><a class="newer-posts" href="{{ site.baseurl }}/"><i class="fa fa-long-arrow-left" aria-hidden="true"></i></a></p>
{% else %}
<p><a class="newer-posts" href="{{ site.baseurl }}/page/{{ paginator.previous_page }}/"><i class="fa fa-long-arrow-left" aria-hidden="true"></i></a></p>
{% endif %}
{% endif %}

{% if paginator.total_pages > 1 %}
<p><span class="page-number">Page {{paginator.page}} of {{paginator.total_pages}}</span></p>
{% endif %}

{% if paginator.next_page %}
<p><a class="older-posts" href="{{ site.baseurl }}/page/{{ paginator.next_page }}/"><i class="fa fa-long-arrow-right" aria-hidden="true"></i></a></p>
{% endif %}
</ul>
</nav>
</div>
12 changes: 12 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>

<div class="wrapper">
{{ content }}
</div>

{% include analytics.html %}
</body>
</html>
43 changes: 43 additions & 0 deletions _layouts/main.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
---
layout: default
---

<aside class="sidebar">
<header>
<div class="about">
<div class="cover-author-image">
<a href="{{site.baseurl}}/"><img src="{{site.baseurl}}/assets/img/{% if site.author-img %}{{site.author-img}}{% endif %}" alt="{{site.author}}"></a>
</div>
<div class="author-name">{{site.author}}</div>
<p>{{site.about-author}}</p>
</div>
</header> <!-- End Header -->
<footer>
<section class="contact">
<h3 class="contact-title">Contact me</h3>
<ul>
{% if site.social-twitter %}
<li><a href="https://twitter.com/{{ site.social-twitter }}" target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
{% else %}
<li><a href="https://twitter.com/artemsheludko_" target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
{% endif %}
{% if site.social-github %}
<li class="github"><a href="http://github.com/{{site.social-github}}" target="_blank"><i class="fa fa-github"></i></a></li>
{% else %}
<li class="github"><a href="http://github.com/" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a></li>
{% endif %}
{% if site.social-linkedin %}
<li class="linkedin"><a href="https://in.linkedin.com/in/{{site.social-linkedin}}" target="_blank"><i class="fa fa-linkedin"></i></a></li>
{% else %}
<li class="linkedin"><a href="https://in.linkedin.com/" target="_blank"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>
{% endif %}
</ul>
</section> <!-- End Section Contact -->
<div class="copyright">
<p>{{site.time | date: '%Y'}} &copy; {{site.author}}</p>
</div>
</footer> <!-- End Footer -->
</aside> <!-- End Sidebar -->
<div class="content-box clearfix">
{{ content }}
</div>
36 changes: 36 additions & 0 deletions _layouts/post.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
layout: main
---
<article class="article-page">
<div class="page-content">
{% if page.img %}
<div class="page-cover-image">
<figure>
<img class="page-image" src={{ "/assets/img/" | prepend: site.baseurl | append : page.img}} alt="{{page.title}}">
{% if page.fig-caption %}
<figcaption>{{page.fig-caption}}</figcaption>
{% endif %}
</figure>
</div> <!-- End Page Cover Image -->
{% else %}
{% endif %}
<div class="wrap-content">
<header class="header-page">
<h1 class="page-title">{{page.title}}</h1>
<div class="page-date"><span>{{page.date | date: '%Y, %b %d'}}&nbsp;&nbsp;&nbsp;&nbsp;</span></div>
</header>
{{content | markdownify}}
<div class="page-footer">
<div class="page-share">
<a href="https://twitter.com/intent/tweet?text={{ page.title }}&url={{ site.url }}{{ page.url }}" title="Share on Twitter" rel="nofollow" target="_blank">Twitter</a>
</div>
<div class="page-tag">
{% for tag in page.tags %}
<a href="{{site.baseurl}}/tags#{{tag}}" class="tag">&#35; {{ tag }}</a>
{% endfor %}
</div>
</div>
{% include disqus.html %}
</div> <!-- End Wrap Content -->
</div> <!-- End Page Content -->
</article> <!-- End Article Page -->
16 changes: 16 additions & 0 deletions _posts/2020-11-15-so-it-goes.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: post
title: So It Goes
date: 2020-11-15 15:00:00 +0800
description: Introductory post for the So It Goes blog. # Add post description (optional)
img: clouds-1280.jpg # Add image post (optional)
fig-caption: # Add figcaption (optional)
tags: [Blog]
---
I am a Cloud Solution Architect at Microsoft. In that role I help customers be successful in their use of Microsoft Azure. The technologies I am mainly focused on are the core infrastructure services: Compute, Storage and Networking.

I am going to use the **So It Goes** blog to post about Azure, Quantum Computing and Azure Sphere. I am more interested in why things should be done rather than how to do them. Microsoft has great Azure documention but I intend to post additional commentary on some less-known features.

I have been using Azure since it was first released in 2008 so have seen many changes over the years. From 2008 through 2014 I did some Azure blogging at [Convective](https://convective.wordpress.com/), although almost all of these posts are now out of date. I later participated in a team blog with some of my Microsoft peers, but that blog has now been deleted.

There is not much to the title **So It Goes**. The last line of the Samuel Beckett story, Echo's Bones, is *So it goes in the world*. And the chorus of the Nick Lowe song, [So It goes](https://www.youtube.com/watch?v=YEpr8kaczck&feature=emb_logo), states *But where it's goin' no one knows* and that's pretty much where we are.
Loading

0 comments on commit 87d8f26

Please sign in to comment.