linkedin2cv 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "linkedin2cv generator",
2
+ "name": "linkedin2cvgenerator",
3
3
  "version": "0.0.0",
4
4
  "dependencies": {},
5
5
  "devDependencies": {
@@ -3,7 +3,7 @@
3
3
  describe('Controller: MainCtrl', function () {
4
4
 
5
5
  // load the controller's module
6
- beforeEach(module('linkedin2cv GeneratorApp'));
6
+ beforeEach(module('linkedin2cvGeneratorApp'));
7
7
 
8
8
  var MainCtrl,
9
9
  scope;
@@ -1,18 +1,18 @@
1
1
  'use strict';
2
2
 
3
- describe('Service: linkedin2cv Api', function () {
3
+ describe('Service: linkedin2cvApi', function () {
4
4
 
5
5
  // load the service's module
6
- beforeEach(module('linkedin2cv GeneratorApp'));
6
+ beforeEach(module('linkedin2cvGeneratorApp'));
7
7
 
8
8
  // instantiate service
9
- var linkedin2cv Api;
10
- beforeEach(inject(function (_linkedin2cv Api_) {
11
- linkedin2cv Api = _linkedin2cv Api_;
9
+ var linkedin2cvApi;
10
+ beforeEach(inject(function (_linkedin2cvApi_) {
11
+ linkedin2cvApi = _linkedin2cvApi_;
12
12
  }));
13
13
 
14
14
  it('should do something', function () {
15
- expect(!!linkedin2cv Api).toBe(true);
15
+ expect(!!linkedin2cvApi).toBe(true);
16
16
  });
17
17
 
18
18
  });
@@ -3,7 +3,7 @@
3
3
  describe('Service: Linkedin2CVservice', function () {
4
4
 
5
5
  // load the service's module
6
- beforeEach(module('linkedin2cv GeneratorApp'));
6
+ beforeEach(module('linkedin2cvGeneratorApp'));
7
7
 
8
8
  // instantiate service
9
9
  var Linkedin2CVservice;
@@ -14,12 +14,6 @@ describe Linkedin2CV::Converter do
14
14
  end
15
15
 
16
16
  it 'Should Fetch skills' do
17
- # puts @profile.member_url_resources
18
- # @profile.skills.all.map do |skill|
19
- # puts skill.skill.name
20
- # end
21
-
22
- # Should get back a Mash of objects
23
17
  expect(@profile.skills).to be_an_instance_of(LinkedIn::Mash)
24
18
  end
25
19
 
@@ -54,30 +48,4 @@ describe Linkedin2CV::Converter do
54
48
  it 'Should Fetch URLs' do
55
49
  expect(@profile.member_url_resources).to be_an_instance_of(LinkedIn::Mash)
56
50
  end
57
-
58
- it 'Should compile latex on the CLI' do
59
-
60
- end
61
-
62
-
63
- it 'Should create a latex Resume' do
64
- @client.create_resume(@config)
65
-
66
- # @config['skills']['extra'].each do |k|
67
- # # puts k
68
- # k.keys.each do |category|
69
- # k[category].each do |v|
70
- # puts v
71
- # end
72
- # end
73
- # end
74
-
75
- end
76
-
77
- it 'Should monkey patch the ERB Compiler to escape LaTeX special chars' do
78
- # puts ERB.new('<%=@profile.location.name %>')
79
- replaced = ERB.new("<%= 'this & interesting' %><%= 'I have lots of $$ which is >= Bill Gates but < some Middle Eastern oil tychoons ~ net % of the detail' %>").result
80
- expect(replaced).to eql('this \& interestingI have lots of \$\$ which is \textgreater= Bill Gates but \textless some Middle Eastern oil tychoons \textasciitilde net \% of the detail')
81
- end
82
-
83
51
  end
@@ -0,0 +1,32 @@
1
+ require 'rspec'
2
+ require 'linkedin2cv/cli/command'
3
+ require 'linkedin2cv/converter'
4
+ require 'linkedin2cv/renderer/latex_renderer'
5
+ require 'spec_helper'
6
+ require 'linkedin-oauth2'
7
+
8
+ describe Linkedin2CV::LatexRenderer do
9
+
10
+ before do
11
+ @client = Linkedin2CV::Converter.new
12
+ @profile = @client.get_profile
13
+ @config = YAML.load_file(__dir__ + "/mocks/config.yml")
14
+ @latex_spec = File.read(__dir__ + "/mocks/matt.latex")
15
+ end
16
+
17
+ it 'Should create a latex Resume' do
18
+ # @client.create_resume(@config)
19
+ end
20
+
21
+ it 'Should return a working LaTeX document' do
22
+ renderer = Linkedin2CV::LatexRenderer.new
23
+ output = renderer.render_latex(@profile, @config)
24
+ expect(output).to eql(@latex_spec)
25
+ end
26
+
27
+ it 'Should monkey patch the ERB Compiler to escape LaTeX special chars' do
28
+ replaced = ERB.new("<%= 'this & interesting' %><%= 'I have lots of $$ which is >= Bill Gates but < some Middle Eastern oil tychoons ~ net % of the detail' %>").result
29
+ expect(replaced).to eql('this \& interestingI have lots of \$\$ which is \textgreater= Bill Gates but \textless some Middle Eastern oil tychoons \textasciitilde net \% of the detail')
30
+ end
31
+
32
+ end
@@ -28,4 +28,8 @@ projects:
28
28
  - "Skylock - Cloud-based GPS Security Portal": "Freelance"
29
29
  - "Substantiate - GPS logbook solutions": "Freelance"
30
30
  - "Auto-renewal": "Melbourne IT"
31
- - "Business Transformation Programme (IWS)": "Melbourne IT"
31
+ - "Business Transformation Programme (IWS)": "Melbourne IT"
32
+
33
+ output_file: 'matt'
34
+
35
+ format: 'latex'
@@ -0,0 +1,1424 @@
1
+ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
+ % Classicthesis-Styled CV
3
+ % LaTeX Template
4
+ % Version 1.0 (22/2/13)
5
+ %
6
+ % This template has been downloaded from:
7
+ % http://www.LaTeXTemplates.com
8
+ %
9
+ % Original author:
10
+ % Alessandro Plasmati
11
+ %
12
+ % License:
13
+ % CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)
14
+ %
15
+ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
16
+
17
+
18
+
19
+ %----------------------------------------------------------------------------------------
20
+ % Re-usable template functions
21
+ %----------------------------------------------------------------------------------------
22
+
23
+
24
+
25
+
26
+
27
+ %----------------------------------------------------------------------------------------
28
+ % PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
29
+ %----------------------------------------------------------------------------------------
30
+
31
+ %\documentclass{scrartcl}
32
+ \documentclass{article}
33
+
34
+ \usepackage[T1]{fontenc}
35
+
36
+ \reversemarginpar % Move the margin to the left of the page
37
+
38
+ \newcommand{\MarginText}[1]{\marginpar{\raggedleft\itshape\small#1}} % New command defining the margin text style
39
+
40
+ \usepackage[nochapters]{classicthesis} % Use the classicthesis style for the style of the document
41
+ \usepackage[LabelsAligned]{currvita} % Use the currvita style for the layout of the document
42
+
43
+ \renewcommand{\cvheadingfont}{\LARGE\color{Maroon}} % Font color of your name at the top
44
+
45
+ \usepackage{hyperref} % Required for adding links and customizing them
46
+ \hypersetup{colorlinks, breaklinks, urlcolor=Maroon, linkcolor=Maroon} % Set link colors
47
+
48
+ \newlength{\datebox}\settowidth{\datebox}{13-2012--12/2014} % Set the width of the date box in each block
49
+
50
+ \newcommand{\NewEntry}[3]{\noindent\hangindent=2em\hangafter=0 \parbox{\datebox}{\small \textit{#1}}\hspace{1.5em} #2 #3 % Define a command for each new block - change spacing and font sizes here: #1 is the left margin, #2 is the italic date field and #3 is the position/employer/location field
51
+ \vspace{0.5em}} % Add some white space after each new entry
52
+
53
+ \newcommand{\Description}[1]{\hangindent=2em\hangafter=0\noindent\raggedright\footnotesize{#1}\par\normalsize\vspace{1em}} % Define a command for descriptions of each entry - change spacing and font sizes here
54
+
55
+ %----------------------------------------------------------------------------------------
56
+
57
+ \begin{document}
58
+
59
+ \thispagestyle{empty} % Stop the page count at the bottom of the first page
60
+
61
+ %----------------------------------------------------------------------------------------
62
+ % NAME AND CONTACT INFORMATION SECTION
63
+ %----------------------------------------------------------------------------------------
64
+
65
+ \begin{cv}{\spacedallcaps{Matt Fellows}}\vspace{1.5em} % Your name
66
+
67
+ \noindent\spacedlowsmallcaps{Personal Information}\vspace{0.5em} % Personal information heading
68
+
69
+ \NewEntry{}{\textit{Resides in Melbourne, Australia}} % Birthplace and date
70
+
71
+ \NewEntry{email}{\href{mailto:matt.fellows@onegeek.com.au}{matt.fellows@onegeek.com.au}} % Email address
72
+
73
+
74
+ \NewEntry{website}{\href{http://www.melbourneit.com.au}{http://www.melbourneit.com.au}} % Personal website
75
+
76
+ \NewEntry{website}{\href{http://www.onegeek.com.au}{http://www.onegeek.com.au}} % Personal website
77
+
78
+
79
+ \NewEntry{phone}{(H) +61 3 1234 5678\ \ $\cdotp$\ \ (M)+61 422 123 456} % Phone number(s)
80
+
81
+ \vspace{1em} % Extra white space between the personal information section and goal
82
+
83
+ \noindent\spacedlowsmallcaps{Introduction}\vspace{1em} % Goal heading, could be used for a quotation or short profile instead
84
+
85
+
86
+
87
+ \Description{Experienced Development Thought Leader with over 8 commercial years delivering eCommerce Web Applications. Strong online B2C, B2B and API capability with some conversion rate optimisation experience.}
88
+
89
+
90
+
91
+
92
+
93
+ \Description{I'm an adaptive leader, and challenge teams to think differently about software delivery; no one approach or technology works in all situations. Agile and DevOps are just labels, it's how you approach software delivery that really matters.}
94
+
95
+
96
+
97
+
98
+
99
+ \Description{You'll find me hacking on GitHub in my spare time in Ruby, Scala \& Angular, and have 8+ years experience in Java, PHP, and your HTML5/JS stack.}
100
+
101
+
102
+
103
+
104
+
105
+ \Description{I love the Web, I love to challenge the status quo and love what I do.}
106
+
107
+
108
+ \vspace{2em} % Goal text
109
+
110
+ %----------------------------------------------------------------------------------------
111
+ % WORK EXPERIENCE
112
+ %----------------------------------------------------------------------------------------
113
+
114
+ \noindent\spacedlowsmallcaps{Professional Experience}\vspace{1em}
115
+
116
+
117
+
118
+ \NewEntry{2013--Present}{Manager, Digital, \textsc{Melbourne IT}}
119
+
120
+ \Description{\MarginText{Melbourne IT}
121
+
122
+
123
+
124
+ \begin{itemize}
125
+ \item Thought leadership \& change management
126
+ \end{itemize}
127
+
128
+
129
+
130
+ \begin{itemize}
131
+ \item Drive development team agility via Scrum and DevOps approaches to software development
132
+ \end{itemize}
133
+
134
+
135
+
136
+ \begin{itemize}
137
+ \item Coach group on applying MVP thinking, delivering incremental business value
138
+ \end{itemize}
139
+
140
+
141
+
142
+ \begin{itemize}
143
+ \item Lead conversion rate optimisation for Melbourne IT web properties
144
+ \end{itemize}
145
+
146
+
147
+
148
+ \begin{itemize}
149
+ \item Lead design of modern RESTful API to support Internal/B2B/B2C/App channels
150
+ \end{itemize}
151
+
152
+
153
+
154
+ \begin{itemize}
155
+ \item Drive move from traditional web frameworks (Zend/PHP) to more performant Angular JS desktop \& mobile applications
156
+ \end{itemize}
157
+
158
+
159
+
160
+
161
+ Reference: Bill \textsc{Murry}\ \ $\cdotp$\ \ +61 3 0987 6543\ \ $\cdotp$\ \ \href{mailto:bill@foobar.com}{bill@foobar.com}}
162
+
163
+ \vspace{.5em} % Extra space between sections
164
+
165
+
166
+
167
+ \NewEntry{2007--Present}{Freelance Web Developer, \textsc{OneGeek}}
168
+
169
+ \Description{\MarginText{OneGeek}
170
+
171
+
172
+
173
+ \begin{itemize}
174
+ \item Freelance Web Application development
175
+ \end{itemize}
176
+
177
+
178
+
179
+ \begin{itemize}
180
+ \item Development of JobsFindYou portal (startup)
181
+ \end{itemize}
182
+
183
+
184
+
185
+ \begin{itemize}
186
+ \item Open Source development (GitHub)
187
+ \end{itemize}
188
+
189
+
190
+
191
+
192
+ }
193
+
194
+ \vspace{.5em} % Extra space between sections
195
+
196
+
197
+
198
+ \NewEntry{2013--2013}{Manager, Web Development, \textsc{Melbourne IT}}
199
+
200
+ \Description{\MarginText{Melbourne IT}
201
+
202
+
203
+
204
+ \begin{itemize}
205
+ \item Team leadership/management (Max team size 15)
206
+ \end{itemize}
207
+
208
+
209
+
210
+ \begin{itemize}
211
+ \item Change management
212
+ \end{itemize}
213
+
214
+
215
+
216
+ \begin{itemize}
217
+ \item Web architecture, Web API design \& development
218
+ \end{itemize}
219
+
220
+
221
+
222
+ \begin{itemize}
223
+ \item Led DevOps initiative in ITS Dev; includes transition to public/private cloud, continuous deployment, complete environment automation (puppet) + release automation and ChatOps
224
+ \end{itemize}
225
+
226
+
227
+
228
+ \begin{itemize}
229
+ \item Iterative development using Scrum/Agile
230
+ \end{itemize}
231
+
232
+
233
+
234
+ \begin{itemize}
235
+ \item Grow online channel revenue in close partnership with Business Unit. "Fail-fast" and learn quickly with metrics in Adobe Analytics (SiteCatalyst) with iterative development, agile processes and compartmentalised change
236
+ \end{itemize}
237
+
238
+
239
+
240
+ \begin{itemize}
241
+ \item Promote developer-centric culture
242
+ \end{itemize}
243
+
244
+
245
+
246
+ \begin{itemize}
247
+ \item Deliver custom B2C, B2B and B2B2C web portal for MIT Transformation programme (\$1M+ budget)
248
+ \end{itemize}
249
+
250
+
251
+
252
+ \begin{itemize}
253
+ \item Love Web
254
+ \end{itemize}
255
+
256
+
257
+
258
+
259
+ }
260
+
261
+ \vspace{.5em} % Extra space between sections
262
+
263
+
264
+
265
+ \NewEntry{2008--2013}{Web Team Leader, \textsc{Melbourne IT}}
266
+
267
+ \Description{\MarginText{Melbourne IT}
268
+
269
+
270
+
271
+ \begin{itemize}
272
+ \item Introduced Agile Development (Scrum) \& build automation to improve time to market, improve collaboration and reduce waste improving nr deployment rate \textgreater 500\%
273
+ \end{itemize}
274
+
275
+
276
+
277
+ \begin{itemize}
278
+ \item Introduced a fraud detection system \textgreater 2 weeks into online channel reducing fraud \textasciitilde0\% of online transaction, saving on charge-backs, domain name registries and manual labour
279
+ \end{itemize}
280
+
281
+
282
+
283
+ \begin{itemize}
284
+ \item B2B, B2C and B2B2C systems support
285
+ \end{itemize}
286
+
287
+
288
+
289
+ \begin{itemize}
290
+ \item New product launches into Online and Call Centre channels
291
+ \end{itemize}
292
+
293
+
294
+
295
+ \begin{itemize}
296
+ \item Served as an SME and Tech Lead on Transformation Project, overseeing the Web stream
297
+ \end{itemize}
298
+
299
+
300
+
301
+ \begin{itemize}
302
+ \item Lead offshore development initiative in Web arena
303
+ \end{itemize}
304
+
305
+
306
+
307
+ \begin{itemize}
308
+ \item Introduced Enterprise CMS to reduce manual development
309
+ \end{itemize}
310
+
311
+
312
+
313
+ \begin{itemize}
314
+ \item Development ambassador, pushing a development-centric culture. Introduction of Hack-days.
315
+ \end{itemize}
316
+
317
+
318
+
319
+
320
+ }
321
+
322
+ \vspace{.5em} % Extra space between sections
323
+
324
+
325
+
326
+ \NewEntry{2009--2012}{Founding Director, \textsc{Jobs Find You Pty Ltd}}
327
+
328
+ \Description{\MarginText{Jobs Find You Pty Ltd}
329
+
330
+
331
+
332
+ \begin{itemize}
333
+ \item Developed B2C and B2B portals for the online resume platform.
334
+ \end{itemize}
335
+
336
+
337
+
338
+ \begin{itemize}
339
+ \item Introduced initial monitization via Affiliate and advertiser program.
340
+ \end{itemize}
341
+
342
+
343
+
344
+ \begin{itemize}
345
+ \item Assisted with Strategic direction of company.
346
+ \end{itemize}
347
+
348
+
349
+
350
+
351
+ }
352
+
353
+ \vspace{.5em} % Extra space between sections
354
+
355
+
356
+
357
+ \NewEntry{2006--2008}{Web Developer, \textsc{Melbourne IT}}
358
+
359
+ \Description{\MarginText{Melbourne IT}
360
+
361
+
362
+
363
+ \begin{itemize}
364
+ \item PHP (Zend Framework) development
365
+ \end{itemize}
366
+
367
+
368
+
369
+ \begin{itemize}
370
+ \item User Interface development using POSH, CSS and JS
371
+ \end{itemize}
372
+
373
+
374
+
375
+ \begin{itemize}
376
+ \item Web Service Integration
377
+ \end{itemize}
378
+
379
+
380
+
381
+ \begin{itemize}
382
+ \item Java Application development (J2EE, JSP and XML)
383
+ \end{itemize}
384
+
385
+
386
+
387
+
388
+ }
389
+
390
+ \vspace{.5em} % Extra space between sections
391
+
392
+
393
+
394
+ \NewEntry{2000--2006}{Manager, \textsc{McDonald's}}
395
+
396
+ \Description{\MarginText{McDonald's}
397
+
398
+
399
+
400
+ \begin{itemize}
401
+ \item Budgets and labour forecasting
402
+ \end{itemize}
403
+
404
+
405
+
406
+ \begin{itemize}
407
+ \item Stock inventoring
408
+ \end{itemize}
409
+
410
+
411
+
412
+ \begin{itemize}
413
+ \item Team management \& leadership
414
+ \end{itemize}
415
+
416
+
417
+
418
+ \begin{itemize}
419
+ \item Management training
420
+ \end{itemize}
421
+
422
+
423
+
424
+ \begin{itemize}
425
+ \item Made delicious hamburgers
426
+ \end{itemize}
427
+
428
+
429
+
430
+
431
+ }
432
+
433
+ \vspace{.5em} % Extra space between sections
434
+
435
+ %------------------------------------------------
436
+
437
+ \vspace{1em} % Extra space between major sections
438
+
439
+ %----------------------------------------------------------------------------------------
440
+ % PROJECTS
441
+ %----------------------------------------------------------------------------------------
442
+
443
+ \noindent\spacedlowsmallcaps{Projects}\vspace{1em}
444
+
445
+
446
+ %\NewEntry{website}{\href{http://www.melbourneit.com.au}{http://www.melbourneit.com.au}} % Project website
447
+
448
+
449
+
450
+ \NewEntry{2013--Present}{\textsc{Melbourne IT}}
451
+
452
+
453
+ \Description{\MarginText{Melbourne IT AWS Migration \ "DevOps"}
454
+
455
+
456
+ Led a staged migration of the Melbourne IT Web platforms from existing internal, physical Solaris infrastructure to commodity Intel environment running RHEL.
457
+
458
+
459
+
460
+
461
+
462
+
463
+
464
+
465
+
466
+ Summary:
467
+
468
+
469
+
470
+
471
+
472
+
473
+
474
+
475
+
476
+ \begin{itemize}
477
+ \item Scope: Migration of MIT website and sub-systems, including eCommerce, Renewal, Self-Service and CMS Managed legacy components tied heavily to existing environments
478
+ \end{itemize}
479
+
480
+
481
+
482
+
483
+
484
+
485
+
486
+
487
+ \begin{itemize}
488
+ \item Deployment automation of complex environment via internally built engine (project Godspeed) and distributed RPM packages
489
+ \end{itemize}
490
+
491
+
492
+
493
+
494
+
495
+
496
+
497
+
498
+ \begin{itemize}
499
+ \item Re-architected to suit HA environment, including a layer 7 reverse proxy (Nginx) for performance, security and flexibility in configuration with the services that comprise the overall web platform
500
+ \end{itemize}
501
+
502
+
503
+
504
+
505
+
506
+
507
+
508
+
509
+ \begin{itemize}
510
+ \item Revised DR strategy for existing integrated internal systems
511
+ \end{itemize}
512
+
513
+
514
+
515
+
516
+
517
+
518
+
519
+
520
+ \begin{itemize}
521
+ \item Implementation of major infra-as-code principles and leveraging as Puppet, Jenkins CI and Git as core components
522
+ \end{itemize}
523
+
524
+
525
+
526
+
527
+
528
+
529
+
530
+
531
+ \begin{itemize}
532
+ \item Integration with a centralised sys-logging platform and Splunk data sink
533
+ \end{itemize}
534
+
535
+
536
+
537
+ \begin{itemize}
538
+ \item Focus on increased use and reliance monitoring and reporting tools for proactive system health, including Graphite, NewRelic, Sentry, Splunk and Nagios.
539
+ \end{itemize}
540
+
541
+
542
+
543
+
544
+
545
+
546
+
547
+
548
+ \begin{itemize}
549
+ \item Close collaboration with Operations team to ensure
550
+ \end{itemize}
551
+
552
+
553
+
554
+
555
+
556
+
557
+
558
+
559
+ Key successes:
560
+
561
+
562
+
563
+
564
+
565
+
566
+
567
+
568
+
569
+ \begin{itemize}
570
+ \item Increased conversion, cross-product attachment \& engagement rates
571
+ \end{itemize}
572
+
573
+
574
+
575
+ \begin{itemize}
576
+ \item Avg. deployment time reduced from 1 hour to less than 15 mins
577
+ \end{itemize}
578
+
579
+
580
+
581
+
582
+
583
+
584
+
585
+
586
+ \begin{itemize}
587
+ \item Decrease in page loading times between 30-50\%
588
+ \end{itemize}
589
+
590
+
591
+
592
+
593
+
594
+
595
+
596
+
597
+ \begin{itemize}
598
+ \item Significant reduction in website error rate
599
+ \end{itemize}
600
+
601
+
602
+
603
+
604
+
605
+
606
+
607
+
608
+ \begin{itemize}
609
+ \item Increase in website Apdex \ NPS
610
+ \end{itemize}
611
+
612
+
613
+
614
+
615
+
616
+
617
+
618
+
619
+ \begin{itemize}
620
+ \item Shifted Web Dev and Operations working paradigm to a more open, collaborative and proactive partnership
621
+ \end{itemize}
622
+
623
+
624
+
625
+ Reference: Bill \textsc{Murry}\ \ $\cdotp$\ \ +61 3 0987 6543\ \ $\cdotp$\ \ \href{mailto:bill@foobar.com}{bill@foobar.com}}
626
+
627
+ \vspace{.5em} % Extra space between sections
628
+ %------------------------------------------------
629
+
630
+
631
+
632
+
633
+ \NewEntry{2014--Present}{\textsc{Freelance}}
634
+
635
+
636
+ \Description{\MarginText{Startup - Mobile App (Advertising)}
637
+
638
+
639
+ Currently working with a startup to implement a disruptive mobile application prototype in the Marketing / Advertising space. The business details cannot be disclosed at this time, however I am working as a Solution Architect and also a Developer to the client as there are a number of parties required to deliver the project and requires technical coordination.
640
+
641
+
642
+
643
+
644
+
645
+
646
+
647
+
648
+
649
+ Technical Summary:
650
+
651
+
652
+
653
+
654
+
655
+
656
+
657
+
658
+
659
+ \begin{itemize}
660
+ \item Scala based application including RESTful API
661
+ \end{itemize}
662
+
663
+
664
+
665
+ \begin{itemize}
666
+ \item Utilization of both SQL \& NoSQL databases for specific requirements, including transactional and large file storage/retrieval
667
+ \end{itemize}
668
+
669
+
670
+
671
+ \begin{itemize}
672
+ \item AngularJS front end using Iconic library (PhoneGap/Cordova) for mobile app deployment
673
+ \end{itemize}
674
+
675
+
676
+
677
+ \begin{itemize}
678
+ \item Integration with external systems
679
+ \end{itemize}
680
+
681
+
682
+
683
+ \begin{itemize}
684
+ \item Initial deployment to a cloud environment (Heroku, AWS etc.)
685
+ \end{itemize}
686
+
687
+
688
+
689
+ }
690
+
691
+ \vspace{.5em} % Extra space between sections
692
+ %------------------------------------------------
693
+
694
+
695
+ %\NewEntry{website}{\href{http://www.melbourneit.com.au}{http://www.melbourneit.com.au}} % Project website
696
+
697
+
698
+
699
+ \NewEntry{2014--Present}{\textsc{Melbourne IT}}
700
+
701
+
702
+ \Description{\MarginText{Melbourne IT Website Refresh (In Progress)}
703
+
704
+
705
+ Summary:
706
+
707
+
708
+
709
+
710
+
711
+
712
+
713
+
714
+
715
+ \begin{itemize}
716
+ \item Major redesign of flagship Melbourne IT website (www.melbourneit.com.au)
717
+ \end{itemize}
718
+
719
+
720
+
721
+ \begin{itemize}
722
+ \item Goal to reduce web foot print and time-to-market
723
+ \end{itemize}
724
+
725
+
726
+
727
+ \begin{itemize}
728
+ \item Adoption of AngularJS as the main UI framework
729
+ \end{itemize}
730
+
731
+
732
+
733
+ \begin{itemize}
734
+ \item Staged weight loss strategy from existing PHP/Java frameworks into Restful, API driven UIs
735
+ \end{itemize}
736
+
737
+
738
+
739
+
740
+
741
+
742
+
743
+
744
+ Key Successes:
745
+
746
+
747
+
748
+
749
+
750
+
751
+
752
+
753
+
754
+ \begin{itemize}
755
+ \item Achieved sub 1-second domain search (fastest of all major competitors)
756
+ \end{itemize}
757
+
758
+
759
+
760
+ \begin{itemize}
761
+ \item Increased domain search engagement
762
+ \end{itemize}
763
+
764
+
765
+
766
+ \begin{itemize}
767
+ \item Increased domain name conversion rates
768
+ \end{itemize}
769
+
770
+
771
+
772
+ \begin{itemize}
773
+ \item Deployment of RESTful API (Migration from legacy SOAP/RPC services)
774
+ \end{itemize}
775
+
776
+
777
+
778
+ }
779
+
780
+ \vspace{.5em} % Extra space between sections
781
+ %------------------------------------------------
782
+
783
+
784
+
785
+
786
+ \NewEntry{12/2012--12/2013}{\textsc{Melbourne IT}}
787
+
788
+
789
+ \Description{\MarginText{Transformation}
790
+
791
+
792
+ Part of an ongoing initiative to re-align the technical and business support platforms that will underpin Melbourne ITs future growth strategies, including M\&A activities.
793
+
794
+
795
+
796
+
797
+
798
+
799
+
800
+
801
+
802
+ In 1 year, Melbourne IT was able to deliver Oracle Siebel, BRM, Fusion (AIA) and OBIEE and a fully integrated, custom Web solution tailored to Melbourne IT's domain name oriented business via a custom integration API.
803
+
804
+
805
+
806
+
807
+
808
+
809
+
810
+
811
+
812
+ I was responsible for the technical delivery of the following streams of work, run as Agile projects and a budget of over \$1M:
813
+
814
+
815
+
816
+
817
+
818
+
819
+
820
+
821
+
822
+ \begin{itemize}
823
+ \item eCommerce (shop) website
824
+ \end{itemize}
825
+
826
+
827
+
828
+ \begin{itemize}
829
+ \item Customer Self-Service portal
830
+ \end{itemize}
831
+
832
+
833
+
834
+ \begin{itemize}
835
+ \item Identity and Access Management (IAM) system
836
+ \end{itemize}
837
+
838
+
839
+
840
+ \begin{itemize}
841
+ \item Provisioning Fallout Interfaces
842
+ \end{itemize}
843
+
844
+
845
+
846
+ \begin{itemize}
847
+ \item Design of JSON-based, RESTful API abstracting the new Oracle Business Support Systems (above) enabling internal and external clients a modern integration point (delivered by solution partner Rubicon Red)
848
+ \end{itemize}
849
+
850
+
851
+
852
+
853
+
854
+
855
+
856
+
857
+ Achievements:
858
+
859
+
860
+
861
+
862
+
863
+
864
+
865
+
866
+
867
+ \begin{itemize}
868
+ \item Delivered on-time and within budget
869
+ \end{itemize}
870
+
871
+
872
+
873
+ \begin{itemize}
874
+ \item A better platform for our customers, newer products, automated provisioning
875
+ \end{itemize}
876
+
877
+
878
+
879
+ \begin{itemize}
880
+ \item Only mobile/tablet optimised Account console in our industry
881
+ \end{itemize}
882
+
883
+
884
+
885
+ \begin{itemize}
886
+ \item Increased Net Promoter Score (customer satisfaction)
887
+ \end{itemize}
888
+
889
+
890
+
891
+ }
892
+
893
+ \vspace{.5em} % Extra space between sections
894
+ %------------------------------------------------
895
+
896
+
897
+ %\NewEntry{website}{\href{http://renew.melbourneit.com.au}{http://renew.melbourneit.com.au}} % Project website
898
+
899
+
900
+
901
+ \NewEntry{7/2013--6/2014}{\textsc{Melbourne IT}}
902
+
903
+
904
+ \Description{\MarginText{Renewal - Conversion Rate Optimisation}
905
+
906
+
907
+ 2013
908
+
909
+
910
+
911
+
912
+ \begin{itemize}
913
+ \item Conversion rate optimisation of online Renewing customers
914
+ \end{itemize}
915
+
916
+
917
+
918
+ \begin{itemize}
919
+ \item Significantly increased MRR via attachment rates
920
+ \end{itemize}
921
+
922
+
923
+
924
+ \begin{itemize}
925
+ \item Collaborated with Marketing / Product to deliver integrated experience
926
+ \end{itemize}
927
+
928
+
929
+
930
+ \begin{itemize}
931
+ \item Delivered using offshore resources (resource constrained due to Transformation)
932
+ \end{itemize}
933
+
934
+
935
+
936
+ \begin{itemize}
937
+ \item Positive growth in 2013, first time during Transformation programme
938
+ \end{itemize}
939
+
940
+
941
+
942
+
943
+
944
+
945
+
946
+
947
+ 2014
948
+
949
+
950
+
951
+
952
+ \begin{itemize}
953
+ \item Improving speed/performance (move to cloud and new technology)
954
+ \end{itemize}
955
+
956
+
957
+
958
+ \begin{itemize}
959
+ \item Refreshing UX for design consistency \& aesthetics
960
+ \end{itemize}
961
+
962
+
963
+
964
+ \begin{itemize}
965
+ \item Significant new product launches
966
+ \end{itemize}
967
+
968
+
969
+
970
+ \begin{itemize}
971
+ \item Increased NPS score
972
+ \end{itemize}
973
+
974
+
975
+
976
+ \begin{itemize}
977
+ \item Added mobile/tablet responsive design
978
+ \end{itemize}
979
+
980
+
981
+
982
+ \begin{itemize}
983
+ \item Achieved 16\% conversion rate lift from previous conversion base levels.
984
+ \end{itemize}
985
+
986
+
987
+
988
+ }
989
+
990
+ \vspace{.5em} % Extra space between sections
991
+ %------------------------------------------------
992
+
993
+
994
+
995
+
996
+ \NewEntry{9/2012--4/2013}{\textsc{Freelance}}
997
+
998
+
999
+ \Description{\MarginText{Substantiate - GPS logbook solutions}
1000
+
1001
+
1002
+ Substantiate is Australia's leading provider of tax logbook services and products, using a mix of technology and in-house expertise to provide innovative solutions to clients.
1003
+
1004
+
1005
+
1006
+
1007
+
1008
+
1009
+
1010
+
1011
+
1012
+ Product:
1013
+
1014
+
1015
+
1016
+
1017
+
1018
+
1019
+
1020
+
1021
+
1022
+ \begin{itemize}
1023
+ \item Tax consulting
1024
+ \end{itemize}
1025
+
1026
+
1027
+
1028
+ \begin{itemize}
1029
+ \item Automate analysis of FBT, FTC and other tax legislation using GPS data and publicly available road databases (Australian road databases + Open Street Map)
1030
+ \end{itemize}
1031
+
1032
+
1033
+
1034
+ \begin{itemize}
1035
+ \item Produce ATO compliant reports for lodgement by client
1036
+ \end{itemize}
1037
+
1038
+
1039
+
1040
+
1041
+
1042
+
1043
+
1044
+
1045
+ Project responsibilities:
1046
+
1047
+
1048
+
1049
+
1050
+
1051
+
1052
+
1053
+
1054
+
1055
+ \begin{itemize}
1056
+ \item Leveraging the Skylock platform's GPS capabilities (see other project) extend the Architecture to support reporting and analysis needs of the Substantiate arm of the business
1057
+ \end{itemize}
1058
+
1059
+
1060
+
1061
+ \begin{itemize}
1062
+ \item Create web reporting interface
1063
+ \end{itemize}
1064
+
1065
+
1066
+
1067
+ \begin{itemize}
1068
+ \item Create generic data ingestion platform for bulk, one-off analyses
1069
+ \end{itemize}
1070
+
1071
+
1072
+
1073
+ \begin{itemize}
1074
+ \item Use of data analysis tools (Hadoop ecosystem, NoSQL databases, R etc.) to look at other financial opportunities for clients
1075
+ \end{itemize}
1076
+
1077
+
1078
+
1079
+ \begin{itemize}
1080
+ \item Ad-hoc data analysis and reporting (Generally Ruby Scripting around above tools)
1081
+ \end{itemize}
1082
+
1083
+
1084
+
1085
+ }
1086
+
1087
+ \vspace{.5em} % Extra space between sections
1088
+ %------------------------------------------------
1089
+
1090
+
1091
+
1092
+
1093
+ \NewEntry{4/2012--9/2012}{\textsc{Freelance}}
1094
+
1095
+
1096
+ \Description{\MarginText{Skylock - Cloud-based GPS Security Portal}
1097
+
1098
+
1099
+ SkyLock is a cloud-based security product, providing an affordable and intuitive GPS tracking solution for the recreational vehicle market (Cars, Caravans, Boats etc.)
1100
+
1101
+
1102
+
1103
+
1104
+
1105
+
1106
+
1107
+
1108
+
1109
+ Core product features:
1110
+
1111
+
1112
+
1113
+
1114
+
1115
+
1116
+
1117
+
1118
+
1119
+ \begin{itemize}
1120
+ \item 24/7 monitoring
1121
+ \end{itemize}
1122
+
1123
+
1124
+
1125
+ \begin{itemize}
1126
+ \item Intuitive Web interface with near-real time event tracking
1127
+ \end{itemize}
1128
+
1129
+
1130
+
1131
+ \begin{itemize}
1132
+ \item Geofencing, Tow alarms, speed alerts and more
1133
+ \end{itemize}
1134
+
1135
+
1136
+
1137
+
1138
+
1139
+
1140
+
1141
+
1142
+ Project responsibilities:
1143
+
1144
+
1145
+
1146
+
1147
+
1148
+
1149
+
1150
+
1151
+
1152
+ \begin{itemize}
1153
+ \item Design and deliver solution architecture
1154
+ \end{itemize}
1155
+
1156
+
1157
+
1158
+ \begin{itemize}
1159
+ \item Implementation of secure (OAuth2) RESTful API, integration middleware and micro-service components (Fuse ESB \ MoM \ JEE)
1160
+ \end{itemize}
1161
+
1162
+
1163
+
1164
+ \begin{itemize}
1165
+ \item Oversee Web Development (Spring MVC) stream
1166
+ \end{itemize}
1167
+
1168
+
1169
+
1170
+ \begin{itemize}
1171
+ \item Setup and deployment of HA infrastructure to AWS cloud, including CI and deployment automation
1172
+ \end{itemize}
1173
+
1174
+
1175
+
1176
+ }
1177
+
1178
+ \vspace{.5em} % Extra space between sections
1179
+ %------------------------------------------------
1180
+
1181
+
1182
+
1183
+
1184
+ \NewEntry{1/2013--3/2013}{\textsc{Melbourne IT}}
1185
+
1186
+
1187
+ \Description{\MarginText{Auto-renewal}
1188
+
1189
+
1190
+ Part of an E2E solution that delivered industries highest auto-renewal rates for domain names (\textgreater 80\%)
1191
+
1192
+
1193
+
1194
+
1195
+
1196
+
1197
+
1198
+
1199
+
1200
+ \begin{itemize}
1201
+ \item UX implementation and careful interaction design played critical role in opting in more customers and reduction in opt-out
1202
+ \end{itemize}
1203
+
1204
+
1205
+
1206
+ \begin{itemize}
1207
+ \item Worked with talented Marketing group on communications (on/offline)
1208
+ \end{itemize}
1209
+
1210
+
1211
+
1212
+ }
1213
+
1214
+ \vspace{.5em} % Extra space between sections
1215
+ %------------------------------------------------
1216
+
1217
+
1218
+ %\NewEntry{website}{\href{http://www.webcentral.com.au/order/}{http://www.webcentral.com.au/order/}} % Project website
1219
+
1220
+
1221
+
1222
+ \NewEntry{1/2010--11/2012}{\textsc{Melbourne IT}}
1223
+
1224
+
1225
+ \Description{\MarginText{Business Transformation Programme (IWS)}
1226
+
1227
+
1228
+ The transformation programme is an IT integration and business transformation project brought about primarily to standardise business functions \& processes, and to consolidate core customer information into a single system. This would enable Melbourne IT to more efficiently manage its customers, improve service offerings and
1229
+
1230
+
1231
+
1232
+
1233
+
1234
+
1235
+
1236
+
1237
+
1238
+ I have served in a Solution Architect type role around the Web Properties integration piece which forms the all-important pointy part of the value chain – the direct interaction between Melbourne IT and its customers.
1239
+
1240
+
1241
+
1242
+
1243
+
1244
+
1245
+
1246
+
1247
+
1248
+ My involvement in the project to date has included the following:
1249
+
1250
+
1251
+
1252
+
1253
+ \begin{itemize}
1254
+ \item Acting as a Subject Matter Expert (SME), providing advice on scoping and preparing the Web sub-project’s business requirements
1255
+ \end{itemize}
1256
+
1257
+
1258
+
1259
+ \begin{itemize}
1260
+ \item High-level design for integrating existing websites, service portals, the new Oracle suite and our existing legacy systems
1261
+ \end{itemize}
1262
+
1263
+
1264
+
1265
+ \begin{itemize}
1266
+ \item Technical lead, including mid-level and detailed designs for the implementation of 5 sub-streams.
1267
+ \end{itemize}
1268
+
1269
+
1270
+
1271
+ }
1272
+
1273
+ \vspace{.5em} % Extra space between sections
1274
+ %------------------------------------------------
1275
+
1276
+
1277
+ \vspace{1em} % Extra space between major sections
1278
+
1279
+ %----------------------------------------------------------------------------------------
1280
+ % EDUCATION
1281
+ %----------------------------------------------------------------------------------------
1282
+ \spacedlowsmallcaps{Education}\vspace{1em}
1283
+
1284
+
1285
+
1286
+ \NewEntry{2003-2007}{La Trobe University}
1287
+
1288
+
1289
+
1290
+ \Description{\MarginText{Cognitive Science / Computer Science}GPA: \ $\cdotp$\ \ Field of study: Computer Science, Psychology, Usability\newline
1291
+
1292
+
1293
+
1294
+
1295
+ }
1296
+ \vspace{.5em} % Extra space between sections
1297
+
1298
+
1299
+ \NewEntry{1997-2002}{Billanook College}
1300
+
1301
+
1302
+
1303
+ \Description{\MarginText{High School}
1304
+
1305
+
1306
+
1307
+
1308
+
1309
+ \begin{itemize}
1310
+ \item Sports Captain
1311
+ \end{itemize}
1312
+
1313
+
1314
+
1315
+
1316
+ \begin{itemize}
1317
+ \item Represent school at EIS (Eastern school district sports)
1318
+ \end{itemize}
1319
+
1320
+
1321
+
1322
+
1323
+ \begin{itemize}
1324
+ \item Pierre de Coubertin award
1325
+ \end{itemize}
1326
+
1327
+
1328
+
1329
+
1330
+
1331
+ }
1332
+ \vspace{.5em} % Extra space between sections
1333
+
1334
+
1335
+ %------------------------------------------------
1336
+
1337
+ \vspace{1em} % Extra space between major sections
1338
+
1339
+ %----------------------------------------------------------------------------------------
1340
+ % PUBLICATIONS
1341
+ %----------------------------------------------------------------------------------------
1342
+
1343
+ %\spacedlowsmallcaps{Publications}\vspace{1em}
1344
+
1345
+ %\NewEntry{January 2013}{Publication Title}
1346
+
1347
+ %\Description{\MarginText{Full Journal Name}Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut nisl tellus, sodales non pulvinar in, adipiscing sit amet purus. Suspendisse sed facilisis diam. Sed ornare sem nec justo adipiscing nec venenatis lectus commodo. Mauris non neque ligula. Pellentesque sed quam eu felis iaculis iaculis ac a leo. Suspendisse neque neque, placerat id adipiscing et, elementum eu sem.\\ Authors: John \textsc{Smith}, ~James \textsc{Smith}}
1348
+
1349
+ %------------------------------------------------
1350
+
1351
+ %\NewEntry{Sept. 2012}{Publication Title}
1352
+
1353
+ %\Description{\MarginText{Full Journal Name}Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut nisl tellus, sodales non pulvinar in, adipiscing sit amet purus. Suspendisse sed facilisis diam. Sed ornare sem nec justo adipiscing nec venenatis lectus commodo. Mauris non neque ligula. Pellentesque sed quam eu felis iaculis iaculis ac a leo. Suspendisse neque neque, placerat id adipiscing et, elementum eu sem.\\ Authors: John \textsc{Smith}, ~James \textsc{Smith}}
1354
+
1355
+ %------------------------------------------------
1356
+
1357
+ \vspace{1em} % Extra space between major sections
1358
+
1359
+ %----------------------------------------------------------------------------------------
1360
+ % COMPUTER SKILLS
1361
+ %----------------------------------------------------------------------------------------
1362
+ \spacedlowsmallcaps{Expertise\textbackslash Skills}\vspace{1em}
1363
+
1364
+ \Description{\MarginText{Leadership}
1365
+
1366
+ % Do LinkedIn Skills
1367
+
1368
+ %\textsc{Change Management}
1369
+ Change Management,
1370
+ %\textsc{DevOps}
1371
+ DevOps,
1372
+ %\textsc{Agile Methodologies}
1373
+ Agile Methodologies,
1374
+ %\textsc{Web Development}
1375
+ Web Development,
1376
+ %\textsc{APIs}
1377
+ APIs,
1378
+ %\textsc{E-commerce}
1379
+ E-commerce,
1380
+ %\textsc{HTML 5}
1381
+ HTML 5,
1382
+ %\textsc{Web Applications}
1383
+ Web Applications,
1384
+ %\textsc{Agile Project Management}
1385
+ Agile Project Management,
1386
+ Continuous Delivery}
1387
+
1388
+ % Custom skills supplied via config
1389
+
1390
+
1391
+
1392
+ \Description{\MarginText{Technical}
1393
+ Solution Design \& Architecture, REST, APIs, AWS, Puppet,
1394
+ Automation }
1395
+
1396
+
1397
+
1398
+ \Description{\MarginText{Languages}
1399
+ Java, PHP, Ruby,
1400
+ Scala }
1401
+
1402
+
1403
+
1404
+ %------------------------------------------------
1405
+
1406
+ \vspace{1em} % Extra space between major sections
1407
+
1408
+ %----------------------------------------------------------------------------------------
1409
+ % OTHER INFORMATION
1410
+ %----------------------------------------------------------------------------------------
1411
+
1412
+ \spacedlowsmallcaps{Other Information}\vspace{1em}
1413
+
1414
+ \Description{\MarginText{Interests}The Internet\ \ $\cdotp$\ \ Human Computer Interaction and Usability\ \ $\cdotp$\ \ Basketball\ \ $\cdotp$\ \ Waterskiing\ \ $\cdotp$\ \ Web Programming\ \ $\cdotp$\ \ Java Programming\ \ $\cdotp$\ \ cloud computing\ \ $\cdotp$\ \ mobile\ \ $\cdotp$\ \ responsive design}
1415
+ %----------------------------------------------------------------------------------------
1416
+
1417
+ \AtEndDocument{\vfill%
1418
+ % Your end-of-document content
1419
+ Produced with love by Latex and https://github.com/mefellows/linkedin2cv
1420
+ }
1421
+
1422
+ \end{cv}
1423
+
1424
+ \end{document}