sweetie 0.1.2 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (201) hide show
  1. checksums.yaml +7 -0
  2. data/.circleci/config.yml +30 -0
  3. data/.gitignore +4 -1
  4. data/.rubocop.yml +16 -0
  5. data/Gemfile +6 -0
  6. data/README.md +292 -15
  7. data/Rakefile +3 -2
  8. data/lib/sweetie/bitbucket.rb +30 -0
  9. data/lib/sweetie/bitbucket_stati_helper.rb +247 -0
  10. data/lib/sweetie/conversion.rb +84 -103
  11. data/lib/sweetie/helper.rb +90 -0
  12. data/lib/sweetie/version.rb +5 -0
  13. data/lib/sweetie.rb +3 -4
  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 -0
  163. data/spec/sweetie_bitbucket_spec.rb +32 -0
  164. data/spec/sweetie_bitbucket_stati_helper_spec.rb +124 -0
  165. data/spec/sweetie_conversion_spec.rb +117 -0
  166. data/spec/sweetie_helper_spec.rb +140 -0
  167. data/sweetie.gemspec +21 -22
  168. metadata +243 -165
  169. data/.travis.yml +0 -2
  170. data/bin/sweetie +0 -7
  171. data/doc/Sweetie.html +0 -125
  172. data/doc/_index.html +0 -121
  173. data/doc/class_list.html +0 -47
  174. data/doc/css/common.css +0 -1
  175. data/doc/css/full_list.css +0 -53
  176. data/doc/css/style.css +0 -320
  177. data/doc/file.README.html +0 -95
  178. data/doc/file_list.html +0 -49
  179. data/doc/frames.html +0 -13
  180. data/doc/index.html +0 -95
  181. data/doc/js/app.js +0 -205
  182. data/doc/js/full_list.js +0 -150
  183. data/doc/js/jquery.js +0 -16
  184. data/doc/method_list.html +0 -126
  185. data/doc/top-level-namespace.html +0 -103
  186. data/spec/source/_config.yml +0 -18
  187. data/spec/source/site/css/config.rb +0 -24
  188. data/spec/source/site/css/sass/site.sass +0 -180
  189. data/spec/source/site/css/stylesheets/iphone.css +0 -17
  190. data/spec/source/site/css/stylesheets/site.css +0 -246
  191. data/spec/source/site/css/stylesheets/syntax.css +0 -60
  192. data/spec/source/site/js/FancyZoom.js +0 -761
  193. data/spec/source/site/js/FancyZoomHTML.js +0 -318
  194. data/spec/source/site/test/config.rb +0 -24
  195. data/spec/source/site/test/sass/ie.scss +0 -5
  196. data/spec/source/site/test/sass/print.scss +0 -3
  197. data/spec/source/site/test/sass/screen.scss +0 -6
  198. data/spec/source/site/test/stylesheets/ie.css +0 -5
  199. data/spec/source/site/test/stylesheets/print.css +0 -3
  200. data/spec/source/site/test/stylesheets/screen.css +0 -69
  201. data/spec/sweetie_spec.rb +0 -30
@@ -0,0 +1,228 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html itemscope itemtype="http://schema.org/BlogPosting">
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>August 2012 Workshop - Vimberlin</title>
8
+ <meta name="description" content="August 2012 Workshop - Vimberlin">
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
+
40
+ <header>
41
+ <div class="container">
42
+ <div class="row">
43
+ <div class="col-md-2 col-md-offset-1 hidden-xs">
44
+ <a href="/"><img class="headline-image" alt="Vimberlin headline image" src="https://pbs.twimg.com/profile_images/1761428936/vim10_200x200.JPG" /></a>
45
+ </div>
46
+ <div class="col-md-7 hidden-xs">
47
+ <h1 class="headline-link"> <a href="/">Vimberlin</a></h1><br>
48
+ <span class="headline"><a href="/">the gathering for Vim-enthusiasts in Berlin</a></span>
49
+ </div>
50
+ </div>
51
+ <div class="row">
52
+ <div class="col-md-10 col-md-offset-1">
53
+ <nav class="navbar navbar-default navbar-primary">
54
+ <!-- Brand and toggle get grouped for better mobile display -->
55
+ <div class="navbar-header">
56
+ <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".nav-primary">
57
+ <span class="sr-only">Toggle navigation</span>
58
+ <i class="fa fa-navicon"></i>
59
+ </button>
60
+ </div>
61
+
62
+ <!-- Collect the nav links, forms, and other content for toggling -->
63
+ <div class="collapse navbar-collapse nav-primary">
64
+ <ul class="nav navbar-nav navbar-right">
65
+ <li class="active"><a href="/blog">Blog</a></li>
66
+ <li class=""><a href="/newsletter">Newsletter</a></li>
67
+ <li><a target="_blank" rel="noopener noreferrer" href="http://feeds.feedburner.com/vimberlin"><i class="fa fa-rss" aria-hidden="true"></i></a></li>
68
+ <li><a target="_blank" rel="noopener noreferrer" href="https://twitter.com/vimberlin"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
69
+ <li><a target="_blank" rel="noopener noreferrer" href="https://www.facebook.com/vimberlin/"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
70
+ <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>
71
+ <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>
72
+ <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>
73
+ </ul>
74
+ </div><!-- /.navbar-collapse -->
75
+ </nav>
76
+
77
+ </div>
78
+ </div>
79
+ </div>
80
+ </header>
81
+
82
+ <main>
83
+ <div class="container" itemprop="articleBody">
84
+ <div class="row">
85
+ <div class="col-md-10 col-md-offset-1">
86
+ <h2>August 2012 Workshop</h2>
87
+ <br>
88
+ <strong class="show-for-medium-up">Time: </strong><span itemprop="startDate">Starts 29 August 7:00 pm</span>
89
+ <br>
90
+ <strong class="show-for-medium-up">Location: </strong>
91
+ <span itemtype="http://schema.org/PostalAddress" itemscope="" itemprop="location">
92
+ <span>
93
+ <a href="https://launchco.com/etc/#coworking">
94
+ <span itemprop="name">LAUNCH/CO</span>
95
+ </a>
96
+ 3rd floor
97
+ </span>
98
+ <span itemprop="streetAddress">, Warschauer Str. 70A</span>
99
+ <span>
100
+ <span itemprop="postalCode">, 10243</span>
101
+ <span itemprop="addressLocality">Berlin</span>
102
+ </span>
103
+ <meta content="Germany" itemprop="addressCountry">
104
+ (<a href="http://g.co/maps/k62eb">map</a>)
105
+ </span>
106
+ <br>
107
+ <br>
108
+
109
+
110
+ <div class="pull-right">
111
+ <a href="#comments">Comments</a>
112
+ </div>
113
+ <p><strong>Next meetup is something special: &quot;VIM NOVICE - a beginners workshop for people new to Vim&quot;</strong></p>
114
+
115
+ <p>After discussing with <a href="https://twitter.com/lucapette">@lucapette</a> and <a href="https://twitter.com/guckes">@guckes</a> on our last meetup, we brainstormed the ideas how we can teach Vim not only to basic users of the editor but as well to beginners who has never used a modal editor like Vim before.</p>
116
+
117
+ <p>We will have three coaches:</p>
118
+
119
+ <ul>
120
+ <li><a href="https://twitter.com/lucapette">@lucapette</a> has over 5 years of Vim experience, has written a bunch of plugins for Vim, and using editor heavenly on hacking on different Rails projects.</li>
121
+ <li><a href="https://twitter.com/guckes">@guckes</a> has countless years of experience in using Vim and he can convince you in two
122
+ minutes to use another shell then <i>bash</i>.</li>
123
+ <li><a href="https://twitter.com/wikimatze">@wikimatze</a> - using Vim for two years now and using it to write a book about <a href="http://www.padrinorb.com/">Padrino</a>.</li>
124
+ </ul>
125
+
126
+ <h3>Schedule</h3>
127
+
128
+ <ul>
129
+ <li>Get to know each other - tell us something about yourself and what editors you have used in the past.</li>
130
+ <li>Tell what you want to learn (or what you already know) and we will start.</li>
131
+ <li>Find more about the topic under our
132
+ <a title="wiki" href="https://github.com/vimberlin/vimberlin.de/wiki/vimberlin-workshop-for-newbies">wiki</a>.</li>
133
+ </ul>
134
+
135
+ <p>If you are interested, please sign under <a title="eventbrite" href="http://vimberlin-eorg.eventbrite.com/">evenbrite</a> and <a title="lanyrd" href="http://lanyrd.com/2012/vimberlin-2-august/">lanyrd</a> we have place for 12 students. It would be nice if you already installed Vim on your operation system so that we can right start without any bigger technical problems. You can find the installation instruction for [Vim here](<a href="http://www.vim.org/download.php">http://www.vim.org/download.php</a> &quot;Vim installation).</p>
136
+
137
+ <p>If you have any questions, please contact <a href="mailto:vimberlin@gmail.com">vimberlin@gmail.com</a>.</p>
138
+
139
+ <p><img class="title" alt="LAUNCH/CO" src="/assets/images/launch_co_logo.png" /></p>
140
+
141
+ <p>Thanks to <a title="LAUNCH/CO" href="https://launchco.com/etc/#coworking">LAUNCH/CO</a> for hosting the event.</p>
142
+
143
+ <p><strong><a title="Matthias Günther" href="http://wikimatze.de/about">Matthias Günther</a></strong></p>
144
+
145
+ <h3>Recap</h3>
146
+
147
+ <p>Thousands thanks to all the attendees, our coaches (<a href="https://twitter.com/lucapette">@lucapette</a>, <a href="https://twitter.com/guckes">@guckes</a>, and <a href="https://twitter.com/wikimatze">@wikimatze</a>, and {% include launch<em>co</em>link.html %} to make this event happen. We got a huge amount of positive feedback to keep up with this event - we will go on with and would like to enhance your Vim abilities.</p>
148
+
149
+ <p>Later on the evening we talked about the timeframe of the next meeting. This would normally be in October but some of you suggested to do this kind of workshop every two weeks to keep the learning and memorizing of commands. I&#39;m not able to be a coach this often.</p>
150
+
151
+ <p>The ones who want more frequent meetups may discuss things on the {% include mailing<em>list.html %} and on {% include twitter</em>link.html %} - if you have found a date, I will help you to find a location where you can have the session.</p>
152
+
153
+ <p>If you have any further ideas please start a discussion on the If you want to add something, have any questions, or want to propose your talk, please feel free to post a short message to the <a href="https://groups.google.com/group/vimberlin/">mailing list</a>.
154
+ - we would like to hear your ideas.</p>
155
+
156
+ <p><strong><a title="Matthias Günther" href="http://wikimatze.de/about">Matthias Günther</a></strong></p>
157
+
158
+
159
+ <a class="prev" href="/2012-07-meetup/" rel="prev" title="Previous article: July 2012 Meetup">&laquo; July 2012 Meetup</a>
160
+ <a class="next" href="/2012-09-meetup/" rel="next" title="Next article: September 2012 Meetup">September 2012 Meetup &raquo; </a>
161
+ <div style="clear: both;"></div>
162
+ <a href="#comments"><span id="cmtcount"></span> Comments</a>
163
+ <div id="hashover"></div>
164
+ <script type="text/javascript" src="/hashover.php" defer="defer"></script>
165
+ </div>
166
+ </div>
167
+ </div >
168
+ </main>
169
+
170
+ <div class="footer--colophon hidden-xs">
171
+ <div class="container">
172
+ <div class="row">
173
+ <div class="col-md-6 col-md-offset-1">
174
+ <p class="footer--colophon__copyright">
175
+ <a href="/imprint"> Imprint</a>
176
+ <a style="border-left: #d5dbde 1px solid;margin-left: 8px; padding-left: 12px;" href="/contact">Contact</a>
177
+ <a target="_blank" rel="noopener noreferrer" href="http://vimfest.org" style="border-left: #d5dbde 1px solid;margin-left: 8px; padding-left: 12px;">Vimfest</a>
178
+ <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>
179
+ &nbsp;
180
+ <a class="footer-link" target="_blank" rel="noopener noreferrer" href="https://twitter.com/vimberlin"><i class="fa fa-twitter" aria-hidden="true"></i></a>
181
+ &nbsp;
182
+ <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>
183
+ &nbsp;
184
+ <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>
185
+ &nbsp;
186
+ <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>
187
+ &nbsp;
188
+ <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>
189
+ </p>
190
+ </div>
191
+ <div class="col-md-2 col-md-offset-3 hidden-xs">
192
+ <p class="footer--colophon__poweredby">Powered by <a href="https://github.com/timknight/middleman-ethos" target="_blank">Ethos</a></p>
193
+ </div>
194
+ </div>
195
+ </div>
196
+ </div>
197
+
198
+ <script type="text/javascript">
199
+ var _paq = _paq || [];
200
+ _paq.push(['trackPageView']);
201
+ _paq.push(['enableLinkTracking']);
202
+ (function() {
203
+ var u=(("https:" == document.location.protocol) ? "https" : "http") + "://vimberlin.de/piwik/";
204
+ _paq.push(['setTrackerUrl', u+'piwik.php']);
205
+ _paq.push(['setSiteId', 1]);
206
+ var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript';
207
+ g.defer=true; g.async=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
208
+ })();
209
+ </script>
210
+ <noscript><p><img src="https://vimberlin.de/piwik/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
211
+
212
+
213
+
214
+ <script src="/assets/javascripts/application.js" type="text/javascript"></script>
215
+ <!-- Hotjar Tracking Code for http://vimberlin.de -->
216
+ <script>
217
+ (function(h,o,t,j,a,r){
218
+ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
219
+ h._hjSettings={hjid:370627,hjsv:5};
220
+ a=o.getElementsByTagName('head')[0];
221
+ r=o.createElement('script');r.async=1;
222
+ r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
223
+ a.appendChild(r);
224
+ })(window,document,'//static.hotjar.com/c/hotjar-','.js?sv=');
225
+ </script>
226
+
227
+ </body>
228
+ </html>
@@ -0,0 +1,231 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html itemscope itemtype="http://schema.org/BlogPosting">
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>September 2012 Meetup - Vimberlin</title>
8
+ <meta name="description" content="September 2012 Meetup - Vimberlin">
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
+
40
+ <header>
41
+ <div class="container">
42
+ <div class="row">
43
+ <div class="col-md-2 col-md-offset-1 hidden-xs">
44
+ <a href="/"><img class="headline-image" alt="Vimberlin headline image" src="https://pbs.twimg.com/profile_images/1761428936/vim10_200x200.JPG" /></a>
45
+ </div>
46
+ <div class="col-md-7 hidden-xs">
47
+ <h1 class="headline-link"> <a href="/">Vimberlin</a></h1><br>
48
+ <span class="headline"><a href="/">the gathering for Vim-enthusiasts in Berlin</a></span>
49
+ </div>
50
+ </div>
51
+ <div class="row">
52
+ <div class="col-md-10 col-md-offset-1">
53
+ <nav class="navbar navbar-default navbar-primary">
54
+ <!-- Brand and toggle get grouped for better mobile display -->
55
+ <div class="navbar-header">
56
+ <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".nav-primary">
57
+ <span class="sr-only">Toggle navigation</span>
58
+ <i class="fa fa-navicon"></i>
59
+ </button>
60
+ </div>
61
+
62
+ <!-- Collect the nav links, forms, and other content for toggling -->
63
+ <div class="collapse navbar-collapse nav-primary">
64
+ <ul class="nav navbar-nav navbar-right">
65
+ <li class="active"><a href="/blog">Blog</a></li>
66
+ <li class=""><a href="/newsletter">Newsletter</a></li>
67
+ <li><a target="_blank" rel="noopener noreferrer" href="http://feeds.feedburner.com/vimberlin"><i class="fa fa-rss" aria-hidden="true"></i></a></li>
68
+ <li><a target="_blank" rel="noopener noreferrer" href="https://twitter.com/vimberlin"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
69
+ <li><a target="_blank" rel="noopener noreferrer" href="https://www.facebook.com/vimberlin/"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
70
+ <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>
71
+ <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>
72
+ <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>
73
+ </ul>
74
+ </div><!-- /.navbar-collapse -->
75
+ </nav>
76
+
77
+ </div>
78
+ </div>
79
+ </div>
80
+ </header>
81
+
82
+ <main>
83
+ <div class="container" itemprop="articleBody">
84
+ <div class="row">
85
+ <div class="col-md-10 col-md-offset-1">
86
+ <h2>September 2012 Meetup</h2>
87
+ <br>
88
+ <strong class="show-for-medium-up">Time: </strong><span itemprop="startDate">Starts 27 September 8:00 pm</span>
89
+ <br>
90
+ <strong class="show-for-medium-up">Location: </strong>
91
+ <span itemtype="http://schema.org/PostalAddress" itemscope="" itemprop="location">
92
+ <span>
93
+ <a href="https://launchco.com/etc/#coworking">
94
+ <span itemprop="name">LAUNCH/CO</span>
95
+ </a>
96
+ 3rd floor
97
+ </span>
98
+ <span itemprop="streetAddress">, Warschauer Str. 70A</span>
99
+ <span>
100
+ <span itemprop="postalCode">, 10243</span>
101
+ <span itemprop="addressLocality">Berlin</span>
102
+ </span>
103
+ <meta content="Germany" itemprop="addressCountry">
104
+ (<a href="http://g.co/maps/k62eb">map</a>)
105
+ </span>
106
+ <br>
107
+ <br>
108
+
109
+
110
+ <div class="pull-right">
111
+ <a href="#comments">Comments</a>
112
+ </div>
113
+ <p>We currently have the following talks on our agenda:</p>
114
+
115
+ <ul>
116
+ <li>
117
+ <strong>Buffer, quickfix windows, :Ack - does this work together?</strong> <br/>
118
+ <a href="http://www.wikimatze.de">Matthias Günther</a>
119
+ </li>
120
+ <li>
121
+ <strong>Mission Vimpossible - Some things you cannot do in Vim and how to do them
122
+ there anyway</strong> <br/>
123
+ <a href="http://kronn.de/">Matthias Viehweger</a>
124
+ </li>
125
+ <li>
126
+ <strong>Vimgolf by example</strong> <br/>
127
+ <a href="http://www.nach-vorne.eu">Gregor Schmidt</a>
128
+ </li>
129
+ </ul>
130
+
131
+ <p>If you want to add something, have any questions, or want to propose your talk, please feel free to post a short message to the <a href="https://groups.google.com/group/vimberlin/">mailing list</a>.</p>
132
+
133
+ <p><img class="title" alt="LAUNCH/CO" src="/assets/images/launch_co_logo.png" /></p>
134
+
135
+ <p>Thanks to <a title="LAUNCH/CO" href="https://launchco.com/etc/#coworking">LAUNCH/CO</a> for hosting the event.</p>
136
+
137
+ <p>I&#39;m looking forward to seeing you there.</p>
138
+
139
+ <p><strong><a title="Gregor Schmidt" href="http://www.nach-vorne.eu/">Gregor Schmidt</a></strong></p>
140
+
141
+ <h3>Recap</h3>
142
+
143
+ <p>First of all: Thanks to the about 20 Vim enthusiasts for coming, thanks to <a href="https://launchco.com/etc/#coworking">LAUNCH/CO</a> for providing the space, and last but not least, thanks to the speakers Gregor Schmidt, Matthias Viehweger, and Matthias Günther for preparing and giving the talks.</p>
144
+
145
+ <p>Gregor (<a href="https://twitter.com/schmidtwisser">@schmidtwisser</a>) explained how Vimgolfs work and what he learned during solving the <a href="http://vimgolf.com/challenges/50048db8cdc4060002000004">Vertical Limit</a> challenge. You may find his slides on <a href="http://schmidt.github.com/talks/2012-09-27/">GitHub</a> and a video of the talk on <a href="https://vimeo.com/50492237">vimeo</a>.</p>
146
+
147
+ <p><iframe class="center" src="http://player.vimeo.com/video/50492237" width="700" height="430" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe> <p><a href="http://vimeo.com/50492237">Vimgolf by example</a> from <a href="http://vimeo.com/wikimatze">wikimatze</a> on <a href="http://vimeo.com">Vimeo</a>.</p></p>
148
+
149
+ <p>Matthias Viehweger (<a href="https://twitter.com/der_kronn">@der_kronn</a>) talked in &quot;Mission Vimpossible - Some things you cannot do in Vim and how to do them there anyway&quot; about how he uses Vim to create IT-Infrastructure visualization with Vim, how to make nice favicons in Vim, and how to use hidden buffers to prepare a presentation. You may find his talk on <a href="https://vimeo.com/50492236">vimeo</a>.</p>
150
+
151
+ <p><iframe class="center" src="http://player.vimeo.com/video/50492236" width="700" height="430" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe> <p><a href="http://vimeo.com/50492236">Mission Vimpossible - Some things you cannot do in Vim and how to do them there anyway</a> from <a href="http://vimeo.com/wikimatze">wikimatze</a> on <a href="http://vimeo.com">Vimeo</a>.</p></p>
152
+
153
+ <p>You may find the slides of Matthias Günther&#39;s (<a href="https://twitter.com/wikimatze">@wikimatze</a>) talk &quot;Buffer, quickfix windows, :Ack - does this work together?&quot; <a href="https://speakerdeck.com/u/wikimatze/p/buffer-quickfix-windows-ack-does-this-work-together">at Speakerdeck</a>. It is also a video available on <a href="https://vimeo.com/50508801">vimeo</a>.</p>
154
+
155
+ <p><iframe class="center" src="http://player.vimeo.com/video/50508801" width="700" height="430" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe> <p><a href="http://vimeo.com/50508801">Buffer, quickfix windows, :Ack - does this work together?</a> from <a href="http://vimeo.com/wikimatze">wikimatze</a> on <a href="http://vimeo.com">Vimeo</a>.</p></p>
156
+
157
+ <p>Thanks for coming and making vimberlin happen. I&#39;ve had great fun and learned a lot. See you all in November 2012.</p>
158
+
159
+ <p><strong><a title="Matthias Günther" href="http://wikimatze.de/about">Matthias Günther</a></strong></p>
160
+
161
+
162
+ <a class="prev" href="/2012-08-workshop/" rel="prev" title="Previous article: August 2012 Workshop">&laquo; August 2012 Workshop</a>
163
+ <a class="next" href="/2012-10-workshop/" rel="next" title="Next article: October 2012 Workshop">October 2012 Workshop &raquo; </a>
164
+ <div style="clear: both;"></div>
165
+ <a href="#comments"><span id="cmtcount"></span> Comments</a>
166
+ <div id="hashover"></div>
167
+ <script type="text/javascript" src="/hashover.php" defer="defer"></script>
168
+ </div>
169
+ </div>
170
+ </div >
171
+ </main>
172
+
173
+ <div class="footer--colophon hidden-xs">
174
+ <div class="container">
175
+ <div class="row">
176
+ <div class="col-md-6 col-md-offset-1">
177
+ <p class="footer--colophon__copyright">
178
+ <a href="/imprint"> Imprint</a>
179
+ <a style="border-left: #d5dbde 1px solid;margin-left: 8px; padding-left: 12px;" href="/contact">Contact</a>
180
+ <a target="_blank" rel="noopener noreferrer" href="http://vimfest.org" style="border-left: #d5dbde 1px solid;margin-left: 8px; padding-left: 12px;">Vimfest</a>
181
+ <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>
182
+ &nbsp;
183
+ <a class="footer-link" target="_blank" rel="noopener noreferrer" href="https://twitter.com/vimberlin"><i class="fa fa-twitter" aria-hidden="true"></i></a>
184
+ &nbsp;
185
+ <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>
186
+ &nbsp;
187
+ <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>
188
+ &nbsp;
189
+ <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>
190
+ &nbsp;
191
+ <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>
192
+ </p>
193
+ </div>
194
+ <div class="col-md-2 col-md-offset-3 hidden-xs">
195
+ <p class="footer--colophon__poweredby">Powered by <a href="https://github.com/timknight/middleman-ethos" target="_blank">Ethos</a></p>
196
+ </div>
197
+ </div>
198
+ </div>
199
+ </div>
200
+
201
+ <script type="text/javascript">
202
+ var _paq = _paq || [];
203
+ _paq.push(['trackPageView']);
204
+ _paq.push(['enableLinkTracking']);
205
+ (function() {
206
+ var u=(("https:" == document.location.protocol) ? "https" : "http") + "://vimberlin.de/piwik/";
207
+ _paq.push(['setTrackerUrl', u+'piwik.php']);
208
+ _paq.push(['setSiteId', 1]);
209
+ var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript';
210
+ g.defer=true; g.async=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
211
+ })();
212
+ </script>
213
+ <noscript><p><img src="https://vimberlin.de/piwik/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
214
+
215
+
216
+
217
+ <script src="/assets/javascripts/application.js" type="text/javascript"></script>
218
+ <!-- Hotjar Tracking Code for http://vimberlin.de -->
219
+ <script>
220
+ (function(h,o,t,j,a,r){
221
+ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
222
+ h._hjSettings={hjid:370627,hjsv:5};
223
+ a=o.getElementsByTagName('head')[0];
224
+ r=o.createElement('script');r.async=1;
225
+ r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
226
+ a.appendChild(r);
227
+ })(window,document,'//static.hotjar.com/c/hotjar-','.js?sv=');
228
+ </script>
229
+
230
+ </body>
231
+ </html>