sweetie 1.0.2 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (172) hide show
  1. checksums.yaml +5 -5
  2. data/.circleci/config.yml +30 -0
  3. data/.gitignore +3 -0
  4. data/.rubocop.yml +16 -0
  5. data/Gemfile +3 -2
  6. data/README.md +224 -28
  7. data/Rakefile +3 -2
  8. data/lib/sweetie/bitbucket.rb +22 -197
  9. data/lib/sweetie/bitbucket_stati_helper.rb +247 -0
  10. data/lib/sweetie/conversion.rb +91 -62
  11. data/lib/sweetie/helper.rb +60 -51
  12. data/lib/sweetie/version.rb +2 -1
  13. data/lib/sweetie.rb +2 -2
  14. data/spec/fixtures/bitbucket/expected_repositories.txt +1 -0
  15. data/spec/fixtures/bitbucket/repositories.json +1 -0
  16. data/spec/fixtures/jekyll/_config.yml +4 -0
  17. data/spec/fixtures/jekyll/_config_repositories.yml +7 -0
  18. data/spec/fixtures/jekyll/_expected_config.yml +4 -0
  19. data/spec/{source → fixtures/jekyll}/site/404.html +0 -0
  20. data/spec/{source → fixtures/jekyll}/site/about.html +0 -0
  21. data/spec/{source → fixtures/jekyll}/site/archiv.html +0 -0
  22. data/spec/{source → fixtures/jekyll}/site/atom.xml +0 -0
  23. data/spec/{source → fixtures/jekyll}/site/colophon.html +0 -0
  24. data/spec/{source → fixtures/jekyll}/site/contact.html +0 -0
  25. data/spec/{source → fixtures/jekyll}/site/follow.html +0 -0
  26. data/spec/{source → fixtures/jekyll}/site/images/2_avatars.gif +0 -0
  27. data/spec/{source → fixtures/jekyll}/site/images/favicon.png +0 -0
  28. data/spec/{source → fixtures/jekyll}/site/images/images-global/matthias_guenther.jpg +0 -0
  29. data/spec/{source → fixtures/jekyll}/site/images/images-global/matthias_guenther_thumbnail_normal.jpg +0 -0
  30. data/spec/{source → fixtures/jekyll}/site/images/images-global/matthias_guenther_thumbnail_small.jpg +0 -0
  31. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/closebox.png +0 -0
  32. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-caption-fill.png +0 -0
  33. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-caption-l.png +0 -0
  34. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-caption-r.png +0 -0
  35. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow1.png +0 -0
  36. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow2.png +0 -0
  37. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow3.png +0 -0
  38. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow4.png +0 -0
  39. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow5.png +0 -0
  40. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow6.png +0 -0
  41. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow7.png +0 -0
  42. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow8.png +0 -0
  43. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-1.png +0 -0
  44. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-10.png +0 -0
  45. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-11.png +0 -0
  46. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-12.png +0 -0
  47. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-2.png +0 -0
  48. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-3.png +0 -0
  49. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-4.png +0 -0
  50. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-5.png +0 -0
  51. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-6.png +0 -0
  52. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-7.png +0 -0
  53. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-8.png +0 -0
  54. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-9.png +0 -0
  55. data/spec/{source → fixtures/jekyll}/site/images/rails3.jpg +0 -0
  56. data/spec/{source → fixtures/jekyll}/site/index.html +0 -0
  57. data/spec/{source → fixtures/jekyll}/site/robots.txt +0 -0
  58. data/spec/{source → fixtures/jekyll}/site/sitemap.xml +0 -0
  59. data/spec/{source → fixtures/jekyll}/site/why-i-use-jekyll-for-blogging.html +0 -0
  60. data/spec/fixtures/middleman/build/2012-01-meetup/index.html +238 -0
  61. data/spec/fixtures/middleman/build/2012-03-meetup/index.html +217 -0
  62. data/spec/fixtures/middleman/build/2012-05-meetup/index.html +214 -0
  63. data/spec/fixtures/middleman/build/2012-07-meetup/index.html +210 -0
  64. data/spec/fixtures/middleman/build/2012-08-workshop/index.html +228 -0
  65. data/spec/fixtures/middleman/build/2012-09-meetup/index.html +231 -0
  66. data/spec/fixtures/middleman/build/2012-10-workshop/index.html +227 -0
  67. data/spec/fixtures/middleman/build/2012-11-meetup/index.html +229 -0
  68. data/spec/fixtures/middleman/build/2012-unusual-december-meetup/index.html +186 -0
  69. data/spec/fixtures/middleman/build/2013-01-meetup/index.html +226 -0
  70. data/spec/fixtures/middleman/build/404/index.html +157 -0
  71. data/spec/fixtures/middleman/build/CNAME +1 -0
  72. data/spec/fixtures/middleman/build/april-2014-meetup/index.html +221 -0
  73. data/spec/fixtures/middleman/build/april-2015-meetup/index.html +204 -0
  74. data/spec/fixtures/middleman/build/april-2017-meetup/index.html +210 -0
  75. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-144x144.png +0 -0
  76. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-192x192.png +0 -0
  77. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-36x36.png +0 -0
  78. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-48x48.png +0 -0
  79. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-72x72.png +0 -0
  80. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-96x96.png +0 -0
  81. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-114x114.png +0 -0
  82. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-120x120.png +0 -0
  83. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-144x144.png +0 -0
  84. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-152x152.png +0 -0
  85. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-180x180.png +0 -0
  86. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-57x57.png +0 -0
  87. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-60x60.png +0 -0
  88. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-72x72.png +0 -0
  89. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-76x76.png +0 -0
  90. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-precomposed.png +0 -0
  91. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon.png +0 -0
  92. data/spec/fixtures/middleman/build/assets/favicons/browserconfig.xml +12 -0
  93. data/spec/fixtures/middleman/build/assets/favicons/favicon-16x16.png +0 -0
  94. data/spec/fixtures/middleman/build/assets/favicons/favicon-32x32.png +0 -0
  95. data/spec/fixtures/middleman/build/assets/favicons/favicon-96x96.png +0 -0
  96. data/spec/fixtures/middleman/build/assets/favicons/favicon.ico +0 -0
  97. data/spec/fixtures/middleman/build/assets/favicons/manifest.json +41 -0
  98. data/spec/fixtures/middleman/build/assets/favicons/mstile-144x144.png +0 -0
  99. data/spec/fixtures/middleman/build/assets/favicons/mstile-150x150.png +0 -0
  100. data/spec/fixtures/middleman/build/assets/favicons/mstile-310x150.png +0 -0
  101. data/spec/fixtures/middleman/build/assets/favicons/mstile-310x310.png +0 -0
  102. data/spec/fixtures/middleman/build/assets/favicons/mstile-70x70.png +0 -0
  103. data/spec/fixtures/middleman/build/assets/favicons/safari-pinned-tab.svg +450 -0
  104. data/spec/fixtures/middleman/build/assets/images/launch_co_logo.png +0 -0
  105. data/spec/fixtures/middleman/build/assets/images/vimfest.png +0 -0
  106. data/spec/fixtures/middleman/build/assets/javascripts/application.js +12 -0
  107. data/spec/fixtures/middleman/build/assets/javascripts/jquery.utils.js +12 -0
  108. data/spec/fixtures/middleman/build/assets/javascripts/lib/validate.js +1 -0
  109. data/spec/fixtures/middleman/build/assets/stylesheets/application.css +5 -0
  110. data/spec/fixtures/middleman/build/assets/stylesheets/vendor/bootstrap.css +5 -0
  111. data/spec/fixtures/middleman/build/august-2013-meetup/index.html +208 -0
  112. data/spec/fixtures/middleman/build/blog/index.html +500 -0
  113. data/spec/fixtures/middleman/build/book-club-about-the-viml-primer/index.html +182 -0
  114. data/spec/fixtures/middleman/build/contact/index.html +155 -0
  115. data/spec/fixtures/middleman/build/data/vimberlin-2013-09_ctags/index.html +98 -0
  116. data/spec/fixtures/middleman/build/data/vimberlin-2013-09_vimprofiling/index.html +157 -0
  117. data/spec/fixtures/middleman/build/data/vimberlin-2014-01_vim_writing/index.html +70 -0
  118. data/spec/fixtures/middleman/build/december-2015-meetup/index.html +199 -0
  119. data/spec/fixtures/middleman/build/december-2016-meetup/index.html +224 -0
  120. data/spec/fixtures/middleman/build/february-2013-vim-beer-lin/index.html +190 -0
  121. data/spec/fixtures/middleman/build/february-2015-meetup/index.html +233 -0
  122. data/spec/fixtures/middleman/build/february-2016-meetup/index.html +271 -0
  123. data/spec/fixtures/middleman/build/feed.xml +2106 -0
  124. data/spec/fixtures/middleman/build/fonts/FontAwesome.otf +0 -0
  125. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.eot +0 -0
  126. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.svg +655 -0
  127. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.ttf +0 -0
  128. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.woff +0 -0
  129. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.woff2 +0 -0
  130. data/spec/fixtures/middleman/build/humans.txt +12 -0
  131. data/spec/fixtures/middleman/build/imprint/index.html +177 -0
  132. data/spec/fixtures/middleman/build/index.html +157 -0
  133. data/spec/fixtures/middleman/build/january-2014-meetup/index.html +257 -0
  134. data/spec/fixtures/middleman/build/january-2015-meetup/index.html +243 -0
  135. data/spec/fixtures/middleman/build/january-2016-meetup/index.html +202 -0
  136. data/spec/fixtures/middleman/build/january-2017-meetup/index.html +228 -0
  137. data/spec/fixtures/middleman/build/july-2015-meetup/index.html +207 -0
  138. data/spec/fixtures/middleman/build/june-2016-meetup/index.html +260 -0
  139. data/spec/fixtures/middleman/build/march-2-2017-meetup/index.html +201 -0
  140. data/spec/fixtures/middleman/build/march-2014-meetup/index.html +219 -0
  141. data/spec/fixtures/middleman/build/march-2016-meetup/index.html +221 -0
  142. data/spec/fixtures/middleman/build/march-2017-meetup/index.html +222 -0
  143. data/spec/fixtures/middleman/build/may-2013-meetup/index.html +234 -0
  144. data/spec/fixtures/middleman/build/may-2014-meetup/index.html +198 -0
  145. data/spec/fixtures/middleman/build/may-2015-meetup/index.html +202 -0
  146. data/spec/fixtures/middleman/build/may-2016-meetup/index.html +245 -0
  147. data/spec/fixtures/middleman/build/newsletter/index.html +171 -0
  148. data/spec/fixtures/middleman/build/november-2013-meetup/index.html +199 -0
  149. data/spec/fixtures/middleman/build/november-2015-meetup/index.html +402 -0
  150. data/spec/fixtures/middleman/build/november-2016-meetup/index.html +224 -0
  151. data/spec/fixtures/middleman/build/october-2013-meetup/index.html +210 -0
  152. data/spec/fixtures/middleman/build/october-2014-meetup/index.html +196 -0
  153. data/spec/fixtures/middleman/build/october-2016-meetup/index.html +222 -0
  154. data/spec/fixtures/middleman/build/robots.txt +6 -0
  155. data/spec/fixtures/middleman/build/september-2013-meetup/index.html +225 -0
  156. data/spec/fixtures/middleman/build/september-2014-meetup/index.html +211 -0
  157. data/spec/fixtures/middleman/build/sitemap.xml +297 -0
  158. data/spec/fixtures/middleman/build/vimfest-october-2015/index.html +303 -0
  159. data/spec/fixtures/middleman/config.rb +4 -0
  160. data/spec/fixtures/middleman/config_repositories.rb +7 -0
  161. data/spec/fixtures/middleman/expected_config.rb +4 -0
  162. data/spec/spec_helper.rb +2 -2
  163. data/spec/sweetie_bitbucket_spec.rb +26 -51
  164. data/spec/sweetie_bitbucket_stati_helper_spec.rb +124 -0
  165. data/spec/sweetie_conversion_spec.rb +105 -17
  166. data/spec/sweetie_helper_spec.rb +140 -0
  167. data/sweetie.gemspec +10 -9
  168. metadata +163 -56
  169. data/.travis.yml +0 -7
  170. data/spec/source/_config.yml +0 -18
  171. data/spec/source/bitbucket/user_repositories.json +0 -161
  172. data/spec/source/bitbucket/user_repositories_expectation.txt +0 -1
@@ -0,0 +1,500 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html itemscope itemtype="http://schema.org/WebPage">
4
+ <head>
5
+ <meta charset="utf-8" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
7
+ <title>Blog - Vimberlin</title>
8
+ <meta name="description" content="Latest posts">
9
+ <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
10
+ <link href="/assets/stylesheets/application.css" rel="stylesheet" type="text/css" />
11
+ <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
12
+ <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
13
+ <link rel="apple-touch-icon" sizes="57x57" href="/assets/favicons/apple-touch-icon-57x57.png">
14
+ <link rel="apple-touch-icon" sizes="60x60" href="/assets/favicons/apple-touch-icon-60x60.png">
15
+ <link rel="apple-touch-icon" sizes="72x72" href="/assets/favicons/apple-touch-icon-72x72.png">
16
+ <link rel="apple-touch-icon" sizes="76x76" href="/assets/favicons/apple-touch-icon-76x76.png">
17
+ <link rel="apple-touch-icon" sizes="114x114" href="/assets/favicons/apple-touch-icon-114x114.png">
18
+ <link rel="apple-touch-icon" sizes="120x120" href="/assets/favicons/apple-touch-icon-120x120.png">
19
+ <link rel="apple-touch-icon" sizes="144x144" href="/assets/favicons/apple-touch-icon-144x144.png">
20
+ <link rel="apple-touch-icon" sizes="152x152" href="/assets/favicons/apple-touch-icon-152x152.png">
21
+ <link rel="apple-touch-icon" sizes="180x180" href="/assets/favicons/apple-touch-icon-180x180.png">
22
+ <link rel="icon" type="image/png" href="/assets/favicons/favicon-32x32.png" sizes="32x32">
23
+ <link rel="icon" type="image/png" href="/assets/favicons/android-chrome-192x192.png" sizes="192x192">
24
+ <link rel="icon" type="image/png" href="/assets/favicons/favicon-96x96.png" sizes="96x96">
25
+ <link rel="icon" type="image/png" href="/assets/favicons/favicon-16x16.png" sizes="16x16">
26
+ <link rel="manifest" href="/assets/favicons/manifest.json">
27
+ <link rel="mask-icon" href="/assets/favicons/safari-pinned-tab.svg">
28
+ <link rel="shortcut icon" href="/assets/favicons/favicon.ico">
29
+ <meta name="apple-mobile-web-app-title" content="vimberlin">
30
+ <meta name="application-name" content="vimberlin">
31
+ <meta name="msapplication-TileColor" content="#da532c">
32
+ <meta name="msapplication-TileImage" content="/assets/favicons/mstile-144x144.png">
33
+ <meta name="msapplication-config" content="/assets/favicons/browserconfig.xml">
34
+ <meta name="theme-color" content="#ffffff">
35
+
36
+ </head>
37
+
38
+ <body>
39
+ <header>
40
+ <div class="container">
41
+ <div class="row">
42
+ <div class="col-md-2 col-md-offset-1 hidden-xs">
43
+ <a href="/"><img class="headline-image" alt="Vimberlin headline image" src="https://pbs.twimg.com/profile_images/1761428936/vim10_200x200.JPG" /></a>
44
+ </div>
45
+ <div class="col-md-7 hidden-xs">
46
+ <h1 class="headline-link"> <a href="/">Vimberlin</a></h1><br>
47
+ <span class="headline"><a href="/">the gathering for Vim-enthusiasts in Berlin</a></span>
48
+ </div>
49
+ </div>
50
+ <div class="row">
51
+ <div class="col-md-10 col-md-offset-1">
52
+ <nav class="navbar navbar-default navbar-primary">
53
+ <!-- Brand and toggle get grouped for better mobile display -->
54
+ <div class="navbar-header">
55
+ <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".nav-primary">
56
+ <span class="sr-only">Toggle navigation</span>
57
+ <i class="fa fa-navicon"></i>
58
+ </button>
59
+ </div>
60
+
61
+ <!-- Collect the nav links, forms, and other content for toggling -->
62
+ <div class="collapse navbar-collapse nav-primary">
63
+ <ul class="nav navbar-nav navbar-right">
64
+ <li class="active"><a href="/blog">Blog</a></li>
65
+ <li class=""><a href="/newsletter">Newsletter</a></li>
66
+ <li><a target="_blank" rel="noopener noreferrer" href="http://feeds.feedburner.com/vimberlin"><i class="fa fa-rss" aria-hidden="true"></i></a></li>
67
+ <li><a target="_blank" rel="noopener noreferrer" href="https://twitter.com/vimberlin"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
68
+ <li><a target="_blank" rel="noopener noreferrer" href="https://www.facebook.com/vimberlin/"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
69
+ <li><a target="_blank" rel="noopener noreferrer" href="https://plus.google.com/104181155837327547516"><i class="fa fa-google-plus" aria-hidden="true"></i></a></li>
70
+ <li><a target="_blank" rel="noopener noreferrer" href="https://github.com/vimberlin/vimberlin.de"><i class="fa fa-github" aria-hidden="true"></i></a></li>
71
+ <li><a target="_blank" rel="noopener noreferrer" href="https://groups.google.com/group/vimberlin/#"><i class="fa fa-envelope" aria-hidden="true"></i></a></li>
72
+ </ul>
73
+ </div><!-- /.navbar-collapse -->
74
+ </nav>
75
+
76
+ </div>
77
+ </div>
78
+ </div>
79
+ </header>
80
+
81
+ <main>
82
+ <div class="container">
83
+ <div class="row">
84
+ <div class="col-md-10 col-md-offset-1">
85
+ <article>
86
+ <h2>
87
+ <a href="/april-2017-meetup/">April 2017 Meetup - 20th 7:00 pm</a>
88
+
89
+
90
+ </h2>
91
+ <br>
92
+ <strong class="show-for-medium-up">Time: </strong><span itemprop="startDate">Starts 20 April 7:00 pm</span>
93
+ <br>
94
+ <strong class="show-for-medium-up">Location: </strong>
95
+ <span itemtype="http://schema.org/PostalAddress" itemscope="" itemprop="location">
96
+ <span>
97
+ <a href="https://www.in-berlin.de/space">
98
+ <span itemprop="name">Individual Network Berlin e.V.</span>
99
+ </a>
100
+
101
+ </span>
102
+ <span itemprop="streetAddress">, Lehrter Str. 53</span>
103
+ <span>
104
+ <span itemprop="postalCode">, 10557</span>
105
+ <span itemprop="addressLocality">Berlin</span>
106
+ </span>
107
+ <meta content="Germany" itemprop="addressCountry">
108
+ (<a href="http://www.openstreetmap.org/node/412766878#map=19/52.53428/13.35880">map</a>)
109
+ </span>
110
+ <br>
111
+ <br>
112
+
113
+ <p>Hi,</p>
114
+
115
+ <p>the April meetup in 2017 is just around the corner. We&#39;ll meet on 20th Thursday in April at IN-Berlin in Moabit/Tiergarten/Mitte,
116
+ just north of Hauptbahnhof between the bus stops <code>&quot;Quitzowstraße&quot;</code> (Bus 123, M27) and <code>&quot;Kruppstraße&quot;</code> (Bus 123).</p>
117
+
118
+ <p>Interested? We are always interested in short-talks, longer talks as well as presentations about what you&#39;ve learned.</p>
119
+
120
+ <h2>The venue</h2>
121
+
122
+ <ul>
123
+ <li>internet: yes. cable+wifi</li>
124
+ <li>projector: 2 projectors. (VGA+HDMI), if you have a Mac, don&#39;t forget your adapters and/or install
125
+ <a href="http://www.teamviewer.com/de/">teamviewer.com/</a>
126
+
127
+ <ul>
128
+ <li>room: 15 people</li>
129
+ <li>drinks: fridge with drinks. 1€ each.</li>
130
+ </ul></li>
131
+ </ul>
132
+
133
+ <p>Bring your laptops - and join the fun! And show us <em>your</em> use with Vim! Be brief.. 5min for each presentation. We are
134
+ open to any kind of questions and suggestions.</p>
135
+
136
+ <p>Your host will be <a title="Sven Guckes" href="http://www.guckes.net">Sven Guckes (@guckes)</a> &amp; <a title="Matthias Guenther (@wikimatze)" href="http://wikimatze.de/">Matthias Guenther
137
+ (@wikimatze)</a></p>
138
+
139
+ <p>See you there!</p>
140
+
141
+ </article>
142
+ <article>
143
+ <h2>
144
+ <a href="/march-2-2017-meetup/">March 2017 Meetup - 16th 7:00 pm</a>
145
+
146
+
147
+ </h2>
148
+ </article>
149
+ <article>
150
+ <h2>
151
+ <a href="/march-2017-meetup/">March 2017 Meetup - 9th 7:00 pm</a>
152
+
153
+
154
+ </h2>
155
+ </article>
156
+ <article>
157
+ <h2>
158
+ <a href="/january-2017-meetup/">January 2017 Meetup - 19th 7:00 pm</a>
159
+
160
+
161
+ </h2>
162
+ </article>
163
+ <article>
164
+ <h2>
165
+ <a href="/december-2016-meetup/">December 2016 Meetup - 15th 7:00 pm</a>
166
+
167
+
168
+ </h2>
169
+ </article>
170
+ <article>
171
+ <h2>
172
+ <a href="/november-2016-meetup/">November 2016 Meetup - 17th 7:00 pm</a>
173
+ <a href="/november-2016-meetup/#comments">(1
174
+ Comment)</a>
175
+
176
+ </h2>
177
+ </article>
178
+ <article>
179
+ <h2>
180
+ <a href="/october-2016-meetup/">October 2016 Meetup - 13th 7:00 pm</a>
181
+
182
+
183
+ </h2>
184
+ </article>
185
+ <article>
186
+ <h2>
187
+ <a href="/june-2016-meetup/">June 2016 Meetup - 16th 7:00 pm</a>
188
+
189
+
190
+ </h2>
191
+ </article>
192
+ <article>
193
+ <h2>
194
+ <a href="/may-2016-meetup/">May 2016 Meetup - 19th 7:00 pm</a>
195
+
196
+
197
+ </h2>
198
+ </article>
199
+ <article>
200
+ <h2>
201
+ <a href="/march-2016-meetup/">March 2016 Meetup - 24th 7:00 pm</a>
202
+
203
+
204
+ </h2>
205
+ </article>
206
+ <article>
207
+ <h2>
208
+ <a href="/february-2016-meetup/">February 2016 Meetup - 18th 7:00 pm</a>
209
+
210
+
211
+ </h2>
212
+ </article>
213
+ <article>
214
+ <h2>
215
+ <a href="/january-2016-meetup/">January 2016 Meetup - 21th 7:00 pm</a>
216
+
217
+
218
+ </h2>
219
+ </article>
220
+ <article>
221
+ <h2>
222
+ <a href="/december-2015-meetup/">December 2015 Meetup - 17th 7:00 pm</a>
223
+
224
+
225
+ </h2>
226
+ </article>
227
+ <article>
228
+ <h2>
229
+ <a href="/november-2015-meetup/">November 2015 Meetup - 19th 7:00 pm</a>
230
+
231
+
232
+ </h2>
233
+ </article>
234
+ <article>
235
+ <h2>
236
+ <a href="/vimfest-october-2015/">October 2015 Meetup - 10th 10:00 am</a>
237
+
238
+
239
+ </h2>
240
+ </article>
241
+ <article>
242
+ <h2>
243
+ <a href="/july-2015-meetup/">July 2015 Meetup - 27th 7:00 pm</a>
244
+
245
+
246
+ </h2>
247
+ </article>
248
+ <article>
249
+ <h2>
250
+ <a href="/may-2015-meetup/">May 2015 Meetup - 28th 7:00 pm</a>
251
+
252
+
253
+ </h2>
254
+ </article>
255
+ <article>
256
+ <h2>
257
+ <a href="/april-2015-meetup/">April 2015 Meetup - 23th 7:00 pm</a>
258
+
259
+
260
+ </h2>
261
+ </article>
262
+ <article>
263
+ <h2>
264
+ <a href="/book-club-about-the-viml-primer/">Book Club About "The VimL Primer"</a>
265
+ <a href="/book-club-about-the-viml-primer/#comments">(1
266
+ Comment)</a>
267
+
268
+ </h2>
269
+ </article>
270
+ <article>
271
+ <h2>
272
+ <a href="/february-2015-meetup/">February 2015 Meetup - 19th 7:00 pm</a>
273
+
274
+
275
+ </h2>
276
+ </article>
277
+ <article>
278
+ <h2>
279
+ <a href="/january-2015-meetup/">January 2015 Meetup - 22th 7:00 pm</a>
280
+
281
+
282
+ </h2>
283
+ </article>
284
+ <article>
285
+ <h2>
286
+ <a href="/october-2014-meetup/">October 2014 Meetup - 23th 7:00 pm</a>
287
+
288
+
289
+ </h2>
290
+ </article>
291
+ <article>
292
+ <h2>
293
+ <a href="/september-2014-meetup/">September 2014 Meetup - 25th 7:00 pm</a>
294
+
295
+
296
+ </h2>
297
+ </article>
298
+ <article>
299
+ <h2>
300
+ <a href="/may-2014-meetup/">May 2014 Meetup - 22th 7:00 pm</a>
301
+
302
+
303
+ </h2>
304
+ </article>
305
+ <article>
306
+ <h2>
307
+ <a href="/april-2014-meetup/">April 2014 Meetup - 24th 7:30 pm</a>
308
+
309
+
310
+ </h2>
311
+ </article>
312
+ <article>
313
+ <h2>
314
+ <a href="/march-2014-meetup/">March 2014 Meetup - 27th 7:00 pm</a>
315
+
316
+
317
+ </h2>
318
+ </article>
319
+ <article>
320
+ <h2>
321
+ <a href="/january-2014-meetup/">January 2014 Meetup - 23th 7:30 pm</a>
322
+
323
+
324
+ </h2>
325
+ </article>
326
+ <article>
327
+ <h2>
328
+ <a href="/november-2013-meetup/">November 2013 Meetup - 28th 7:30 pm</a>
329
+
330
+
331
+ </h2>
332
+ </article>
333
+ <article>
334
+ <h2>
335
+ <a href="/october-2013-meetup/">October 2013 Meetup - 24th 7:00 pm</a>
336
+
337
+
338
+ </h2>
339
+ </article>
340
+ <article>
341
+ <h2>
342
+ <a href="/september-2013-meetup/">September 2013 Meetup - 26th 7:00 pm</a>
343
+
344
+
345
+ </h2>
346
+ </article>
347
+ <article>
348
+ <h2>
349
+ <a href="/august-2013-meetup/">August 2013 Meetup - 29th 6:30 pm</a>
350
+
351
+
352
+ </h2>
353
+ </article>
354
+ <article>
355
+ <h2>
356
+ <a href="/may-2013-meetup/">May 2013 Meetup - 28th 7:00 pm</a>
357
+
358
+
359
+ </h2>
360
+ </article>
361
+ <article>
362
+ <h2>
363
+ <a href="/february-2013-vim-beer-lin/">February 2013 Meetup - 28th 8:00 pm</a>
364
+
365
+
366
+ </h2>
367
+ </article>
368
+ <article>
369
+ <h2>
370
+ <a href="/2013-01-meetup/">January 2013 Meetup - 22th 7:30 pm</a>
371
+
372
+
373
+ </h2>
374
+ </article>
375
+ <article>
376
+ <h2>
377
+ <a href="/2012-unusual-december-meetup/">December 2012 Meetup - 20th 7:30 pm</a>
378
+
379
+
380
+ </h2>
381
+ </article>
382
+ <article>
383
+ <h2>
384
+ <a href="/2012-11-meetup/">November 2012 Meetup - 22th 7:30 pm</a>
385
+
386
+
387
+ </h2>
388
+ </article>
389
+ <article>
390
+ <h2>
391
+ <a href="/2012-10-workshop/">October 2012 Meetup - 25th 8:00 pm</a>
392
+
393
+
394
+ </h2>
395
+ </article>
396
+ <article>
397
+ <h2>
398
+ <a href="/2012-09-meetup/">September 2012 Meetup - 27th 8:00 pm</a>
399
+
400
+
401
+ </h2>
402
+ </article>
403
+ <article>
404
+ <h2>
405
+ <a href="/2012-08-workshop/">August 2012 Meetup - 29th 7:00 pm</a>
406
+
407
+
408
+ </h2>
409
+ </article>
410
+ <article>
411
+ <h2>
412
+ <a href="/2012-07-meetup/">July 2012 Meetup - 26th 8:00 pm</a>
413
+
414
+
415
+ </h2>
416
+ </article>
417
+ <article>
418
+ <h2>
419
+ <a href="/2012-05-meetup/">May 2012 Meetup - 24th 8:00 pm</a>
420
+
421
+
422
+ </h2>
423
+ </article>
424
+ <article>
425
+ <h2>
426
+ <a href="/2012-03-meetup/">March 2012 Meetup - 22th 8:00 pm</a>
427
+
428
+
429
+ </h2>
430
+ </article>
431
+ <article>
432
+ <h2>
433
+ <a href="/2012-01-meetup/">January 2012 Meetup - 26th 8:00 pm</a>
434
+
435
+
436
+ </h2>
437
+ </article>
438
+ </div>
439
+ </div>
440
+ </div>
441
+
442
+ </main>
443
+ <div class="footer--colophon hidden-xs">
444
+ <div class="container">
445
+ <div class="row">
446
+ <div class="col-md-6 col-md-offset-1">
447
+ <p class="footer--colophon__copyright">
448
+ <a href="/imprint"> Imprint</a>
449
+ <a style="border-left: #d5dbde 1px solid;margin-left: 8px; padding-left: 12px;" href="/contact">Contact</a>
450
+ <a target="_blank" rel="noopener noreferrer" href="http://vimfest.org" style="border-left: #d5dbde 1px solid;margin-left: 8px; padding-left: 12px;">Vimfest</a>
451
+ <a class="footer-link" style="border-left: #d5dbde 1px solid;margin-left: 8px" target="_blank" rel="noopener noreferrer" href="http://feeds.feedburner.com/vimberlin"><i class="fa fa-rss" aria-hidden="true"></i></a>
452
+ &nbsp;
453
+ <a class="footer-link" target="_blank" rel="noopener noreferrer" href="https://twitter.com/vimberlin"><i class="fa fa-twitter" aria-hidden="true"></i></a>
454
+ &nbsp;
455
+ <a class="footer-link" target="_blank" rel="noopener noreferrer" href="https://www.facebook.com/vimberlin/"><i class="fa fa-facebook" aria-hidden="true"></i></a>
456
+ &nbsp;
457
+ <a class="footer-link" target="_blank" rel="noopener noreferrer" href="https://plus.google.com/104181155837327547516"><i class="fa fa-google-plus" aria-hidden="true"></i></a>
458
+ &nbsp;
459
+ <a class="footer-link" target="_blank" rel="noopener noreferrer" href="https://github.com/vimberlin/vimberlin.de"><i class="fa fa-github" aria-hidden="true"></i></a>
460
+ &nbsp;
461
+ <a class="footer-link" target="_blank" rel="noopener noreferrer" href="https://groups.google.com/group/vimberlin/#"><i class="fa fa-envelope" aria-hidden="true"></i></a>
462
+ </p>
463
+ </div>
464
+ <div class="col-md-2 col-md-offset-3 hidden-xs">
465
+ <p class="footer--colophon__poweredby">Powered by <a href="https://github.com/timknight/middleman-ethos" target="_blank">Ethos</a></p>
466
+ </div>
467
+ </div>
468
+ </div>
469
+ </div>
470
+
471
+ <script type="text/javascript">
472
+ var _paq = _paq || [];
473
+ _paq.push(['trackPageView']);
474
+ _paq.push(['enableLinkTracking']);
475
+ (function() {
476
+ var u=(("https:" == document.location.protocol) ? "https" : "http") + "://vimberlin.de/piwik/";
477
+ _paq.push(['setTrackerUrl', u+'piwik.php']);
478
+ _paq.push(['setSiteId', 1]);
479
+ var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript';
480
+ g.defer=true; g.async=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
481
+ })();
482
+ </script>
483
+ <noscript><p><img src="https://vimberlin.de/piwik/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
484
+
485
+
486
+ <script src="/assets/javascripts/application.js" type="text/javascript"></script>
487
+ <!-- Hotjar Tracking Code for http://vimberlin.de -->
488
+ <script>
489
+ (function(h,o,t,j,a,r){
490
+ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
491
+ h._hjSettings={hjid:370627,hjsv:5};
492
+ a=o.getElementsByTagName('head')[0];
493
+ r=o.createElement('script');r.async=1;
494
+ r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
495
+ a.appendChild(r);
496
+ })(window,document,'//static.hotjar.com/c/hotjar-','.js?sv=');
497
+ </script>
498
+
499
+ </body>
500
+ </html>