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 @@
1
+ {"pagelen": 10, "values": [{"scm": "git", "website": "", "has_wiki": false, "name": "pmwiki-linkicons-recipe", "links": {"watchers": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-linkicons-recipe/watchers"}, "branches": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-linkicons-recipe/refs/branches"}, "tags": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-linkicons-recipe/refs/tags"}, "commits": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-linkicons-recipe/commits"}, "clone": [{"href": "https://bitbucket.org/wikimatze/pmwiki-linkicons-recipe.git", "name": "https"}, {"href": "ssh://git@bitbucket.org/wikimatze/pmwiki-linkicons-recipe.git", "name": "ssh"}], "self": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-linkicons-recipe"}, "html": {"href": "https://bitbucket.org/wikimatze/pmwiki-linkicons-recipe"}, "avatar": {"href": "https://bitbucket.org/wikimatze/pmwiki-linkicons-recipe/avatar/32/"}, "hooks": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-linkicons-recipe/hooks"}, "forks": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-linkicons-recipe/forks"}, "downloads": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-linkicons-recipe/downloads"}, "pullrequests": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-linkicons-recipe/pullrequests"}}, "fork_policy": "allow_forks", "uuid": "{182b19dc-334d-40d7-a65d-a85aaeb46f31}", "language": "", "created_on": "2011-10-07T21:01:39.266805+00:00", "mainbranch": {"type": "branch", "name": "master"}, "full_name": "wikimatze/pmwiki-linkicons-recipe", "has_issues": false, "owner": {"username": "wikimatze", "display_name": "Matthias Günther", "type": "user", "uuid": "{5eab05fd-a541-43c5-a0e1-5bc9b2e2005f}", "links": {"self": {"href": "https://api.bitbucket.org/2.0/users/wikimatze"}, "html": {"href": "https://bitbucket.org/wikimatze/"}, "avatar": {"href": "https://bitbucket.org/account/wikimatze/avatar/32/"}}}, "updated_on": "2017-02-26T07:09:52.048642+00:00", "size": 431470, "type": "repository", "slug": "pmwiki-linkicons-recipe", "is_private": false, "description": ""}, {"scm": "git", "website": "", "has_wiki": false, "name": "pmwiki-dropcaps-recipe", "links": {"watchers": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-dropcaps-recipe/watchers"}, "branches": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-dropcaps-recipe/refs/branches"}, "tags": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-dropcaps-recipe/refs/tags"}, "commits": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-dropcaps-recipe/commits"}, "clone": [{"href": "https://bitbucket.org/wikimatze/pmwiki-dropcaps-recipe.git", "name": "https"}, {"href": "ssh://git@bitbucket.org/wikimatze/pmwiki-dropcaps-recipe.git", "name": "ssh"}], "self": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-dropcaps-recipe"}, "html": {"href": "https://bitbucket.org/wikimatze/pmwiki-dropcaps-recipe"}, "avatar": {"href": "https://bitbucket.org/wikimatze/pmwiki-dropcaps-recipe/avatar/32/"}, "hooks": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-dropcaps-recipe/hooks"}, "forks": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-dropcaps-recipe/forks"}, "downloads": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-dropcaps-recipe/downloads"}, "pullrequests": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-dropcaps-recipe/pullrequests"}}, "fork_policy": "allow_forks", "uuid": "{8fd1c1ab-53d0-4111-ac23-c8b9a2ed4fa7}", "language": "", "created_on": "2011-10-07T21:15:50.800990+00:00", "mainbranch": {"type": "branch", "name": "master"}, "full_name": "wikimatze/pmwiki-dropcaps-recipe", "has_issues": false, "owner": {"username": "wikimatze", "display_name": "Matthias Günther", "type": "user", "uuid": "{5eab05fd-a541-43c5-a0e1-5bc9b2e2005f}", "links": {"self": {"href": "https://api.bitbucket.org/2.0/users/wikimatze"}, "html": {"href": "https://bitbucket.org/wikimatze/"}, "avatar": {"href": "https://bitbucket.org/account/wikimatze/avatar/32/"}}}, "updated_on": "2017-02-24T07:30:28.623762+00:00", "size": 400206, "type": "repository", "slug": "pmwiki-dropcaps-recipe", "is_private": false, "description": ""}, {"scm": "git", "website": "", "has_wiki": false, "name": "pmwiki-headlineimage-recipe", "links": {"watchers": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-headlineimage-recipe/watchers"}, "branches": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-headlineimage-recipe/refs/branches"}, "tags": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-headlineimage-recipe/refs/tags"}, "commits": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-headlineimage-recipe/commits"}, "clone": [{"href": "https://bitbucket.org/wikimatze/pmwiki-headlineimage-recipe.git", "name": "https"}, {"href": "ssh://git@bitbucket.org/wikimatze/pmwiki-headlineimage-recipe.git", "name": "ssh"}], "self": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-headlineimage-recipe"}, "html": {"href": "https://bitbucket.org/wikimatze/pmwiki-headlineimage-recipe"}, "avatar": {"href": "https://bitbucket.org/wikimatze/pmwiki-headlineimage-recipe/avatar/32/"}, "hooks": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-headlineimage-recipe/hooks"}, "forks": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-headlineimage-recipe/forks"}, "downloads": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-headlineimage-recipe/downloads"}, "pullrequests": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-headlineimage-recipe/pullrequests"}}, "fork_policy": "allow_forks", "uuid": "{d7355966-3b39-4cd5-89dd-7eccb3328e46}", "language": "", "created_on": "2011-10-07T21:18:03.997948+00:00", "mainbranch": {"type": "branch", "name": "master"}, "full_name": "wikimatze/pmwiki-headlineimage-recipe", "has_issues": false, "owner": {"username": "wikimatze", "display_name": "Matthias Günther", "type": "user", "uuid": "{5eab05fd-a541-43c5-a0e1-5bc9b2e2005f}", "links": {"self": {"href": "https://api.bitbucket.org/2.0/users/wikimatze"}, "html": {"href": "https://bitbucket.org/wikimatze/"}, "avatar": {"href": "https://bitbucket.org/account/wikimatze/avatar/32/"}}}, "updated_on": "2017-02-25T06:26:44.774478+00:00", "size": 523409, "type": "repository", "slug": "pmwiki-headlineimage-recipe", "is_private": false, "description": ""}, {"scm": "git", "website": "", "has_wiki": false, "name": "pmwiki-syntaxlove-recipe", "links": {"watchers": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-syntaxlove-recipe/watchers"}, "branches": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-syntaxlove-recipe/refs/branches"}, "tags": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-syntaxlove-recipe/refs/tags"}, "commits": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-syntaxlove-recipe/commits"}, "clone": [{"href": "https://bitbucket.org/wikimatze/pmwiki-syntaxlove-recipe.git", "name": "https"}, {"href": "ssh://git@bitbucket.org/wikimatze/pmwiki-syntaxlove-recipe.git", "name": "ssh"}], "self": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-syntaxlove-recipe"}, "html": {"href": "https://bitbucket.org/wikimatze/pmwiki-syntaxlove-recipe"}, "avatar": {"href": "https://bitbucket.org/wikimatze/pmwiki-syntaxlove-recipe/avatar/32/"}, "hooks": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-syntaxlove-recipe/hooks"}, "forks": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-syntaxlove-recipe/forks"}, "downloads": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-syntaxlove-recipe/downloads"}, "pullrequests": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-syntaxlove-recipe/pullrequests"}}, "fork_policy": "allow_forks", "uuid": "{6b4ba882-2ec2-4a1d-98e2-404f74743791}", "language": "", "created_on": "2011-10-07T21:37:43.271346+00:00", "mainbranch": {"type": "branch", "name": "master"}, "full_name": "wikimatze/pmwiki-syntaxlove-recipe", "has_issues": false, "owner": {"username": "wikimatze", "display_name": "Matthias Günther", "type": "user", "uuid": "{5eab05fd-a541-43c5-a0e1-5bc9b2e2005f}", "links": {"self": {"href": "https://api.bitbucket.org/2.0/users/wikimatze"}, "html": {"href": "https://bitbucket.org/wikimatze/"}, "avatar": {"href": "https://bitbucket.org/account/wikimatze/avatar/32/"}}}, "updated_on": "2017-02-26T09:07:20.552636+00:00", "size": 283958, "type": "repository", "slug": "pmwiki-syntaxlove-recipe", "is_private": false, "description": ""}, {"scm": "git", "website": "", "has_wiki": false, "name": "pmwiki-twitter-recipe", "links": {"watchers": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-twitter-recipe/watchers"}, "branches": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-twitter-recipe/refs/branches"}, "tags": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-twitter-recipe/refs/tags"}, "commits": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-twitter-recipe/commits"}, "clone": [{"href": "https://bitbucket.org/wikimatze/pmwiki-twitter-recipe.git", "name": "https"}, {"href": "ssh://git@bitbucket.org/wikimatze/pmwiki-twitter-recipe.git", "name": "ssh"}], "self": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-twitter-recipe"}, "html": {"href": "https://bitbucket.org/wikimatze/pmwiki-twitter-recipe"}, "avatar": {"href": "https://bitbucket.org/wikimatze/pmwiki-twitter-recipe/avatar/32/"}, "hooks": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-twitter-recipe/hooks"}, "forks": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-twitter-recipe/forks"}, "downloads": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-twitter-recipe/downloads"}, "pullrequests": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/pmwiki-twitter-recipe/pullrequests"}}, "fork_policy": "allow_forks", "uuid": "{ba849255-2758-44ba-a075-424226768520}", "language": "", "created_on": "2011-10-07T21:38:22.337905+00:00", "mainbranch": {"type": "branch", "name": "master"}, "full_name": "wikimatze/pmwiki-twitter-recipe", "has_issues": false, "owner": {"username": "wikimatze", "display_name": "Matthias Günther", "type": "user", "uuid": "{5eab05fd-a541-43c5-a0e1-5bc9b2e2005f}", "links": {"self": {"href": "https://api.bitbucket.org/2.0/users/wikimatze"}, "html": {"href": "https://bitbucket.org/wikimatze/"}, "avatar": {"href": "https://bitbucket.org/account/wikimatze/avatar/32/"}}}, "updated_on": "2017-02-26T09:49:58.293476+00:00", "size": 456292, "type": "repository", "slug": "pmwiki-twitter-recipe", "is_private": false, "description": ""}, {"scm": "git", "website": "", "has_wiki": false, "name": "presentations", "links": {"watchers": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/presentations/watchers"}, "branches": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/presentations/refs/branches"}, "tags": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/presentations/refs/tags"}, "commits": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/presentations/commits"}, "clone": [{"href": "https://bitbucket.org/wikimatze/presentations.git", "name": "https"}, {"href": "ssh://git@bitbucket.org/wikimatze/presentations.git", "name": "ssh"}], "self": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/presentations"}, "html": {"href": "https://bitbucket.org/wikimatze/presentations"}, "avatar": {"href": "https://bitbucket.org/wikimatze/presentations/avatar/32/"}, "hooks": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/presentations/hooks"}, "forks": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/presentations/forks"}, "downloads": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/presentations/downloads"}, "pullrequests": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/presentations/pullrequests"}}, "fork_policy": "allow_forks", "uuid": "{9f297e93-d5d6-4aeb-a2ba-2963c4726309}", "language": "", "created_on": "2012-10-06T06:56:06.687972+00:00", "mainbranch": {"type": "branch", "name": "master"}, "full_name": "wikimatze/presentations", "has_issues": false, "owner": {"username": "wikimatze", "display_name": "Matthias Günther", "type": "user", "uuid": "{5eab05fd-a541-43c5-a0e1-5bc9b2e2005f}", "links": {"self": {"href": "https://api.bitbucket.org/2.0/users/wikimatze"}, "html": {"href": "https://bitbucket.org/wikimatze/"}, "avatar": {"href": "https://bitbucket.org/account/wikimatze/avatar/32/"}}}, "updated_on": "2017-01-15T07:08:16.104352+00:00", "size": 46007617, "type": "repository", "slug": "presentations", "is_private": false, "description": ""}, {"scm": "git", "website": "", "has_wiki": false, "name": "vocabularly", "links": {"watchers": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/vocabularly/watchers"}, "branches": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/vocabularly/refs/branches"}, "tags": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/vocabularly/refs/tags"}, "commits": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/vocabularly/commits"}, "clone": [{"href": "https://bitbucket.org/wikimatze/vocabularly.git", "name": "https"}, {"href": "ssh://git@bitbucket.org/wikimatze/vocabularly.git", "name": "ssh"}], "self": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/vocabularly"}, "html": {"href": "https://bitbucket.org/wikimatze/vocabularly"}, "avatar": {"href": "https://bitbucket.org/wikimatze/vocabularly/avatar/32/"}, "hooks": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/vocabularly/hooks"}, "forks": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/vocabularly/forks"}, "downloads": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/vocabularly/downloads"}, "pullrequests": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/vocabularly/pullrequests"}}, "fork_policy": "allow_forks", "uuid": "{3a85cf35-5707-4f4b-a768-facf33682191}", "language": "", "created_on": "2013-01-26T07:10:16.496551+00:00", "mainbranch": {"type": "branch", "name": "master"}, "full_name": "wikimatze/vocabularly", "has_issues": false, "owner": {"username": "wikimatze", "display_name": "Matthias Günther", "type": "user", "uuid": "{5eab05fd-a541-43c5-a0e1-5bc9b2e2005f}", "links": {"self": {"href": "https://api.bitbucket.org/2.0/users/wikimatze"}, "html": {"href": "https://bitbucket.org/wikimatze/"}, "avatar": {"href": "https://bitbucket.org/account/wikimatze/avatar/32/"}}}, "updated_on": "2013-01-26T07:15:07.450654+00:00", "size": 355428, "type": "repository", "slug": "vocabularly", "is_private": false, "description": "A list of vocabularly I'm using to train my English"}, {"scm": "git", "website": "", "has_wiki": false, "name": "ruby-scripts", "links": {"watchers": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/ruby-scripts/watchers"}, "branches": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/ruby-scripts/refs/branches"}, "tags": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/ruby-scripts/refs/tags"}, "commits": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/ruby-scripts/commits"}, "clone": [{"href": "https://bitbucket.org/wikimatze/ruby-scripts.git", "name": "https"}, {"href": "ssh://git@bitbucket.org/wikimatze/ruby-scripts.git", "name": "ssh"}], "self": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/ruby-scripts"}, "html": {"href": "https://bitbucket.org/wikimatze/ruby-scripts"}, "avatar": {"href": "https://bitbucket.org/wikimatze/ruby-scripts/avatar/32/"}, "hooks": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/ruby-scripts/hooks"}, "forks": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/ruby-scripts/forks"}, "downloads": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/ruby-scripts/downloads"}, "pullrequests": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/ruby-scripts/pullrequests"}}, "fork_policy": "allow_forks", "uuid": "{eec9274e-dfda-4ca3-857b-7fc0bfc15aaa}", "language": "ruby", "created_on": "2013-01-26T08:00:18.118078+00:00", "mainbranch": {"type": "branch", "name": "master"}, "full_name": "wikimatze/ruby-scripts", "has_issues": false, "owner": {"username": "wikimatze", "display_name": "Matthias Günther", "type": "user", "uuid": "{5eab05fd-a541-43c5-a0e1-5bc9b2e2005f}", "links": {"self": {"href": "https://api.bitbucket.org/2.0/users/wikimatze"}, "html": {"href": "https://bitbucket.org/wikimatze/"}, "avatar": {"href": "https://bitbucket.org/account/wikimatze/avatar/32/"}}}, "updated_on": "2014-05-25T04:02:49.095991+00:00", "size": 173752, "type": "repository", "slug": "ruby-scripts", "is_private": false, "description": ""}, {"scm": "git", "website": "", "has_wiki": false, "name": "rails-sample-app", "links": {"watchers": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/rails-sample-app/watchers"}, "branches": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/rails-sample-app/refs/branches"}, "tags": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/rails-sample-app/refs/tags"}, "commits": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/rails-sample-app/commits"}, "clone": [{"href": "https://bitbucket.org/wikimatze/rails-sample-app.git", "name": "https"}, {"href": "ssh://git@bitbucket.org/wikimatze/rails-sample-app.git", "name": "ssh"}], "self": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/rails-sample-app"}, "html": {"href": "https://bitbucket.org/wikimatze/rails-sample-app"}, "avatar": {"href": "https://bitbucket.org/wikimatze/rails-sample-app/avatar/32/"}, "hooks": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/rails-sample-app/hooks"}, "forks": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/rails-sample-app/forks"}, "downloads": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/rails-sample-app/downloads"}, "pullrequests": {"href": "https://api.bitbucket.org/2.0/repositories/wikimatze/rails-sample-app/pullrequests"}}, "fork_policy": "allow_forks", "uuid": "{5c0859c4-17fb-4f95-83b3-1d4d83113df3}", "language": "ruby", "created_on": "2013-01-26T08:49:24.317731+00:00", "mainbranch": {"type": "branch", "name": "master"}, "full_name": "wikimatze/rails-sample-app", "has_issues": false, "owner": {"username": "wikimatze", "display_name": "Matthias Günther", "type": "user", "uuid": "{5eab05fd-a541-43c5-a0e1-5bc9b2e2005f}", "links": {"self": {"href": "https://api.bitbucket.org/2.0/users/wikimatze"}, "html": {"href": "https://bitbucket.org/wikimatze/"}, "avatar": {"href": "https://bitbucket.org/account/wikimatze/avatar/32/"}}}, "updated_on": "2013-01-26T08:50:25.802042+00:00", "size": 304895, "type": "repository", "slug": "rails-sample-app", "is_private": false, "description": ""}], "page": 1, "size": 9}
@@ -0,0 +1,4 @@
1
+ htmlpages: 8
2
+ images: 1
3
+ links: 54
4
+
@@ -0,0 +1,7 @@
1
+ htmlpages: 8
2
+ images: 1
3
+ links: 54
4
+
5
+ svn: 2011-10-26
6
+ pmwiki: 2011-10-26
7
+
@@ -0,0 +1,4 @@
1
+ htmlpages: 8
2
+ images: 1
3
+ links: 54
4
+
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,238 @@
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>January 2012 Meetup - Vimberlin</title>
8
+ <meta name="description" content="January 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>January 2012 Meetup</h2>
87
+ <br>
88
+ <strong class="show-for-medium-up">Time: </strong><span itemprop="startDate">Starts 26 January 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><a title="Drew Neil" href="http://drewneil.com/">Drew Neil</a> (aka <a title="@nelstrom" href="https://twitter.com/nelstrom">@nelstrom</a>, the creator of the awesome <a title="vimcasts" href="http://vimcasts.org/">vimcasts</a>, agreed to give a talk.</p>
114
+
115
+ <p>We are very proud to have him at our very first meetup. The topic is yet to be announced. Further topics will be kind of organizational. We should briefly talk about:</p>
116
+
117
+ <ul>
118
+ <li>Expectations for this user group</li>
119
+ <li>Future schedule for regular meetups</li>
120
+ <li>Future topics of meetups</li>
121
+ </ul>
122
+
123
+ <p>We will have some time at the end for small talk and socializing. Also, in Friedrichshain, it should be rather easy to move on to a bar after the meetup.</p>
124
+
125
+ <pre>
126
+ 1. Find the Warschauer Str. 70A
127
+ 2. Go to the second backyard
128
+ 3. Enter the big door in the middle of the building with the LAUNCH/CO and
129
+ Noisy Rooms signs
130
+ 4. Use the staircase on the right and go to the 2nd level
131
+ 5. After the staircase head right (this is left in relation to the entrance)
132
+ 6. Go to the end of the corridor
133
+ 7. Use the staircase to go down to the 1st floor
134
+ 8. Open the big steel door
135
+ 9. You're there
136
+
137
+ or alternatively
138
+
139
+ 1. Follow the LAUNCH/CO signs all over the place
140
+ 2. You're there
141
+ </pre>
142
+
143
+ <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>
144
+
145
+ <p><img class="title" alt="LAUNCH/CO" src="/assets/images/launch_co_logo.png" /></p>
146
+
147
+ <p>Thanks to <a title="LAUNCH/CO" href="https://launchco.com/etc/#coworking">LAUNCH/CO</a> for hosting the event.</p>
148
+
149
+ <p>Hope to see you there,</p>
150
+
151
+ <p><strong><a title="Gregor Schmidt" href="http://www.nach-vorne.eu/">Gregor Schmidt</a></strong></p>
152
+
153
+ <h2>Recap</h2>
154
+
155
+ <p>Thank you all for coming. It was a great evening and I had a lot of fun. I&#39;m especially proud, that so many of you guys showed up. I think we were about 20 people. I think, that&#39;s pretty impressive for a first meeting.</p>
156
+
157
+ <p>I would like to thank <a title="Drew" href="http://drewneil.com/">Drew</a> for his thoughts on plugins and how they fit into the Vim universe. Also, playing some <a title="vimgolf" href="http://vimgolf.com/">vimgolf</a> was both entertaining and illuminating.</p>
158
+
159
+ <p>Finally we talked about vimberlin itself. We&#39;ve settled to meet on the 4th Thursday of every odd month. So the next meetup will be on <strong>March 22nd 2012 - 8 p.m. again at LAUNCH/CO</strong>.</p>
160
+
161
+ <p>We are starting to using a mailing list to discuss talk proposals and other stuff. (There is a link at the top of the page.) I&#39;ve also added a link to an iCal feed containing the schedule for the next meetups.</p>
162
+
163
+ <p>I&#39;ll continue to use the Twitter account <a title="@vimberlin" href="http://twitter.com/vimberlin">@vimberlin</a> for announcements and things of (potentially) general interest.</p>
164
+
165
+ <p>Thanks Jan and LAUNCH/CO for hosting the event and providing us with chairs, beers and beamer and thank you all for making vimberlin happen.</p>
166
+
167
+ <p><strong><a title="Gregor Schmidt" href="http://www.nach-vorne.eu/">Gregor Schmidt</a></strong></p>
168
+
169
+
170
+ <a class="next" href="/2012-03-meetup/" rel="next" title="Next article: March 2012 Meetup">March 2012 Meetup &raquo; </a>
171
+ <div style="clear: both;"></div>
172
+ <a href="#comments"><span id="cmtcount"></span> Comments</a>
173
+ <div id="hashover"></div>
174
+ <script type="text/javascript" src="/hashover.php" defer="defer"></script>
175
+ </div>
176
+ </div>
177
+ </div >
178
+ </main>
179
+
180
+ <div class="footer--colophon hidden-xs">
181
+ <div class="container">
182
+ <div class="row">
183
+ <div class="col-md-6 col-md-offset-1">
184
+ <p class="footer--colophon__copyright">
185
+ <a href="/imprint"> Imprint</a>
186
+ <a style="border-left: #d5dbde 1px solid;margin-left: 8px; padding-left: 12px;" href="/contact">Contact</a>
187
+ <a target="_blank" rel="noopener noreferrer" href="http://vimfest.org" style="border-left: #d5dbde 1px solid;margin-left: 8px; padding-left: 12px;">Vimfest</a>
188
+ <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>
189
+ &nbsp;
190
+ <a class="footer-link" target="_blank" rel="noopener noreferrer" href="https://twitter.com/vimberlin"><i class="fa fa-twitter" aria-hidden="true"></i></a>
191
+ &nbsp;
192
+ <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>
193
+ &nbsp;
194
+ <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>
195
+ &nbsp;
196
+ <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>
197
+ &nbsp;
198
+ <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>
199
+ </p>
200
+ </div>
201
+ <div class="col-md-2 col-md-offset-3 hidden-xs">
202
+ <p class="footer--colophon__poweredby">Powered by <a href="https://github.com/timknight/middleman-ethos" target="_blank">Ethos</a></p>
203
+ </div>
204
+ </div>
205
+ </div>
206
+ </div>
207
+
208
+ <script type="text/javascript">
209
+ var _paq = _paq || [];
210
+ _paq.push(['trackPageView']);
211
+ _paq.push(['enableLinkTracking']);
212
+ (function() {
213
+ var u=(("https:" == document.location.protocol) ? "https" : "http") + "://vimberlin.de/piwik/";
214
+ _paq.push(['setTrackerUrl', u+'piwik.php']);
215
+ _paq.push(['setSiteId', 1]);
216
+ var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript';
217
+ g.defer=true; g.async=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
218
+ })();
219
+ </script>
220
+ <noscript><p><img src="https://vimberlin.de/piwik/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
221
+
222
+
223
+
224
+ <script src="/assets/javascripts/application.js" type="text/javascript"></script>
225
+ <!-- Hotjar Tracking Code for http://vimberlin.de -->
226
+ <script>
227
+ (function(h,o,t,j,a,r){
228
+ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
229
+ h._hjSettings={hjid:370627,hjsv:5};
230
+ a=o.getElementsByTagName('head')[0];
231
+ r=o.createElement('script');r.async=1;
232
+ r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
233
+ a.appendChild(r);
234
+ })(window,document,'//static.hotjar.com/c/hotjar-','.js?sv=');
235
+ </script>
236
+
237
+ </body>
238
+ </html>