meetup-generator 0.0.20210128 → 1.2.84
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +5 -0
- data/.travis.yml +17 -0
- data/Gemfile +1 -3
- data/README.md +6 -50
- data/Rakefile +11 -4
- data/bin/meetup-generator.rb +14 -17
- data/config.ru +0 -2
- data/lib/all_the_things.yaml +126 -436
- data/lib/build_helpers.rb +9 -0
- data/lib/meetup-generator.rb +63 -0
- data/lib/version.rb +4 -0
- data/meetup-generator.gemspec +16 -24
- data/public/css/main.css +2 -5
- data/spec/acceptance_spec.rb +33 -62
- data/spec/unit_spec.rb +68 -0
- data/views/default.slim +14 -14
- data/{package/meetup-generator.xml → website.xml} +2 -2
- metadata +82 -78
- data/Gemfile.lock +0 -84
- data/bin/locate_meetup-generator +0 -6
- data/lib/locator.rb +0 -7
- data/lib/meetup_generator.rb +0 -106
- data/lib/words.gz +0 -0
- data/spec/meetup_generator_spec.rb +0 -138
- data/views/partial_talk.slim +0 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 133c582b916d4dc630974617c858f919334c7fabeaf080288710583aa1a35c06
|
4
|
+
data.tar.gz: 35422a8fd96718c666dbf2da16c03b9e7a52dc543150085976b660273ce8b466
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 77b193e1c0482ac3c11b329c338a9333d1c5f40301cdc814d6663dda16fa171fc5d17e74111818c53bf35a628120c70353a0fa85f8762294359af113ada00047
|
7
|
+
data.tar.gz: 91bbaf3b384810da351949b520b4b428f9946f7c74b1ba538cbd90b454c6245e46ab3cb11ba71de161b7bccd5724de108cbe830dd9c141c5b3775835b44e3f5e
|
data/.travis.yml
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
language: ruby
|
2
|
+
cache: bundler
|
3
|
+
rvm:
|
4
|
+
- 2.2.10
|
5
|
+
- 2.3.7
|
6
|
+
- 2.4.4
|
7
|
+
- 2.5.1
|
8
|
+
before_install: gem install bundler --no-rdoc --no-ri
|
9
|
+
deploy:
|
10
|
+
provider: rubygems
|
11
|
+
api_key:
|
12
|
+
secure: YKceAbCY5cvk6G22YkgDzjs5jAW9rLTKYTkjE3anqvt3GXa5QX4+hOV0zDT6QOK+R/Dp9LY9KEC83C861pRrNk+QrbOcelo6B9vRmB+jWoYXCJybx2f0xWl1/x9XDmLNYLpgjX2hXQGj+pMaPu+cZehigk0arSXOF3aeBl3lS14=
|
13
|
+
gem: meetup-generator
|
14
|
+
on:
|
15
|
+
branch: master
|
16
|
+
repo: snltd/meetup-generator
|
17
|
+
ruby: 2.4.4
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,12 +1,9 @@
|
|
1
|
-
# meetup-generator [![Build Status](https://travis-ci.org/snltd/meetup-generator.svg?branch=master)](https://travis-ci.org/snltd/meetup-generator) [![Maintainability](https://api.codeclimate.com/v1/badges/4487595d6afb26a57d82/maintainability)](https://codeclimate.com/github/snltd/meetup-generator/maintainability)
|
1
|
+
# meetup-generator [![Build Status](https://travis-ci.org/snltd/meetup-generator.svg?branch=master)](https://travis-ci.org/snltd/meetup-generator) [![Maintainability](https://api.codeclimate.com/v1/badges/4487595d6afb26a57d82/maintainability)](https://codeclimate.com/github/snltd/meetup-generator/maintainability) [![Dependency Status](https://gemnasium.com/badges/github.com/snltd/meetup-generator.svg)](https://gemnasium.com/github.com/snltd/meetup-generator)
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
into the direction of the most disruptive tech. On Kubernetes.
|
3
|
+
A very small, very stupid Sinatra app which generates a wholly plausible
|
4
|
+
agenda for a fictional DevOps meetup.
|
6
5
|
|
7
|
-
|
8
|
-
|
9
|
-
## API
|
6
|
+
Now includes API!
|
10
7
|
|
11
8
|
```sh
|
12
9
|
$ curl -s localhost:4567/api/talk | json
|
@@ -18,47 +15,6 @@ $ curl -s localhost:4567/api/talk | json
|
|
18
15
|
}
|
19
16
|
```
|
20
17
|
|
21
|
-
|
22
|
-
|
23
|
-
Build a gem with
|
24
|
-
|
25
|
-
```sh
|
26
|
-
$ rake build
|
27
|
-
```
|
28
|
-
|
29
|
-
Build a container with
|
30
|
-
|
31
|
-
```sh
|
32
|
-
$ docker build -t meetup-generator .
|
33
|
-
```
|
34
|
-
|
35
|
-
## Running
|
36
|
-
|
37
|
-
Install and run from Rubygems
|
38
|
-
|
39
|
-
```sh
|
40
|
-
$ gem install meetup-generator
|
41
|
-
$ rackup $(locate_meetup-generator)
|
42
|
-
```
|
43
|
-
|
44
|
-
Run from a git checkout
|
45
|
-
|
46
|
-
```sh
|
47
|
-
$ bin/meetup-generator.rb
|
48
|
-
```
|
49
|
-
|
50
|
-
Run the container from earlier:
|
51
|
-
|
52
|
-
```sh
|
53
|
-
$ docker run -p 4567:4567 meetup-generator
|
54
|
-
```
|
55
|
-
|
56
|
-
Install as a Solaris/Illumos service
|
57
|
-
|
58
|
-
```sh
|
59
|
-
$ pfexec svccfg import package/meetup-generator.xml
|
60
|
-
```
|
61
|
-
|
62
|
-
Contributing
|
18
|
+
Includes SMF manifest for your SunOS pleasure.
|
63
19
|
|
64
|
-
|
20
|
+
Pull requests welcome.
|
data/Rakefile
CHANGED
@@ -1,13 +1,11 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
1
|
require 'pathname'
|
4
2
|
require 'rake/testtask'
|
5
3
|
require 'rubocop/rake_task'
|
6
|
-
|
4
|
+
require_relative 'lib/build_helpers'
|
7
5
|
|
8
6
|
ROOT = Pathname(__FILE__).dirname
|
9
7
|
|
10
|
-
task default:
|
8
|
+
task default: :test
|
11
9
|
|
12
10
|
Rake::TestTask.new do |t|
|
13
11
|
t.pattern = 'spec/*_spec.rb'
|
@@ -17,3 +15,12 @@ end
|
|
17
15
|
RuboCop::RakeTask.new(:rubocop) do |t|
|
18
16
|
t.options = ['--display-cop-names']
|
19
17
|
end
|
18
|
+
|
19
|
+
desc 'build gem'
|
20
|
+
#task :build => :test do
|
21
|
+
task :build do
|
22
|
+
version = gem_version
|
23
|
+
puts "building gem version #{gem_version}"
|
24
|
+
`gem build #{ROOT + 'meetup-generator.gemspec'}`
|
25
|
+
end
|
26
|
+
|
data/bin/meetup-generator.rb
CHANGED
@@ -1,34 +1,31 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
-
# frozen_string_literal: true
|
3
2
|
|
4
|
-
|
5
|
-
|
6
|
-
require 'pathname'
|
7
|
-
require_relative '../lib/meetup_generator'
|
3
|
+
%w[sinatra/base slim pathname].each { |f| require f }
|
4
|
+
require_relative '../lib/meetup-generator'
|
8
5
|
|
9
6
|
ROOT = Pathname.new(__FILE__).dirname.parent
|
10
|
-
MG
|
7
|
+
MG = MeetupGenerator.new
|
11
8
|
|
12
|
-
# The Meetup Generator. Works is done in lib/meetup_generator.rb
|
13
|
-
#
|
14
9
|
class MeetupGeneratorWebApp < Sinatra::Base
|
15
|
-
def api_methods
|
16
|
-
%w[talk title talker role company refreshment agenda date location]
|
17
|
-
end
|
18
|
-
|
19
10
|
set :root, ROOT
|
20
11
|
|
21
12
|
get '/api/:item?/?*' do
|
22
13
|
content_type :json
|
23
|
-
|
24
|
-
|
25
|
-
|
14
|
+
if MG.respond_to?(params[:item]) && params[:item] != 'initialize'
|
15
|
+
MG.send(params[:item]).to_json
|
16
|
+
else
|
17
|
+
[404, 'not found']
|
18
|
+
end
|
26
19
|
end
|
27
20
|
|
28
21
|
get '*' do
|
29
|
-
@
|
22
|
+
@talks = MG.talks
|
23
|
+
@food = MG.refreshment
|
24
|
+
@jobs = 5.times.with_object([]) do |_i, a|
|
25
|
+
a.<< [MG.talker, '//', MG.role, '@', MG.company].join(' ')
|
26
|
+
end
|
30
27
|
slim :default
|
31
28
|
end
|
32
29
|
|
33
|
-
run! if
|
30
|
+
run! if __FILE__ == $0
|
34
31
|
end
|
data/config.ru
CHANGED
data/lib/all_the_things.yaml
CHANGED
@@ -2,16 +2,13 @@
|
|
2
2
|
|
3
3
|
# These can have -ing or -ed appended
|
4
4
|
#
|
5
|
-
verb:
|
5
|
+
:verb:
|
6
6
|
- Aggregat
|
7
|
-
- Ambassador
|
8
7
|
- API-
|
9
|
-
- Audit
|
10
8
|
- Automat
|
11
9
|
- Autoscal
|
12
10
|
- AWS-
|
13
11
|
- Brogramm
|
14
|
-
- Buildah
|
15
12
|
- Cheff
|
16
13
|
- Cloudstack
|
17
14
|
- Cod
|
@@ -20,9 +17,6 @@ verb:
|
|
20
17
|
- Continuously Deliver
|
21
18
|
- Continuously Deploy
|
22
19
|
- Containeriz
|
23
|
-
- CRI-O
|
24
|
-
- Crictl
|
25
|
-
- Cryptojack
|
26
20
|
- De-Risk
|
27
21
|
- DDOS
|
28
22
|
- Detun
|
@@ -37,7 +31,6 @@ verb:
|
|
37
31
|
- Enabl
|
38
32
|
- Fork
|
39
33
|
- Gamify
|
40
|
-
- Generat
|
41
34
|
- Graph
|
42
35
|
- Hack
|
43
36
|
- Hand Craft
|
@@ -45,10 +38,8 @@ verb:
|
|
45
38
|
- Hyperconverg
|
46
39
|
- Incubat
|
47
40
|
- Leverag
|
48
|
-
- Macroservic
|
49
41
|
- Measur
|
50
42
|
- Megashard
|
51
|
-
- Mesh
|
52
43
|
- Microservic
|
53
44
|
- Monitor
|
54
45
|
- Obfuscat
|
@@ -57,7 +48,6 @@ verb:
|
|
57
48
|
- Orchestrat
|
58
49
|
- Pipelin
|
59
50
|
- Planetscal
|
60
|
-
- Podman
|
61
51
|
- Puppetiz
|
62
52
|
- Re-cultur
|
63
53
|
- Recod
|
@@ -73,7 +63,6 @@ verb:
|
|
73
63
|
- Terraform
|
74
64
|
- Transform
|
75
65
|
- Transpil
|
76
|
-
- Trac
|
77
66
|
- Trend
|
78
67
|
- Tun
|
79
68
|
- Upscal
|
@@ -82,149 +71,108 @@ verb:
|
|
82
71
|
- Virtualiz
|
83
72
|
- Webscal
|
84
73
|
|
85
|
-
tech:
|
86
|
-
- AI
|
74
|
+
:tech:
|
87
75
|
- Akka
|
88
76
|
- Ambassador Containers
|
89
77
|
- angular.js
|
90
78
|
- Ansible
|
91
79
|
- API Gateway
|
92
80
|
- APIs
|
93
|
-
- ArangoDB
|
94
|
-
- Argo
|
95
81
|
- Athena
|
96
82
|
- AWS
|
97
83
|
- bacon.js
|
98
84
|
- Berkshelf
|
99
|
-
- BigChain
|
100
|
-
- BigQuery
|
101
85
|
- BigTable
|
102
86
|
- Blockbridge
|
103
87
|
- Boot2Docker
|
104
88
|
- Bootstrap
|
105
89
|
- Borg
|
106
|
-
- Bosh
|
107
90
|
- Boto
|
108
|
-
- Boundary
|
109
91
|
- Bower
|
110
|
-
- Brigade
|
111
|
-
- Buildkite
|
112
92
|
- Burp
|
93
|
+
- Burpsuite
|
113
94
|
- Burp Clickbandit
|
114
95
|
- Burp Infiltrator
|
115
96
|
- Burp Intruder
|
116
97
|
- Burp Scanner
|
117
|
-
- Burpsuite
|
118
|
-
- cAdvisor
|
119
|
-
- Calico
|
120
98
|
- Capistrano
|
121
99
|
- Cassandra
|
122
100
|
- CDN
|
123
|
-
- Ceph
|
124
|
-
- Cernan
|
125
|
-
- CFEngine
|
126
101
|
- cgroups
|
127
|
-
-
|
128
|
-
- Chaos Toolkit
|
102
|
+
- CFEngine
|
129
103
|
- Chef
|
130
104
|
- Chef/Puppet
|
131
105
|
- CI/CD
|
132
|
-
- Cilium
|
133
106
|
- CircleCI
|
134
107
|
- Clojure
|
135
|
-
- Cloud9
|
136
|
-
- CloudFormation
|
137
108
|
- Cloud Foundry
|
109
|
+
- CloudFormation
|
138
110
|
- Cloudfront
|
139
|
-
- CloudSearch
|
140
111
|
- Cloudstack
|
141
112
|
- CloudTrail
|
142
113
|
- Clusterpoint
|
143
114
|
- CodeBuild
|
144
115
|
- CodeCommit
|
145
|
-
- CodeDeploy
|
146
116
|
- CodePipeline
|
147
117
|
- CodeStar
|
148
118
|
- Coffeescript
|
149
119
|
- Cognito
|
150
120
|
- Coherence
|
151
121
|
- Consul
|
152
|
-
- Containerd
|
153
|
-
- Contour
|
154
|
-
- Convox
|
155
|
-
- CoreDNS
|
156
|
-
- CoreOS
|
157
|
-
- Couchbase
|
158
122
|
- CouchDB
|
159
|
-
-
|
160
|
-
-
|
123
|
+
- Couchbase
|
124
|
+
- CoreOS
|
161
125
|
- Crystal
|
162
126
|
- Cucumber
|
163
127
|
- "curl | sudo bash"
|
164
128
|
- DalmatinerDB
|
165
129
|
- Dapper
|
166
130
|
- Dart
|
167
|
-
- Data Lake
|
168
131
|
- Dataloop
|
169
|
-
- Data Pond
|
170
|
-
- Deep Learning
|
171
132
|
- Deis
|
172
133
|
- Device Farm
|
173
|
-
- Distributed Tracing
|
174
134
|
- Django
|
175
135
|
- Docker
|
176
136
|
- Docker Compose
|
177
137
|
- Dockersh
|
178
138
|
- Dokku
|
179
139
|
- Doozer
|
180
|
-
- Draft
|
181
140
|
- Dropwizard
|
182
|
-
- Druid
|
183
|
-
- Dubbo
|
184
141
|
- DynamoDB
|
185
|
-
- Dynatrace
|
186
142
|
- EC2
|
187
143
|
- ECS
|
188
|
-
- "Edge Rabbit"
|
189
144
|
- EFS
|
190
|
-
-
|
145
|
+
- "Edge Rabbit"
|
191
146
|
- "Elastic Beanstalk"
|
147
|
+
- Elasticache
|
192
148
|
- Elasticsearch
|
193
149
|
- Elixir
|
194
|
-
- ELK
|
195
150
|
- ember.js
|
196
151
|
- EMR
|
197
|
-
- Envoy
|
198
|
-
- Erlang
|
199
152
|
- etcd
|
153
|
+
- ELK
|
154
|
+
- Erlang
|
200
155
|
- Express
|
201
156
|
- Fabric
|
202
157
|
- Fabric8
|
203
|
-
- Falco
|
204
158
|
- Filebeat
|
205
|
-
- Finagle
|
206
|
-
- Firebase
|
207
159
|
- Flabbergast
|
208
160
|
- Flapjack
|
209
161
|
- Fleet
|
210
|
-
- Flink
|
211
162
|
- Flocker
|
212
|
-
- fluentd
|
213
163
|
- Flume
|
164
|
+
- fluentd
|
214
165
|
- Flynn.io
|
215
166
|
- Fog
|
216
167
|
- Foodcritic
|
217
168
|
- FoundationDB
|
218
169
|
- functional programming
|
219
|
-
- Galactic Fog
|
220
170
|
- Ganglia
|
221
171
|
- GCE
|
222
|
-
- genetic programming
|
223
172
|
- Git
|
224
173
|
- Gitflow
|
225
174
|
- Github
|
226
175
|
- Glacier
|
227
|
-
- Gloo
|
228
176
|
- Glue
|
229
177
|
- Glueflakes
|
230
178
|
- Go
|
@@ -235,267 +183,158 @@ tech:
|
|
235
183
|
- Graphene
|
236
184
|
- Graphite
|
237
185
|
- Graylog2
|
238
|
-
- Greengrass
|
239
186
|
- Groovy
|
240
|
-
-
|
187
|
+
- GRPC
|
241
188
|
- Grunt
|
242
189
|
- Gulp
|
243
190
|
- Habitat
|
244
191
|
- Hadoop
|
245
|
-
- Harbor
|
246
|
-
- Haskell
|
247
192
|
- Hazelcast
|
193
|
+
- Haskell
|
248
194
|
- HBase
|
249
195
|
- Heapster
|
250
196
|
- Heartbeat
|
251
197
|
- Helm
|
252
198
|
- Heroku
|
253
|
-
- Heron
|
254
199
|
- Hubot
|
255
200
|
- hyperconvergence
|
256
|
-
- Hystrix
|
257
201
|
- IAM
|
258
202
|
- Immutable Infrastructure
|
259
|
-
- Impala
|
260
203
|
- IndexedDB
|
261
|
-
- Infinispan
|
262
204
|
- InfluxDB
|
263
205
|
- IntelliJ
|
264
|
-
- IO
|
265
206
|
- io.js
|
266
|
-
-
|
267
|
-
- Istio
|
268
|
-
- Jaeger
|
207
|
+
- IO
|
269
208
|
- Jekyll
|
270
209
|
- Jenkins
|
271
|
-
- JHipster
|
272
210
|
- JRuby
|
273
211
|
- JSON
|
274
212
|
- Juju
|
275
|
-
- k3s
|
276
213
|
- Kafka
|
277
214
|
- KairosDB
|
278
215
|
- Kanban
|
279
|
-
- Kaniko
|
280
|
-
- Kiali
|
281
216
|
- Kibana
|
282
|
-
- Kind
|
283
217
|
- Kinesis
|
284
218
|
- kitchen-docker
|
285
219
|
- knife Plugins
|
286
|
-
- Knox
|
287
|
-
- Kompose
|
288
|
-
- Kong
|
289
|
-
- Kops
|
290
|
-
- Kraken
|
291
|
-
- KrakenD
|
292
220
|
- Kube
|
293
|
-
- Kube-Bench
|
294
|
-
- KubeEdge
|
295
221
|
- Kubeform
|
296
|
-
- Kube Hunter
|
297
|
-
- Kubeless
|
298
222
|
- Kubelet
|
299
|
-
- Kubenet
|
300
|
-
- KubeOne
|
301
|
-
- Kubermatic
|
302
223
|
- Kubernetes
|
303
|
-
- kube-spawn
|
304
224
|
- KubeSpray
|
305
|
-
- Kubic
|
306
|
-
- Kubicorn
|
307
|
-
- kublr
|
308
|
-
- Kudu
|
309
|
-
- Kyma
|
310
225
|
- Lambda
|
311
226
|
- Lex
|
312
|
-
- Lightbend
|
313
227
|
- Lightsail
|
314
|
-
- LightStep
|
315
|
-
- Lighttpd
|
316
|
-
- Linkerd
|
317
228
|
- Linux
|
318
229
|
- Lisp
|
319
|
-
- Litmus
|
320
230
|
- Logspout
|
321
231
|
- Logstash
|
322
|
-
- LunchBadger
|
323
232
|
- LXC
|
324
233
|
- LXD
|
325
234
|
- MAAS
|
326
235
|
- Machine Learning
|
327
|
-
- macroservices
|
328
236
|
- ManageIQ
|
329
237
|
- Marathon
|
330
238
|
- Marathon-Consul
|
331
|
-
- MariaDB
|
332
239
|
- MEAN
|
333
240
|
- Memchached
|
334
|
-
- MemSQL
|
335
|
-
- Mesh
|
336
241
|
- Mesos
|
337
242
|
- Mesos-Consul
|
338
243
|
- Mesosphere
|
339
244
|
- Metricbeat
|
340
|
-
- Microliths
|
341
|
-
- Micrometer
|
342
245
|
- microservices
|
343
246
|
- Minikube
|
344
247
|
- monads
|
345
248
|
- MongoDB
|
346
|
-
- monorepo
|
347
|
-
- MooseFS
|
348
249
|
- Mountebank
|
349
250
|
- Mutable Infrastructure
|
350
251
|
- Nancy
|
351
|
-
- nanoservices
|
352
252
|
- Nashorn
|
353
253
|
- Neo4J
|
354
|
-
- Neptune
|
355
|
-
- NewRelic
|
356
254
|
- nginx
|
357
|
-
- NiFi
|
358
|
-
- Nix
|
359
|
-
- NixOS
|
360
255
|
- node.js
|
361
256
|
- Nomad
|
362
|
-
-
|
257
|
+
- npm
|
258
|
+
- NewRelic
|
363
259
|
- NoOps
|
364
260
|
- NoSQL
|
365
|
-
- npm
|
366
|
-
- Nuclio
|
367
261
|
- NuGet
|
368
|
-
- NuoDB
|
369
262
|
- OCaml
|
370
|
-
- Okta
|
371
|
-
- OpenFaaS
|
372
263
|
- OpenShift
|
373
|
-
- OpenTracing
|
374
|
-
- OpenWhisk
|
375
264
|
- OpsWorks
|
376
|
-
- OrientDB
|
377
|
-
- PaaSta
|
378
265
|
- Packer
|
379
266
|
- Packetbeat
|
380
|
-
- Papertrail
|
381
267
|
- Perl
|
382
268
|
- Phoenix
|
383
|
-
- Pilosa
|
384
|
-
- Portus
|
385
|
-
- Powerful Seal
|
386
269
|
- Project Atomic
|
387
270
|
- Prometheus
|
388
271
|
- Protobuf
|
389
|
-
- Proxygen
|
390
|
-
- Pub/Sub
|
391
|
-
- Pulumi
|
392
272
|
- Puppet
|
393
273
|
- Puppet/Chef
|
394
274
|
- Python
|
395
|
-
- Quay
|
396
|
-
- Qubole
|
397
275
|
- R
|
398
276
|
- RabbitMQ
|
399
277
|
- Racket
|
400
|
-
- Raft
|
401
278
|
- Rancher
|
402
279
|
- RancherOS
|
403
280
|
- RDS
|
404
281
|
- ReactJS
|
405
282
|
- Redis
|
406
283
|
- Redshift
|
407
|
-
- Replex
|
408
284
|
- Restify
|
409
285
|
- RethinkDB
|
410
286
|
- Riak
|
411
287
|
- Rightscale
|
412
|
-
- rkt
|
413
288
|
- Rocket
|
414
|
-
-
|
415
|
-
- Rook
|
289
|
+
- rkt
|
416
290
|
- RSpec
|
417
291
|
- Ruby
|
418
|
-
- Runscope
|
419
292
|
- Rust
|
420
293
|
- S3
|
421
|
-
- SageMaker
|
422
294
|
- Salt
|
423
295
|
- SaltStack
|
424
296
|
- Scala
|
425
|
-
- Scalingo
|
426
297
|
- Scalr
|
427
298
|
- Scheme
|
428
299
|
- Scrum
|
429
|
-
- Scylla
|
430
300
|
- SDN
|
431
301
|
- Sensei
|
432
302
|
- Sensu
|
433
303
|
- Serf
|
434
304
|
- Serverless
|
435
|
-
- Service Mesh
|
436
305
|
- SES
|
437
306
|
- Sidecar Containers
|
438
|
-
- sidecars
|
439
307
|
- Sidekiq
|
440
308
|
- SignalFX
|
441
309
|
- Sinatra
|
442
|
-
- Skaffold
|
443
|
-
- Skipper
|
444
310
|
- SmartOS
|
445
|
-
- SmartStack
|
446
|
-
- SNI
|
447
|
-
- Snowball
|
448
311
|
- SNS
|
449
312
|
- Solr
|
450
|
-
- SPIFFE
|
451
|
-
- Spinnaker
|
452
|
-
- Spire
|
453
313
|
- Spread
|
454
314
|
- SQS
|
455
|
-
- Squash
|
456
|
-
- StackStorm
|
457
315
|
- statsd
|
458
|
-
- 'Step Functions'
|
459
|
-
- Storage Gateway
|
460
316
|
- Sublime Text
|
461
317
|
- Supergiant
|
462
318
|
- Swarm
|
463
|
-
- Symplegma
|
464
319
|
- Sysdig
|
465
320
|
- systemd
|
466
321
|
- Telegraf
|
467
|
-
- Teleport
|
468
|
-
- Telepresence
|
469
322
|
- Terraform
|
470
323
|
- Test Kitchen
|
471
|
-
- Thanos
|
472
324
|
- Thrift
|
473
325
|
- TICK stack
|
474
|
-
- TiDB
|
475
|
-
- TiKV
|
476
326
|
- Timeseries Database
|
477
327
|
- TokyoTyrant
|
478
328
|
- Toxiproxy
|
479
|
-
- Traefik
|
480
329
|
- Travis CI
|
481
|
-
- Trickster
|
482
330
|
- Triton
|
483
|
-
- Trufflehog
|
484
|
-
- Tsuru
|
485
|
-
- TUF
|
486
|
-
- Tyk
|
487
331
|
- Ubernetes
|
488
332
|
- Ubuntu
|
489
333
|
- unikernel
|
490
334
|
- Vagrant
|
491
|
-
- Vault
|
492
335
|
- Velocity
|
493
|
-
- Vitess
|
494
|
-
- Wangle
|
495
336
|
- Wavefront
|
496
337
|
- Weave
|
497
|
-
- WildFly
|
498
|
-
- X-Ray
|
499
338
|
- YAML
|
500
339
|
- YAML front-matter
|
501
340
|
- Yarn
|
@@ -503,18 +342,12 @@ tech:
|
|
503
342
|
- Zappa
|
504
343
|
- ZeroMQ
|
505
344
|
- ZFS
|
506
|
-
- Zipkin
|
507
345
|
- Zookeeper
|
508
|
-
- Zuul
|
509
346
|
|
510
|
-
service:
|
511
|
-
- AIOps
|
512
|
-
- AllOps
|
347
|
+
:service:
|
513
348
|
- ChatOps
|
514
349
|
- Cloud
|
515
|
-
- ComplianceOps
|
516
350
|
- Containers
|
517
|
-
- DataOps
|
518
351
|
- DevOps
|
519
352
|
- Downtime
|
520
353
|
- GitOps
|
@@ -527,16 +360,10 @@ service:
|
|
527
360
|
- Private Cloud
|
528
361
|
- Services
|
529
362
|
- Slack Integration
|
530
|
-
- SlackOps
|
531
|
-
- SLA
|
532
|
-
- SLI
|
533
|
-
- SLO
|
534
363
|
- SRE
|
535
|
-
- TestOps
|
536
|
-
- Waypoint
|
537
364
|
- WebOps
|
538
365
|
|
539
|
-
extreme:
|
366
|
+
:extreme:
|
540
367
|
- Annihilate
|
541
368
|
- Autoscale
|
542
369
|
- Chaos Monkey
|
@@ -546,7 +373,6 @@ extreme:
|
|
546
373
|
- Dockerize
|
547
374
|
- Hybridize
|
548
375
|
- Improve
|
549
|
-
- Internet-Scale
|
550
376
|
- Limit
|
551
377
|
- Maximize
|
552
378
|
- Minimize
|
@@ -557,15 +383,13 @@ extreme:
|
|
557
383
|
- Webscale
|
558
384
|
- Wrangle
|
559
385
|
|
560
|
-
quantifier:
|
386
|
+
:quantifier:
|
561
387
|
- Agility
|
562
388
|
- Antipatterns
|
563
|
-
- audited break-glass
|
564
389
|
- AWS bill
|
565
390
|
- Burn Rate
|
566
391
|
- Compliance
|
567
392
|
- Container Antipatterns
|
568
|
-
- Customer Empathy
|
569
393
|
- Density
|
570
394
|
- Deployables
|
571
395
|
- DevOps
|
@@ -577,27 +401,21 @@ quantifier:
|
|
577
401
|
- Guerilla User Testing
|
578
402
|
- Hipster Batch Paradigm
|
579
403
|
- Leanness
|
580
|
-
- Incident Response
|
581
404
|
- Innovation Initiatives
|
582
|
-
- LinkedIn Profile
|
583
|
-
- Monitoring
|
584
405
|
- Multiregion Dataflows
|
585
406
|
- MVP
|
586
|
-
- Observability
|
587
407
|
- Patterns
|
588
408
|
- Polyglot Persistence
|
589
409
|
- ROI
|
590
410
|
- Security Sandwich
|
591
411
|
- Seed Capital
|
592
412
|
- Synergy
|
593
|
-
- TCO
|
594
413
|
- Threat Model
|
595
414
|
- Uptime
|
596
|
-
- Value Stream Network
|
597
415
|
- VC Appeal
|
598
416
|
- Velocity
|
599
417
|
|
600
|
-
time:
|
418
|
+
:time:
|
601
419
|
- Attempts
|
602
420
|
- Days
|
603
421
|
- Hours
|
@@ -605,9 +423,8 @@ time:
|
|
605
423
|
- Seconds
|
606
424
|
- Weeks
|
607
425
|
|
608
|
-
food_style:
|
426
|
+
:food_style:
|
609
427
|
- artisan
|
610
|
-
- artisanal
|
611
428
|
- Asian
|
612
429
|
- barrista
|
613
430
|
- biodynamic
|
@@ -618,19 +435,15 @@ food_style:
|
|
618
435
|
- fairtrade
|
619
436
|
- "farmers' market"
|
620
437
|
- fusion
|
621
|
-
- gourmet
|
622
|
-
- guest-curated
|
623
438
|
- heirloom
|
624
439
|
- heritage
|
625
440
|
- keg-aged
|
626
441
|
- Lebanese
|
627
442
|
- microbrewery
|
628
443
|
- Scandinavian
|
629
|
-
- seagan
|
630
444
|
- seasonal
|
631
|
-
- vegan
|
632
445
|
|
633
|
-
food:
|
446
|
+
:food:
|
634
447
|
- ales
|
635
448
|
- beard yeast
|
636
449
|
- beers
|
@@ -641,7 +454,6 @@ food:
|
|
641
454
|
- ciders
|
642
455
|
- chutneys
|
643
456
|
- coffee
|
644
|
-
- cronuts
|
645
457
|
- falafel
|
646
458
|
- gins
|
647
459
|
- grazing boards
|
@@ -651,14 +463,10 @@ food:
|
|
651
463
|
- micro-pizza
|
652
464
|
- nonsense
|
653
465
|
- olives
|
654
|
-
- pickles
|
655
466
|
- pizza
|
656
467
|
- quinoa
|
657
|
-
- smoothie bowls
|
658
|
-
- street food
|
659
|
-
- tapas
|
660
468
|
|
661
|
-
skill_level:
|
469
|
+
:skill_level:
|
662
470
|
- Advanced User
|
663
471
|
- Beginner
|
664
472
|
- CTO
|
@@ -669,15 +477,14 @@ skill_level:
|
|
669
477
|
- SRE
|
670
478
|
- Webscalr
|
671
479
|
- Wizard
|
672
|
-
- Zero Touch
|
673
480
|
|
674
|
-
is_not:
|
481
|
+
:is_not:
|
675
482
|
- ""
|
676
483
|
- not
|
677
484
|
|
678
|
-
company:
|
679
|
-
- AWS
|
485
|
+
:company:
|
680
486
|
- Amazon
|
487
|
+
- AWS
|
681
488
|
- Etsy
|
682
489
|
- Everyone Else
|
683
490
|
- Facebook
|
@@ -691,19 +498,14 @@ company:
|
|
691
498
|
- Twitter
|
692
499
|
- Uber
|
693
500
|
|
694
|
-
driver:
|
695
|
-
- "CV++"
|
696
|
-
- "Kelsey-Hightower's-Twitter"
|
697
|
-
- "Someone-Else's-Blog"
|
698
|
-
- "Sticker"
|
699
|
-
- "Whatever's-New"
|
501
|
+
:driver:
|
700
502
|
- Anger
|
701
503
|
- Asshole
|
702
504
|
- Big Data
|
703
505
|
- Blog
|
704
506
|
- Bullshit
|
705
|
-
- CV
|
706
507
|
- Copying-Google
|
508
|
+
- CV
|
707
509
|
- Data
|
708
510
|
- Datensparsamkeit
|
709
511
|
- FOMO
|
@@ -713,271 +515,163 @@ driver:
|
|
713
515
|
- Hubris
|
714
516
|
- I-Ching
|
715
517
|
- I-Know-Best
|
716
|
-
- IPO
|
717
518
|
- Insecurity
|
519
|
+
- IPO
|
718
520
|
- Job-Security
|
719
|
-
-
|
521
|
+
- "Kelsey-Hightower's-Twitter"
|
720
522
|
- Loudest-Person-in-the-Room
|
721
523
|
- Meetup-Generator
|
722
524
|
- Metric
|
723
|
-
- NIH
|
724
525
|
- Naivety
|
526
|
+
- NIH
|
725
527
|
- Overconfidence
|
726
528
|
- Paranoia
|
727
529
|
- Reddit
|
728
530
|
- Reinvention
|
729
531
|
- Resumé
|
532
|
+
- "Someone-Else's-Blog"
|
730
533
|
- Stack Overflow
|
534
|
+
- "Sticker"
|
731
535
|
- Urgency
|
536
|
+
- "Whatever's-New"
|
732
537
|
- What-Everyone-Else-is-Doing
|
733
|
-
- What-We-Think-Everyone-Else-is-Doing
|
734
538
|
- Wheel-Reinvention
|
735
539
|
|
736
|
-
adjective:
|
737
|
-
- "12 Factor"
|
738
|
-
- Agile
|
540
|
+
:adjective:
|
739
541
|
- Artisinal
|
740
|
-
- Awesome
|
741
542
|
- Batteries-Included
|
742
543
|
- Beautiful
|
743
|
-
- Blameless
|
744
|
-
- Chaotic
|
745
544
|
- Cloud-Agnostic
|
746
|
-
-
|
545
|
+
- Craft
|
747
546
|
- Community-Driven
|
748
547
|
- Community-Focused
|
749
|
-
- Composable
|
750
|
-
- Container-Native
|
751
|
-
- Container-Ready
|
752
|
-
- Continuous
|
753
|
-
- Craft
|
754
|
-
- De-Siloed
|
755
|
-
- Declarative
|
756
|
-
- Decoupled
|
757
|
-
- Developer-Driven
|
758
|
-
- Developer-Friendly
|
759
548
|
- End-to-End
|
760
|
-
- Entity-Centric
|
761
|
-
- Full Spectrum
|
762
|
-
- Full Stack
|
763
|
-
- Functional
|
764
|
-
- Game-Changing
|
765
549
|
- Hand-Crafted
|
766
|
-
- Humane
|
767
|
-
- Hyperscale
|
768
550
|
- Immutable
|
769
|
-
- Inclusive
|
770
|
-
- Insightful
|
771
|
-
- Integrated
|
772
|
-
- Lean
|
773
|
-
- Macro-Serviced
|
774
|
-
- Micro-Serviced
|
775
|
-
- Multi-Dimensional
|
776
|
-
- Nano-Serviced
|
777
|
-
- Observable
|
778
551
|
- "On-Premise"
|
779
552
|
- Opinionated
|
780
|
-
-
|
553
|
+
- Micro-Serviced
|
554
|
+
- Nano-Serviced
|
781
555
|
- Public/Private
|
782
|
-
- Scalable
|
783
556
|
- Self-Service
|
557
|
+
- Service-Oriented
|
784
558
|
- Serverful
|
785
559
|
- Serverless
|
786
|
-
- Service-Oriented
|
787
|
-
- Siloed
|
788
|
-
- Soup-to-Nuts
|
789
560
|
- Stateful
|
790
561
|
- Stateless
|
791
|
-
-
|
792
|
-
- Transformative
|
793
|
-
- Webscale
|
794
|
-
- Zero Touch
|
562
|
+
- Soup-to-Nuts
|
795
563
|
|
796
|
-
panacea:
|
797
|
-
- AI
|
798
|
-
- AIOps
|
799
|
-
- Best Practice
|
800
|
-
- CNCF
|
564
|
+
:panacea:
|
801
565
|
- Containers
|
802
|
-
- Deep Learning
|
803
566
|
- DevOps
|
804
567
|
- DevSecOps
|
805
568
|
- Docker
|
806
569
|
- Golang
|
807
570
|
- "Google SREs"
|
808
571
|
- Kubernetes
|
809
|
-
- Machine Learning
|
810
|
-
- Microservices
|
811
|
-
- SREs
|
812
572
|
- Serverless
|
813
|
-
-
|
814
|
-
-
|
573
|
+
- SREs
|
574
|
+
- The Blockchain
|
815
575
|
- "The Next Version"
|
816
576
|
- Unikernels
|
817
577
|
|
818
|
-
|
819
|
-
- "
|
820
|
-
- "C++ 11"
|
821
|
-
- Clojure
|
822
|
-
- Clojurescript
|
823
|
-
- Coffeescript
|
824
|
-
- Crystal
|
825
|
-
- Elixir
|
826
|
-
- Elm
|
827
|
-
- Erlang
|
828
|
-
- F#
|
829
|
-
- Go
|
830
|
-
- Groovy
|
831
|
-
- Haskell
|
832
|
-
- Julia
|
833
|
-
- Kotlin
|
834
|
-
- Nim
|
835
|
-
- OCaml
|
836
|
-
- "Perl 6"
|
837
|
-
- Pony
|
838
|
-
- Powershell
|
839
|
-
- "Python 3"
|
840
|
-
- R
|
841
|
-
- Racket
|
842
|
-
- Ruby
|
843
|
-
- Rust
|
844
|
-
- Scala
|
845
|
-
- Typescript
|
846
|
-
|
847
|
-
something_ops:
|
848
|
-
- AI
|
849
|
-
- Biz
|
850
|
-
- Chat
|
851
|
-
- Dev
|
852
|
-
- Git
|
853
|
-
- ML
|
854
|
-
- 'No'
|
855
|
-
- Sec
|
856
|
-
- Slack
|
857
|
-
- Test
|
858
|
-
|
859
|
-
template:
|
860
|
-
- "%RAND10% %tech% Secrets %company% Don't Want You to Know"
|
861
|
-
- "%RAND10% Lessons from %verb%ing %verb%ed %tech%"
|
862
|
-
- "%RAND10% Things Only a DevOps Understands"
|
863
|
-
- "%RAND20% Things You Should %is_not% be Doing with %tech% to Enable %service% as a Service"
|
864
|
-
- "%WORD%Ops"
|
865
|
-
- "%adjective% %tech% %adjective% Time-series Micro-Services for Dummies"
|
866
|
-
- "%adjective% %tech% at Scale"
|
867
|
-
- "%adjective% %tech% for Fun and Profit"
|
868
|
-
- "%driver% Driven Development 101"
|
869
|
-
- "%panacea% Will Fix Everything"
|
870
|
-
- "%quantifier% as Code: Ready for the Revolution?"
|
871
|
-
- "%tech% Necromancy for Full-Stack Nirvana"
|
872
|
-
- "%tech% for %tech% Users"
|
873
|
-
- "%tech% like Boba Fett"
|
874
|
-
- "%tech% or Die. We're Ready, Are You?"
|
875
|
-
- "%tech% to %adjective% %service%: Living the Dream"
|
876
|
-
- "%tech%, %tech% and %tech% Walk into a Bar"
|
877
|
-
- "%verb%ed %tech% 15-minute Fishbowl Session"
|
578
|
+
:template:
|
579
|
+
- "Enabling No-Ops with Virtual %tech%"
|
878
580
|
- "%verb%ed %tech% == #Awesomesauce"
|
879
|
-
- "%verb%ing %tech% Makes for Awesome %driver%-driven Infrastructure"
|
880
|
-
- "%verb%ing %tech% with %tech% for %skill_level%s"
|
881
581
|
- "%verb%ing All of the Things with %tech%"
|
882
|
-
- "%
|
883
|
-
- "%
|
884
|
-
- "
|
885
|
-
- "
|
886
|
-
- "
|
887
|
-
- "
|
888
|
-
- "
|
889
|
-
- "
|
890
|
-
- "
|
891
|
-
- "
|
582
|
+
- "I Don't Know Much About %tech% or %tech% But I'm Going to Talk About Them Anyway"
|
583
|
+
- "How %tech% Taught Us What '%verb%ing' Really Means"
|
584
|
+
- "How to %extreme% Your %quantifier% by %is_not% %verb%ing %tech%"
|
585
|
+
- "%tech% for %tech% users, and How to Avoid %verb%ing Your %tech% Layer"
|
586
|
+
- "%verb%ing %tech% with %tech% for %skill_level%s"
|
587
|
+
- "Why %tech% is %is_not% the new %tech%"
|
588
|
+
- "RAND10 Lessons from %verb%ing %verb%ed %tech%"
|
589
|
+
- "How we %verb%ed %tech% with %tech% in RAND100 %time%"
|
590
|
+
- "RAND20 Things You Should %is_not% be Doing with %tech% to Enable %service% as a Service"
|
591
|
+
- "From %tech% n00b to %tech% %verb%ing Jedi in RAND5 %time%"
|
592
|
+
- "Pimp My %tech%. %tech% is the Answer, What's the Question?"
|
593
|
+
- "How We %verb%ed RAND40% of our Infrastructure Overnight with %tech%"
|
892
594
|
- "BANG! And the %tech% is Gone! The Future is %verb%ed %tech%"
|
893
|
-
- "
|
894
|
-
- "
|
895
|
-
- "
|
896
|
-
- "
|
897
|
-
- "
|
898
|
-
- "Culture: Don't Do it If it's Hard or Boring"
|
899
|
-
- "DevOps and Objet Trouve: If it's Good Enough to be on Github, it's Good Enough for Production"
|
900
|
-
- "Dockerizing Dockerized Docker with Docker for Docker Users"
|
901
|
-
- "EC2 at Scale: %RAND40% instances and Counting!"
|
902
|
-
- "Enabling %adjective% %FNOPS% with Virtual %tech%"
|
903
|
-
- "Enabling No-Ops with Virtual %tech%"
|
904
|
-
- "Everyone Else Does Everything Wrong"
|
905
|
-
- "Everything I Know About %tech% I Learned from Star Wars"
|
595
|
+
- "How We Use %tech% to %extreme% the Internet of Things"
|
596
|
+
- "We %verb%ed our %tech%. Mind = Blown"
|
597
|
+
- "%tech% or Die. We're Ready, Are You?"
|
598
|
+
- "When %tech% is not Good Enough, Reach for the %tech%"
|
599
|
+
- "%verb%ed %tech% 15-minute Fishbowl Session"
|
906
600
|
- "Everything You Think You Know About %tech% is Wrong"
|
907
|
-
- "
|
908
|
-
- "
|
909
|
-
- "
|
910
|
-
- "
|
911
|
-
- "
|
912
|
-
- "How This Thing We Built Would Work if it Worked"
|
913
|
-
- "How We %verb%ed %RAND40%% of our Infrastructure Overnight with %tech%"
|
601
|
+
- "While You Learn, I Earn: Making Shit Up and Blogging it as Fact"
|
602
|
+
- "%quantifier% as Code: Ready for the Revolution?"
|
603
|
+
- "A Complicated Way to do Something Unnecessary Which Does Not Work"
|
604
|
+
- "DevOps Culture: Don't Do it If it's Hard or Boring"
|
605
|
+
- "Something People Have Done Since 198RAND9, but with a New Name"
|
914
606
|
- "How We %verb%ed Our %service% with %tech% FTW!"
|
607
|
+
- "Still Using %tech%? Allow Me to Enlighten You"
|
608
|
+
- "I First Heard about %tech% RAND5 Days Ago, and Now I'm an Expert"
|
609
|
+
- "Fifteen Minutes of Ignorant Hubris"
|
610
|
+
- "Buzzword Blizzard: %tech% + %tech% + %tech% + %tech%"
|
915
611
|
- "How We Do What %company% Do, but on a Tiny Scale, and Wrong"
|
916
|
-
- "
|
612
|
+
- "EC2 at Scale: RAND40 instances and Counting!"
|
613
|
+
- "DevOps and Objet Trouve: If it's Good Enough to be on Github, it's Good Enough for Production"
|
614
|
+
- "%driver% Driven Development 101"
|
615
|
+
- "I'm All About That Rate: How to Screw Your Client By Building Shit They Don't Need"
|
616
|
+
- "Ticking the Boxes: You Can't Automate All of the Things if You Aren't Using All of the Things"
|
917
617
|
- "How We Moved from Puppet to Chef to Ansible to Salt to CFEngine then Back to Ansible then Chef Again then Briefly Itamae then Packered AMIs then Masterless Puppet then Chef then a Different Chef Setup then Puppet"
|
918
|
-
- "
|
919
|
-
- "How a %tech%/%tech% Mash-Up Shaved
|
920
|
-
- "How
|
921
|
-
- "
|
922
|
-
- "
|
923
|
-
- "
|
924
|
-
- "
|
925
|
-
- "
|
926
|
-
- "
|
927
|
-
- "
|
928
|
-
- "
|
929
|
-
- "
|
930
|
-
- "
|
618
|
+
- "%verb%ing %tech% Makes for Awesome %driver%-driven Infrastructure"
|
619
|
+
- "How a %tech%/%tech% Mash-Up Shaved RAND50 Seconds off Our Deployment Times"
|
620
|
+
- "Containers: or How I Swapped a Simple Packaging Problem for a Complex Orchestration Problem"
|
621
|
+
- "Look at me Mummy, aren't I Clever?"
|
622
|
+
- "%tech% Necromancy for Full-Stack Nirvana"
|
623
|
+
- "Wow Very %tech%. So %tech%. Such %verb%ed"
|
624
|
+
- "I've Got Stickers!"
|
625
|
+
- "How We Made a Really Bad Version of Something Which Already Existed"
|
626
|
+
- "We Started a Shitty Company"
|
627
|
+
- "We Have a DevOps Consultancy and We Don't Know What We're Doing"
|
628
|
+
- "Dockerizing Dockerized Docker with Docker for Docker Users"
|
629
|
+
- "DevOps Tough Guy Bitches about %tech% and Expects You to Admire Him"
|
630
|
+
- "How we Spent RAND8 Months Building Our Own Version of a Service We Could Buy for $6/month"
|
631
|
+
- "How we Spent RAND3 Years Building Our Own Version of a Service We Could Buy for $6/month"
|
632
|
+
- "Thinly Disguised Sales Pitch"
|
633
|
+
- "Roll Your Own Monitoring with %tech%, %tech%, %tech%, %tech%, %tech%, %tech%, %tech%, %tech% and %tech%"
|
634
|
+
- "How This Thing We Built Would Work if it Worked"
|
931
635
|
- "If Heath Robinson Deployed an apt Package"
|
932
|
-
- "
|
636
|
+
- "We Put %tech% in our %tech%: You Won't Believe What Happened Next"
|
637
|
+
- "RAND10 Things Only a DevOps Understands"
|
638
|
+
- "RAND10 %tech% Secrets %company% Don't Want You to Know"
|
639
|
+
- "Up Your Rate: You're an SRE Now!"
|
640
|
+
- "When You Have More Github Repos than Users"
|
933
641
|
- "Large-Scale %tech% Anti-Patterns Will %extreme% Your %service%"
|
934
|
-
- "
|
935
|
-
- "
|
936
|
-
- "Luke, I Am Your %verb%er"
|
937
|
-
- "Our %FNOPS% Journey"
|
938
|
-
- "Our %adjective% Micro-Framework"
|
939
|
-
- "Pimp My %tech%. %tech% is the Answer, What's the Question?"
|
940
|
-
- "Reading out the Slides"
|
642
|
+
- "Bro, Do You Even %tech%?"
|
643
|
+
- "Beautiful %tech% for Beautiful %service%"
|
941
644
|
- "Real Heroes Use %tech%"
|
942
|
-
- "
|
645
|
+
- "To Hear Us Talk, You Could almost Think this Stuff is Important"
|
646
|
+
- "Our %adjective% Micro-Framework"
|
647
|
+
- "A %tech% %adjective% %adjective% %adjective% Micro-Framework"
|
648
|
+
- "%adjective% %tech% %adjective% Time-series Micro-Services for Dummies"
|
649
|
+
- "Living for Meetups: I Haven't Done Any Actual Work Since 2013"
|
650
|
+
- "%tech% to %adjective% %service%: Living the Dream"
|
651
|
+
- "10x-ing Your Team: The End of %job_title% %job_title% Culture"
|
652
|
+
- "Vague Soft-Skills Waffle"
|
653
|
+
- "Everything I Know About %tech% I Learned from Star Wars"
|
654
|
+
- "There's %tech% in my %tech%!"
|
943
655
|
- "Repeatedly Saying 'on premise' Without Understanding What it Means"
|
656
|
+
- "'You Have 15 Seconds to Comply' and other '80s Cliches stiched Loosely Together"
|
657
|
+
- "%panacea% Will Fix Everything"
|
658
|
+
- "I Have RAND18 Months' Experience But I Know Everything"
|
659
|
+
- "We Were the First People to Ever Encounter any of these Problems"
|
660
|
+
- "I Worked for Google so I Know Everything"
|
944
661
|
- "Rewriting Most of Kubernetes 101"
|
945
|
-
- "
|
946
|
-
- "
|
947
|
-
- "Something People Have Done Since 198%RAND9%, but with a New Name"
|
948
|
-
- "Stickers!"
|
949
|
-
- "Still Using %tech%?"
|
950
|
-
- "The Answer is More Code, What's the Question?"
|
951
|
-
- "There's %tech% in my %tech%!"
|
952
|
-
- "Thinly Disguised Sales Pitch"
|
953
|
-
- "Ticking the Boxes: You Can't Automate All of the Things if You Aren't Using All of the Things"
|
954
|
-
- "Vague Soft-Skills Waffle"
|
662
|
+
- "Like, Diversity and Stuff?"
|
663
|
+
- "How Everyone Else Where I Work Does Everything Wrong"
|
955
664
|
- "Validating Laziness by Declaring it 'Best Practice'"
|
956
|
-
- "We %verb%ed our %tech%. Mind = Blown"
|
957
|
-
- "We Have a DevOps Consultancy and We Don't Know What We're Doing"
|
958
|
-
- "We Put %tech% in our %tech%: You Won't Believe What Happened Next"
|
959
|
-
- "We Rewrote Everything in %language% and Now Nothing Works"
|
960
|
-
- "We Rewrote Everything in %language% for No Real Reason"
|
961
|
-
- "We Were the First People to Ever Encounter any of these Problems"
|
962
|
-
- "What I Talk about When I Talk about %tech%"
|
963
|
-
- "What I Talk about When I Talk about %verb%ing"
|
964
|
-
- "When %tech% is not Good Enough, Reach for the %tech%"
|
965
|
-
- "When You Have More Github Repos than Users"
|
966
|
-
- "While You Learn, I Earn: Making Shit Up and Blogging it as Fact"
|
967
|
-
- "Why %tech% is %is_not% the new %tech%"
|
968
|
-
- "Winter is Coming: Level Up Your %panacea%"
|
969
|
-
- "Wow Very %tech%. So %tech%. Such %verb%ed"
|
970
|
-
- "You Still Use %language%? For Real?"
|
971
|
-
- "Your %tech% is Bad and You Should Feel Bad"
|
972
665
|
|
973
666
|
#-------------------------------------------------------------------------
|
974
667
|
# This block relates to the names and roles of the people doing the
|
975
668
|
# talks
|
976
669
|
|
977
|
-
# These are the most common names of the 1990s, according to some
|
978
|
-
# have as many female as male. Idealism over
|
670
|
+
# These are the most common names of the 1990s, according to some
|
671
|
+
# stupid website. We have as many female as male. Idealism over
|
672
|
+
# realism.
|
979
673
|
#
|
980
|
-
first_name:
|
674
|
+
:first_name:
|
981
675
|
- Amanda
|
982
676
|
- Andrew
|
983
677
|
- Ashley
|
@@ -1016,7 +710,7 @@ first_name:
|
|
1016
710
|
# These are the most common surnames in Britain, according to some
|
1017
711
|
# other website
|
1018
712
|
|
1019
|
-
last_name:
|
713
|
+
:last_name:
|
1020
714
|
- Smith
|
1021
715
|
- Jones
|
1022
716
|
- Taylor
|
@@ -1038,7 +732,7 @@ last_name:
|
|
1038
732
|
- Jackson
|
1039
733
|
- Wright
|
1040
734
|
|
1041
|
-
job_role:
|
735
|
+
:job_role:
|
1042
736
|
- Agile
|
1043
737
|
- All of the Things
|
1044
738
|
- Automation
|
@@ -1061,7 +755,7 @@ job_role:
|
|
1061
755
|
- SRE
|
1062
756
|
- WebOps
|
1063
757
|
|
1064
|
-
job_title:
|
758
|
+
:job_title:
|
1065
759
|
- "00 Agent"
|
1066
760
|
- "10x"
|
1067
761
|
- Advocate
|
@@ -1087,7 +781,6 @@ job_title:
|
|
1087
781
|
- Guru
|
1088
782
|
- Hacker
|
1089
783
|
- Helicopter Pilot
|
1090
|
-
- Hero
|
1091
784
|
- Imagineer
|
1092
785
|
- Innovator
|
1093
786
|
- Jedi
|
@@ -1101,7 +794,6 @@ job_title:
|
|
1101
794
|
- Neckbeard without Portfolio
|
1102
795
|
- Ninja
|
1103
796
|
- Overlord
|
1104
|
-
- Padawan
|
1105
797
|
- Pirate
|
1106
798
|
- Polyglot
|
1107
799
|
- Preacherman
|
@@ -1114,10 +806,8 @@ job_title:
|
|
1114
806
|
- Scientist
|
1115
807
|
- Sensei
|
1116
808
|
- Sherpa
|
1117
|
-
- Solution Barista
|
1118
809
|
- Space Cadet
|
1119
810
|
- Squadron Leader
|
1120
|
-
- Stormtrooper
|
1121
811
|
- Superstar
|
1122
812
|
- Technologist
|
1123
813
|
- Thought Leader
|