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,12 @@
1
+ /* TEAM */
2
+
3
+ Persons: Matthias Günther
4
+ Site: http://wikimatze.de
5
+
6
+
7
+ /* SITE */
8
+
9
+ Standards: HTML5, CSS3,
10
+ Components: jQuery, piwik, hashover
11
+ Software: middleman, git
12
+
@@ -0,0 +1,177 @@
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>Imprint - Vimberlin</title>
8
+ <meta name="description" content="The imprint of 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
+ <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=""><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
+ <h2>Imprint</h2>
86
+
87
+ This site is maintained by:
88
+
89
+ <div id="legal">
90
+ <pre>
91
+ Gregor Schmidt Matthias Günther
92
+ Dolziger Str. 3 Alboinstraße 37
93
+ 10247 Berlin 12103 Berlin
94
+
95
+ <a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#115;&#99;&#104;&#109;&#105;&#100;&#116;&#64;&#110;&#97;&#99;&#104;&#45;&#118;&#111;&#114;&#110;&#101;&#46;&#101;&#117;">&#115;&#99;&#104;&#109;&#105;&#100;&#116;&#64;&#110;&#97;&#99;&#104;&#45;&#118;&#111;&#114;&#110;&#101;&#46;&#101;&#117;</a> <a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#109;&#97;&#116;&#116;&#104;&#105;&#97;&#115;&#64;&#119;&#105;&#107;&#105;&#109;&#97;&#116;&#122;&#101;&#46;&#100;&#101;">&#109;&#97;&#116;&#116;&#104;&#105;&#97;&#115;&#64;&#119;&#105;&#107;&#105;&#109;&#97;&#116;&#122;&#101;&#46;&#100;&#101;</a></pre>
96
+ </div>
97
+
98
+ <p>This site is hosted via <a href="http://www.webhostone.de/">WebhostOne </a> in Germany and deployed via rsync. If you're finding errors or want to add some information, feel free to <a href="https://github.com/vimberlin/vimberlin.de">fork it</a> and send in a pull request.</p>
99
+
100
+ <p>Vim is charityware. If you're enjoying the vimberlin user group or you want to support Vim development, please consider <a href="http://iccf-holland.org/">helping needy children in Uganda</a> and tell everybody about it.</p>
101
+
102
+ <h2>Disclaimer</h2>
103
+ <p> The contents of our pages have been created with great care. For the accuracy, completeness and topicality of contents I can not take any responsibility. As a service provider I’m responsible according to § 7 paragraph 1 of TMG for own contents on these pages under the general laws. According to § 8 to 10 TMG I’m not obligated to control transmitted or stored information, or to investigate circumstances that indicate illegal activity. Obligations to remove or block the use of information under the general laws remain unaffected. A liability is only possible from the date of knowledge of a specific infringement. On becoming aware of such violations, I will immediately remove this content.</p>
104
+
105
+ <h2>Liability for links</h2>
106
+ <p> This site contains links to external websites over which I have no control. The linked sites were checked at the time of linking for possible violations of law. Illegal contents were not apparent at the time of linking. A permanent control of the linked pages is unreasonable without concrete evidence of a violation. Upon notification of violations, I will remove such links immediately.</p>
107
+
108
+ <h2>Copyright</h2>
109
+ <p> The operator of the site content and works provided on these pages are subject to German copyright law. The reproduction, adaptation, distribution or any kind of exploitation outside the limits of copyright require the written consent of the author or creator. Downloads and copies of these pages are only permitted for private, non-commercial use. Insofar as the content is not created by the website operator, the property rights of third parties. In particular, third-party content as such. Should you become aware of a copyright violation, we ask for a hint. Upon notification of violations, we will immediately remove such content.</p>
110
+
111
+ <h2>Privacy</h2>
112
+ <p> The use of our website is usually possible without providing personal information. As far as on our sides personal data (such as name, address or e-mail addresses) are collected, this is as far as possible, on a voluntary basis. This data will not be disclosed to third parties without your express consent.</p>
113
+ <p> We point out that data transmission over the Internet (e.g. communication by e-mail) security gaps. A complete protection of data against access by third parties is not possible.</p>
114
+ <p> The use of the framework of the imprint obligation published contact data by third parties to send unsolicited advertisements and information materials is hereby expressly excluded. The site operators reserve the right to take legal action in case of unsolicited promotional information, such as spam e-mails.</p>
115
+ </div>
116
+ </div>
117
+ </div>
118
+
119
+ </main>
120
+ <div class="footer--colophon hidden-xs">
121
+ <div class="container">
122
+ <div class="row">
123
+ <div class="col-md-6 col-md-offset-1">
124
+ <p class="footer--colophon__copyright">
125
+ <a href="/imprint"> Imprint</a>
126
+ <a style="border-left: #d5dbde 1px solid;margin-left: 8px; padding-left: 12px;" href="/contact">Contact</a>
127
+ <a target="_blank" rel="noopener noreferrer" href="http://vimfest.org" style="border-left: #d5dbde 1px solid;margin-left: 8px; padding-left: 12px;">Vimfest</a>
128
+ <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>
129
+ &nbsp;
130
+ <a class="footer-link" target="_blank" rel="noopener noreferrer" href="https://twitter.com/vimberlin"><i class="fa fa-twitter" aria-hidden="true"></i></a>
131
+ &nbsp;
132
+ <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>
133
+ &nbsp;
134
+ <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>
135
+ &nbsp;
136
+ <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>
137
+ &nbsp;
138
+ <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>
139
+ </p>
140
+ </div>
141
+ <div class="col-md-2 col-md-offset-3 hidden-xs">
142
+ <p class="footer--colophon__poweredby">Powered by <a href="https://github.com/timknight/middleman-ethos" target="_blank">Ethos</a></p>
143
+ </div>
144
+ </div>
145
+ </div>
146
+ </div>
147
+
148
+ <script type="text/javascript">
149
+ var _paq = _paq || [];
150
+ _paq.push(['trackPageView']);
151
+ _paq.push(['enableLinkTracking']);
152
+ (function() {
153
+ var u=(("https:" == document.location.protocol) ? "https" : "http") + "://vimberlin.de/piwik/";
154
+ _paq.push(['setTrackerUrl', u+'piwik.php']);
155
+ _paq.push(['setSiteId', 1]);
156
+ var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript';
157
+ g.defer=true; g.async=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
158
+ })();
159
+ </script>
160
+ <noscript><p><img src="https://vimberlin.de/piwik/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
161
+
162
+
163
+ <script src="/assets/javascripts/application.js" type="text/javascript"></script>
164
+ <!-- Hotjar Tracking Code for http://vimberlin.de -->
165
+ <script>
166
+ (function(h,o,t,j,a,r){
167
+ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
168
+ h._hjSettings={hjid:370627,hjsv:5};
169
+ a=o.getElementsByTagName('head')[0];
170
+ r=o.createElement('script');r.async=1;
171
+ r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
172
+ a.appendChild(r);
173
+ })(window,document,'//static.hotjar.com/c/hotjar-','.js?sv=');
174
+ </script>
175
+
176
+ </body>
177
+ </html>
@@ -0,0 +1,157 @@
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>Vimberlin</title>
8
+ <meta name="description" content="Vimberlin - the gathering for Vim-enthusiasts in Berlin">
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=""><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="jumbotron">
83
+ <div class="container">
84
+ <div class="row">
85
+ <div class="col-md-10 col-md-offset-1">
86
+ <p>
87
+ Our goal is to bring new and trained people using <a rel="noopener noreferrer" target="_blank" href="http://www.vim.org/">Vim</a> together to talk about their practices, tools, and their habits working with Vim.
88
+ If you want to <strong>give a talk</strong> (either a short 5 minute presentation or a longer one), please post your proposal on <a rel="noopener noreferrer" target="_blank" href="https://github.com/vimberlin/vimberlin.de/issues/29">GitHub</a>, ping us on <a rel="noopener noreferrer" target="_blank" href="https://twitter.com/vimberlin">twitter</a> or on our
89
+ <a rel="noopener noreferrer" target="_blank" href="https://groups.google.com/group/vimberlin/">mailing list</a>.
90
+ </p>
91
+ <br>
92
+ <h3>Next meetup TBA</h3>
93
+ </div>
94
+ </div>
95
+ </div>
96
+ </div>
97
+
98
+
99
+ </main>
100
+ <div class="footer--colophon hidden-xs">
101
+ <div class="container">
102
+ <div class="row">
103
+ <div class="col-md-6 col-md-offset-1">
104
+ <p class="footer--colophon__copyright">
105
+ <a href="/imprint"> Imprint</a>
106
+ <a style="border-left: #d5dbde 1px solid;margin-left: 8px; padding-left: 12px;" href="/contact">Contact</a>
107
+ <a target="_blank" rel="noopener noreferrer" href="http://vimfest.org" style="border-left: #d5dbde 1px solid;margin-left: 8px; padding-left: 12px;">Vimfest</a>
108
+ <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>
109
+ &nbsp;
110
+ <a class="footer-link" target="_blank" rel="noopener noreferrer" href="https://twitter.com/vimberlin"><i class="fa fa-twitter" aria-hidden="true"></i></a>
111
+ &nbsp;
112
+ <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>
113
+ &nbsp;
114
+ <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>
115
+ &nbsp;
116
+ <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>
117
+ &nbsp;
118
+ <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>
119
+ </p>
120
+ </div>
121
+ <div class="col-md-2 col-md-offset-3 hidden-xs">
122
+ <p class="footer--colophon__poweredby">Powered by <a href="https://github.com/timknight/middleman-ethos" target="_blank">Ethos</a></p>
123
+ </div>
124
+ </div>
125
+ </div>
126
+ </div>
127
+
128
+ <script type="text/javascript">
129
+ var _paq = _paq || [];
130
+ _paq.push(['trackPageView']);
131
+ _paq.push(['enableLinkTracking']);
132
+ (function() {
133
+ var u=(("https:" == document.location.protocol) ? "https" : "http") + "://vimberlin.de/piwik/";
134
+ _paq.push(['setTrackerUrl', u+'piwik.php']);
135
+ _paq.push(['setSiteId', 1]);
136
+ var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript';
137
+ g.defer=true; g.async=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
138
+ })();
139
+ </script>
140
+ <noscript><p><img src="https://vimberlin.de/piwik/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
141
+
142
+
143
+ <script src="/assets/javascripts/application.js" type="text/javascript"></script>
144
+ <!-- Hotjar Tracking Code for http://vimberlin.de -->
145
+ <script>
146
+ (function(h,o,t,j,a,r){
147
+ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
148
+ h._hjSettings={hjid:370627,hjsv:5};
149
+ a=o.getElementsByTagName('head')[0];
150
+ r=o.createElement('script');r.async=1;
151
+ r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
152
+ a.appendChild(r);
153
+ })(window,document,'//static.hotjar.com/c/hotjar-','.js?sv=');
154
+ </script>
155
+
156
+ </body>
157
+ </html>
@@ -0,0 +1,257 @@
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 2014 Meetup - Vimberlin</title>
8
+ <meta name="description" content="January 2014 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 2014 Meetup</h2>
87
+ <br>
88
+ <strong class="show-for-medium-up">Time: </strong><span itemprop="startDate">Starts 23 January 7:30 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://travis-ci.org/">
94
+ <span itemprop="name">GanzOben Office at Betahaus (Travis CI office, 5Apps, Avarteq, Cileos)</span>
95
+ </a>
96
+ 5th floor (<a href="https://gist.github.com/svenfuchs/5364262">detailed information how to get there</a>)
97
+ </span>
98
+ <span itemprop="streetAddress">, Prinzessinnenstr. 20</span>
99
+ <span>
100
+ <span itemprop="postalCode">, 10969</span>
101
+ <span itemprop="addressLocality">Berlin, Kreuzberg</span>
102
+ </span>
103
+ <meta content="Germany" itemprop="addressCountry">
104
+ (<a href="http://bit.ly/1dqOIZk">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>Happy new year and we start again with our monthly meetups in 2014.</p>
114
+
115
+ <h2>Talks</h2>
116
+
117
+ <ul>
118
+ <li><p><strong>&quot;Using Vimperator to browse the Web&quot;</strong> by <a href="https://twitter.com/wikimatze">Matthias Günther</a></p>
119
+
120
+ <p>I switched over to Vimperator one month ago and would like to show you shortcuts and how you can configure it.</p>
121
+
122
+ <p><iframe src="//player.vimeo.com/video/85943947" width="700" height="430" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> <p><a href="http://vimeo.com/85943947">&quot;Using Vimperator to browse the Web&quot; by Matthias Günther</a> from <a href="http://vimeo.com/wikimatze">wikimatze</a> on <a href="https://vimeo.com">Vimeo</a>.</p></p></li>
123
+ <li><p><strong>&quot;Clever autocommands&quot;</strong> by <a href="https://twitter.com/andrewradev">Andrew Radev</a></p>
124
+
125
+ <p>I&#39;m going to do a quick overview on autocommands and some gotchas in their usage. I assume that most people present will know this stuff already, but there might be one or two things you may not have known before :).</p>
126
+
127
+ <p>I&#39;ll talk about some clever ways I use autocommands. I&#39;ll also show my unfinished experiments with a recently-added autocommand called <code>TextChanged</code>. This allows you to hook into any kind of change in both normal and insert mode, with some gotchas...</p>
128
+
129
+ <p>I&#39;m hoping that many other attendees will pitch in for ideas about interesting autocommands they use, opening up some discussion after the talk.</p>
130
+
131
+ <p><iframe src="//player.vimeo.com/video/85031784" width="700" height="430" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> <p><a href="http://vimeo.com/85031784">“Clever autocommands” by Andrew Radev</a> from <a href="http://vimeo.com/wikimatze">wikimatze</a> on <a href="https://vimeo.com">Vimeo</a>.</p></p></li>
132
+ <li><p><strong>&quot;Writing text in Vim&quot;</strong> by <a href="http://feitel.indeedgeek.de/">Florian Eitel</a></p>
133
+
134
+ <p>I like to show some tricks and snippets I use for working with text. This include using the spell checker in multiple languages, break long lines, full text search using vimgrep and maybe more.</p>
135
+
136
+ <p><iframe src="//player.vimeo.com/video/85034312" width="700" height="430" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> <p><a href="http://vimeo.com/85034312">“Writing text in Vim” by Florian Eitel</a> from <a href="http://vimeo.com/wikimatze">wikimatze</a> on <a href="https://vimeo.com">Vimeo</a>.</p>
137
+ • <a href="/data/vimberlin-2014-01_vim_writing/">SLIDES</a></p></li>
138
+ <li><p><strong>Blame your vimrc</strong> <a href="https://twitter.com/der_kronn">Matthias</a> showing his <a href="https://github.com/kronn/dotfiles/blob/master/.vimrc">vimrc</a></p>
139
+
140
+ <p><iframe src="//player.vimeo.com/video/85795008" width="700" height="420" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> <p><a href="http://vimeo.com/85795008">“vimrc&quot; by Matthias Viehweger</a> from <a href="http://vimeo.com/wikimatze">wikimatze</a> on <a href="https://vimeo.com">Vimeo</a>.</p></p></li>
141
+ </ul>
142
+
143
+ <p>If you want to give a talk too, send us a tweet or a mail.</p>
144
+
145
+ <p>Thanks to <a href="https://travis-ci.org/">Travis CI</a> for hosting this event.</p>
146
+
147
+ <p><strong><a title="Matthias Günther" href="http://wikimatze.de/about">Matthias Günther</a></strong></p>
148
+
149
+ <h2>Recap</h2>
150
+
151
+ <h3>Vim News</h3>
152
+
153
+ <p>This is a new part in our meetup. <a href="https://twitter.com/andrewradev">Andrew</a> will talk about the latest things happening in our Vim community like stuff posted in reddit, discussions on the mailing list, some new plugin or new mapping that someone tweeted. If we get positive feedback about this idea, we make will make this a daily habbit to every following meetup.</p>
154
+
155
+ <h4>Plugins:</h4>
156
+
157
+ <ul>
158
+ <li><a href="https://github.com/tommcdo/vim-exchange">Exchange plugin</a></li>
159
+ <li><a href="https://github.com/justinmk/vim-sneak">Sneak.vim</a></li>
160
+ <li><a href="https://github.com/svermeulen/vim-easyclip">Easyclip</a></li>
161
+ </ul>
162
+
163
+ <h4>Builtins:</h4>
164
+
165
+ <ul>
166
+ <li><a href="http://www.reddit.com/r/vim/comments/1uq71v/a_gimmicky_but_potentially_useful_option/">:set writedelay</a></li>
167
+ </ul>
168
+
169
+ <h4>Twitter:</h4>
170
+
171
+ <ul>
172
+ <li><a href="https://twitter.com/dotvimrc/status/424236516030685184">Zip right</a></li>
173
+ </ul>
174
+
175
+ <h4>Vim mailing list:</h4>
176
+
177
+ <ul>
178
+ <li><a href="https://groups.google.com/forum/#!topic/vim_dev/UGPhorNh_3E">Check existence of function for version</a></li>
179
+ <li><a href="https://groups.google.com/forum/#!topic/vim_dev/QF7Bzh1YABU">Non-blocking jobs</a></li>
180
+ <li><a href="https://groups.google.com/forum/#!topic/vim_dev/65jjGqS1_VQ">Input queue</a></li>
181
+ <li><a href="https://groups.google.com/forum/#!topic/vim_dev/dcy_0HJ3RC0">Named builtins</a></li>
182
+ <li><a href="https://groups.google.com/forum/#!topic/vim_dev/drZDXZmYBsY">Complete rewrite</a></li>
183
+ </ul>
184
+
185
+ <p><strong><a title="Matthias Günther" href="http://wikimatze.de/about">Matthias Günther</a></strong></p>
186
+
187
+
188
+ <a class="prev" href="/november-2013-meetup/" rel="prev" title="Previous article: November 2013 Meetup">&laquo; November 2013 Meetup</a>
189
+ <a class="next" href="/march-2014-meetup/" rel="next" title="Next article: March 2014 Meetup">March 2014 Meetup &raquo; </a>
190
+ <div style="clear: both;"></div>
191
+ <a href="#comments"><span id="cmtcount"></span> Comments</a>
192
+ <div id="hashover"></div>
193
+ <script type="text/javascript" src="/hashover.php" defer="defer"></script>
194
+ </div>
195
+ </div>
196
+ </div >
197
+ </main>
198
+
199
+ <div class="footer--colophon hidden-xs">
200
+ <div class="container">
201
+ <div class="row">
202
+ <div class="col-md-6 col-md-offset-1">
203
+ <p class="footer--colophon__copyright">
204
+ <a href="/imprint"> Imprint</a>
205
+ <a style="border-left: #d5dbde 1px solid;margin-left: 8px; padding-left: 12px;" href="/contact">Contact</a>
206
+ <a target="_blank" rel="noopener noreferrer" href="http://vimfest.org" style="border-left: #d5dbde 1px solid;margin-left: 8px; padding-left: 12px;">Vimfest</a>
207
+ <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>
208
+ &nbsp;
209
+ <a class="footer-link" target="_blank" rel="noopener noreferrer" href="https://twitter.com/vimberlin"><i class="fa fa-twitter" aria-hidden="true"></i></a>
210
+ &nbsp;
211
+ <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>
212
+ &nbsp;
213
+ <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>
214
+ &nbsp;
215
+ <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>
216
+ &nbsp;
217
+ <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>
218
+ </p>
219
+ </div>
220
+ <div class="col-md-2 col-md-offset-3 hidden-xs">
221
+ <p class="footer--colophon__poweredby">Powered by <a href="https://github.com/timknight/middleman-ethos" target="_blank">Ethos</a></p>
222
+ </div>
223
+ </div>
224
+ </div>
225
+ </div>
226
+
227
+ <script type="text/javascript">
228
+ var _paq = _paq || [];
229
+ _paq.push(['trackPageView']);
230
+ _paq.push(['enableLinkTracking']);
231
+ (function() {
232
+ var u=(("https:" == document.location.protocol) ? "https" : "http") + "://vimberlin.de/piwik/";
233
+ _paq.push(['setTrackerUrl', u+'piwik.php']);
234
+ _paq.push(['setSiteId', 1]);
235
+ var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript';
236
+ g.defer=true; g.async=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
237
+ })();
238
+ </script>
239
+ <noscript><p><img src="https://vimberlin.de/piwik/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
240
+
241
+
242
+
243
+ <script src="/assets/javascripts/application.js" type="text/javascript"></script>
244
+ <!-- Hotjar Tracking Code for http://vimberlin.de -->
245
+ <script>
246
+ (function(h,o,t,j,a,r){
247
+ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
248
+ h._hjSettings={hjid:370627,hjsv:5};
249
+ a=o.getElementsByTagName('head')[0];
250
+ r=o.createElement('script');r.async=1;
251
+ r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
252
+ a.appendChild(r);
253
+ })(window,document,'//static.hotjar.com/c/hotjar-','.js?sv=');
254
+ </script>
255
+
256
+ </body>
257
+ </html>