forked from elefevre/BrownBagLunch-sg
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbaggers.js
138 lines (138 loc) · 5.93 KB
/
baggers.js
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
var data = {
"baggers": [
{
"name": "Erwan ALLIAUME",
"bio": "Technical Consultant at OCTO",
"picture": "img/baggers/photo_erwan.jpg",
"websites": [
{
"title": "LinkedIn",
"href": "https://au.linkedin.com/in/erwanalliaume"
}
],
"twitter": "ealliaume",
"contact": "erwan.alliaume@gmail.com",
"mail": "erwan.alliaume@gmail.com",
"location": "Sydney",
"sessions": [
{
"title": "Test-Driven Development",
"summary": "Test-driven development is related to the test-first programming concepts of extreme programming"
},
{
"title": "Behaviour-Driven Development",
"summary": "Behavior-driven development combines the general techniques and principles of TDD with ideas from domain-driven design and object-oriented analysis and design to provide software development and management teams with shared tools and a shared process to collaborate on software development."
},
{
"title": "Feature Flipping",
"summary": "Feature Flipping is a technique that attempts to provide an alternative to maintaining multiple source-code branches at the same place"
},
{
"title": "IT Automation with Ansible",
"summary": "It can configure systems, deploy software, and orchestrate more advanced IT tasks such as continuous deployments or zero downtime rolling updates."
}
],
"tags": [
"Java",
"Code",
"Agile",
"DevOps",
"Cloud",
],
"cities": [
"Sydney"
]
},
{
"name": "David ALIA",
"bio": "CEO and Senior Consultant at OCTO",
"picture": "img/baggers/photo_dal.jpg",
"websites": [
{
"title": "LinkedIn",
"href": "https://au.linkedin.com/in/davidalia"
}
],
"twitter": "davidalia",
"contact": "david.alia@gmail.com",
"mail": "david.alia@gmail.com",
"location": "Sydney",
"sessions": [
{
"title": "Lean Startup",
"summary": "Build a better product or a better business model using Lean Startup tools. Don't say 'I think that' no more, say 'I measure that' instead."
},
{
"title": "Cultural Hacking",
"summary": "So you think your company is able to embrace agility and innovation at scale because you have adopted the brand new copyrighted method? Since we're not ants, and models are false as soon as they are set up, permanent adaptibility will be (also) obtained through strong company's culture understanding and collective improvement."
},
{
"title": "Agile Organisation",
"summary": "Agile for developers is behind us (let's hope!). Agile as a culture for everyone, or agile as a disciplined execution for organisations is still at stake: how do agile projects/products scale, and organisation follow?"
},
{
"title": "Digital Transformation",
"summary": "Digitization is the impact on companies and organisations due to anywhere, anytime and for any usage interconnections of people and objects. The fundamentals of digitization are mainly technical strong assets and permanent adaptability of organisations to reduce time to market and focus on customers' needs"
},
{
"title": "GTD (Getting Things Done)",
"summary": "David Allen's best-seller method seems simple, though hard to use on a daily basis. Find out how discipline and tools can help you be more organized day after day."
}
],
"tags": [
"Agile",
"Lean Startup",
"Digitization",
"Cultural Hacking",
"Architecture",
"Transformation",
"GTD",
],
"cities": [
"Sydney"
]
},
{
"name": "Ali Houssein",
"bio": "Consultant and Business Dev at OCTO",
"picture": "img/baggers/photo_ali.jpg",
"websites": [
{
"title": "LinkedIn",
"href": "https://au.linkedin.com/in/alihoussein"
}
],
"twitter": "AliHoussein",
"contact": "ahoussein@octo.com",
"mail": "ahoussein@octo.com",
"location": "Sydney",
"sessions": [
{
"title": "AWS Overview",
"summary": "Discover the basics of Amazon Web Services through common use cases and practical application examples."
},
{
"title": "Product Owner Best Practices",
"summary": "You are a product owner or just work with agile methods. Discover the best practices in your field and improve your execution."
}
],
"tags": [
"Agile",
"Amazon Web Services",
"AWS",
"Product Owner",
"Best Practices",
],
"cities": [
"Sydney"
]
}
],
"cities": [
{
"name": "Sydney",
"lat": -33.867487,
"lng": 151.206990
}
]
};