-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
159 lines (123 loc) · 6.68 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta name="generator" content="Hugo 0.33" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="Programming, Google Cloud Platform, Go" name="keywords">
<meta content="Mark Stuart" name="author">
<meta property="og:title" content="Mark Stuart | Github IO">
<meta property="og:url" content="https://stuarmark.github.io/">
<meta property="og:description" content="Mark Stuart's Github IO pages">
<meta property="og:type" content="website" />
<title>Mark Stuart | Github IO</title>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
processEscapes: true
}
});
</script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sorts+Mill+Goudy|Josefin+Sans" >
<link rel="stylesheet" href="https://stuarmark.github.io//css/style.css">
<link rel="shortcut icon" href="https://stuarmark.github.io//wave.ico">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha256-eZrrJcwDc/3uDhsdt61sL2oOBY362qM3lon1gyExkL0=" crossorigin="anonymous" />
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/styles/github.min.css">
</head>
<section class="section">
<div class="container">
<nav class="nav">
<div class="nav-left">
<a class="nav-item" href="https://stuarmark.github.io/"><h1 class="title is-4">Mark Stuart | Github IO</h1></a>
</div>
<div class="nav-right">
<nav class="nav-item level is-mobile">
<a class="level-item" href="https://github.com/stuarmark" target="_blank">
<span class="icon">
<i class="fa fa-github"></i>
</span>
</a>
<a class="level-item" href="https://www.linkedin.com/in/mark-stuart-877143a/" target="_blank">
<span class="icon">
<i class="fa fa-linkedin-square"></i>
</span>
</a>
</nav>
</div>
</nav>
</div>
</section>
<section class="section">
<div class="container">
<article>
<h1 class="title"><a href="https://stuarmark.github.io/posts/20180125/">Some golang channel observations</a></h1>
<h2 class="subtitle is-5">25 Jan 2018</h2>
<div class="content">
tldr;
Working on an interesting golang tutorial using channels I came to a few helpful conclusions.
Starting Out The particular problem I was solving was a rock-paper-scissors game where I was trying to determine my opponent’s choice and make sure that I would beat them (see this) when we came to the ‘showdown’. There was one channel that was passed to both my ‘player’ function and my ‘opponent’, with which you could send and recieve a struct with a user id along with the choice made: 1-Rock, 2-Paper, and 3-Scissors.
...<a class="button is-link" href="https://stuarmark.github.io/posts/20180125/" style="height:28px">
Read more...
<span class="icon is-small">
</span>
</a>
</div>
</article>
<article>
<h1 class="title"><a href="https://stuarmark.github.io/posts/20171217/">Using GCP Cloud Source Repository</a></h1>
<h2 class="subtitle is-5">17 Dec 2017</h2>
<div class="content">
tldr;
Google Cloud Platform (GCP) has a great code/document repo service (Cloud Source Repository) that is free for 5 project/users month.
Repositories It goes without saying that if you work with code, or any type of document where you’d like to save versions, then having a code source control (github, gitlab, etc) or cloud storage service (box, dropbox, etc) is essential. One great feature of the GCP is the Cloud Source Repository service which is a hosted version control system.
...<a class="button is-link" href="https://stuarmark.github.io/posts/20171217/" style="height:28px">
Read more...
<span class="icon is-small">
</span>
</a>
</div>
</article>
<article>
<h1 class="title"><a href="https://stuarmark.github.io/posts/20171108/">The GCP</a></h1>
<h2 class="subtitle is-5">08 Nov 2017</h2>
<div class="content">
tldr;
In my opinion - Google Cloud Platform (GCP) is outpacing other cloud IAAS/PAAS services in the race to be the premier provider.
Background I’ve used cloud PAAS providers both personally/professionally for the last 4 years in small scale consulting and personal projects and can attest that they live up to the hype. Easy to develop, deploy, and administer applications along with services. The offerings to be had continue to increase and diversify - all with an inversely correlated drop in price.
...<a class="button is-link" href="https://stuarmark.github.io/posts/20171108/" style="height:28px">
Read more...
<span class="icon is-small">
</span>
</a>
</div>
</article>
</div>
</section>
<section class="section">
<div class="container">
<nav class="level is-mobile">
<div class="level-left">
<div class="level-item">
</div>
</div>
<div class="level-right is-marginless">
<div class="level-item">
</div>
</div>
</nav>
</div>
</section>
<section class="section">
<div class="container has-text-centered">
<p>© 2017 | <a href="https://github.com/mgjohansen/hucore.git" target="_blank">Hucore theme</a> & <a href="http://gohugo.io" target="_blank">Hugo</a></p>
</div>
</section>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.11.0/highlight.min.js" integrity="sha256-+bhVTaRmJ/c07eV80nU8gD2cBBF0rYkf1txqXlrbvb0=" crossorigin="anonymous"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.11.0/languages/go.min.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.11.0/languages/css.min.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.11.0/languages/html.min.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js"></script>
<script>hljs.initHighlightingOnLoad();</script>