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,402 @@
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>November 2015 Meetup - Vimberlin</title>
8
+ <meta name="description" content="November 2015 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>November 2015 Meetup</h2>
87
+ <br>
88
+ <strong class="show-for-medium-up">Time: </strong><span itemprop="startDate">Starts 19 November 7:00 pm</span>
89
+ <br>
90
+ <strong class="show-for-medium-up">Location: </strong>
91
+ <span itemtype="http://schema.org/PostalAddress" itemscope="" itemprop="location">
92
+ <span>
93
+ <a href="https://launchco.com/etc/#coworking">
94
+ <span itemprop="name">LAUNCH/CO</span>
95
+ </a>
96
+
97
+ </span>
98
+ <span itemprop="streetAddress">, Rudolfstraße 14</span>
99
+ <span>
100
+ <span itemprop="postalCode">, 10245</span>
101
+ <span itemprop="addressLocality">Berlin</span>
102
+ </span>
103
+ <meta content="Germany" itemprop="addressCountry">
104
+ (<a href="http://bit.ly/1wbCYmD">map</a>)
105
+ </span>
106
+ <br>
107
+ <br>
108
+
109
+
110
+ <div class="pull-right">
111
+ <a href="#comments">Comments</a>
112
+ </div>
113
+ <h2>Topics</h2>
114
+
115
+ <p>We will talk about using <a title="vim" href="http://www.vim.org/">vim</a> with <a title="screen window manager" href="https://www.gnu.org/software/screen/">screen window manager</a> and <a title="tmux" href="http://tmux.github.io/">tmux</a>. This meetup will exchange workflows, shortcuts and the setup of your dotfiles. Please bring your laptop with you, so that we can hack together.</p>
116
+
117
+ <h2>Sponsor</h2>
118
+
119
+ <p><img class="title" alt="LAUNCH/CO" src="/assets/images/launch_co_logo.png" /></p>
120
+
121
+ <p>Thanks to <a title="LAUNCH/CO" href="https://launchco.com/etc/#coworking">LAUNCH/CO</a> for hosting the event.</p>
122
+
123
+ <p><strong><a title="Matthias Günther" href="http://wikimatze.de/about">Matthias Günther</a></strong></p>
124
+
125
+ <p><a id="recap"></a></p>
126
+
127
+ <h2>Recap</h2>
128
+
129
+ <ul>
130
+ <li>internet:
131
+
132
+ <ul>
133
+ <li>connect to the local wifi (&quot;LAUNCH/CO&quot;);</li>
134
+ <li>start your browser.. and wait.. for the login page..</li>
135
+ <li>enter the user+pass for this event (see whiteboard)</li>
136
+ </ul></li>
137
+ <li>projector:
138
+
139
+ <ul>
140
+ <li>it didnt recognize the laptops with VGA. :-(</li>
141
+ <li>bring a VGA extension cable next time.</li>
142
+ <li>the HDMI failed once in a while.. loose connection? overheating?</li>
143
+ </ul></li>
144
+ <li>room:
145
+
146
+ <ul>
147
+ <li> we had been seven persons. there was maybe room for one more person.</li>
148
+ <li> then it gets awkward. definitely not enough space for 20 people.</li>
149
+ </ul></li>
150
+ <li>drinks: club-mate for 1,00€ :)</li>
151
+ </ul>
152
+
153
+ <h3>Richard &quot;oracle2025&quot; Spindler</h3>
154
+
155
+ <ul>
156
+ <li>Vimfiles: <a href="https://github.com/oracle2025/.vim">https://github.com/oracle2025/.vim</a></li>
157
+ <li>plugin #1: <a href="http://github.com/christoomay/vim-tmux-navigator">vim-tmux-navigator</a></li>
158
+ <li>plugin #2: <a href="https://github.com/benmills/vimux">vimux</a> =&gt; F5 opens the pane below and calls &quot;make&quot; therein.</li>
159
+ <li>plugin #3: <a href="http://github.com/jpalady/vim-slime">vim-slime</a> =&gt; copies the current line/paragraph into the pane below</li>
160
+ <li>mentioned <em>keycaster</em></li>
161
+ </ul>
162
+
163
+ <h3>Matthias &quot;wikimatze&quot; Günther</h3>
164
+
165
+ <ul>
166
+ <li>Vimfiles: <a href="https://github.com/wikimatze/vimfiles">https://github.com/wikimatze/vimfiles</a></li>
167
+ <li>Dotfiles: <a href="https://github.com/wikimatze/dotfiles">https://github.com/wikimatze/dotfiles</a></li>
168
+ <li><a href="https://github.com/tmux-plugins/tpm">tmux plugin manager (tpm)</a></li>
169
+ <li><a href="https://github.com/tmux-plugins/tmux-sensible">tmux-sensible</a>: common settings for every tmux.conf</li>
170
+ <li><a href="https://github.com/tmux-plugins/tmux-resurrect">tmux-resurrect</a>: store and save several tmux sessions</li>
171
+ <li><a href="https://github.com/tmux-plugins/tmux-open">tmux-open</a>: press &#39;o&#39; in Edit-Mode to open txt, mp3, pngs in your system default programms</li>
172
+ <li><a href="https://github.com/tmux-plugins/tmux-yank">tmux-yank</a>: copy text in tmux to system clipboard on various platforms</li>
173
+ <li><a href="https://github.com/tmux-plugins/tmux-copycat">tmux-copycat</a>: better searching with highlights</li>
174
+ <li><a href="https://github.com/jimeh/tmuxifier">tmuxifer</a>: Window and pane management for tmux</li>
175
+ </ul>
176
+
177
+ <h3>Philip</h3>
178
+
179
+ <p>&quot;uses the mouse&quot; ;)</p>
180
+
181
+ <ul>
182
+ <li>fzf: &quot;command line fuzzy finder&quot;
183
+
184
+ <ul>
185
+ <li><a href="https://github.com/junegunn/fzf">https://github.com/junegunn/fzf</a></li>
186
+ <li><a href="https://github.com/junegunn/fzf/wiki">https://github.com/junegunn/fzf/wiki</a></li>
187
+ <li><a href="https://www.youtube.com/watch?v=hO8vd1y0h6g10">https://www.youtube.com/watch?v=hO8vd1y0h6g10</a></li>
188
+ </ul></li>
189
+ <li>mucks: another way to manage sessions in both screen and tmux written in awk by Serge Zaitsev
190
+
191
+ <ul>
192
+ <li><a href="http://zserge.com/blog/mucks.html">http://zserge.com/blog/mucks.html</a></li>
193
+ <li><a href="http://zserge.com/blog/mucks2.html">http://zserge.com/blog/mucks2.html</a></li>
194
+ </ul></li>
195
+ </ul>
196
+
197
+ <h3>Christian &quot;wellle&quot; Wellenbrock</h3>
198
+
199
+ <ul>
200
+ <li>Vimfiles: <a href="https://github.com/wellle/dotfiles">https://github.com/wellle/dotfiles</a></li>
201
+ <li>uses the <a href="https://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard">dvorak keyboard layout</a></li>
202
+ <li><a href="http://ranger.nongnu.org/">ranger</a>: minimalistic file-browser
203
+
204
+ <ul>
205
+ <li>ranger: plugin for vim: <a href="https://raw.githubusercontent.com/hut/ranger/master/examples/vim_file_chooser.vim">https://raw.githubusercontent.com/hut/ranger/master/examples/vim_file_chooser.vim</a></li>
206
+ </ul></li>
207
+ <li>tmux: zoom with &#39;Prefix z&#39;</li>
208
+ <li><a href="https://github.com/wellle/tmux-complete.vim">tmux-complete</a>: completes words from other panes</li>
209
+ <li>tmux: enable tmux with mouse support for dragging borders between panes</li>
210
+ <li><a href="https://github.com/tpope/vim-tbone">vim-tbone</a>: a good plugin to send keys to certain panes</li>
211
+ </ul>
212
+
213
+ <h3>Sven Guckes</h3>
214
+
215
+ <ul>
216
+ <li>almost never uses the mouse</li>
217
+ <li>current window manager: &quot;i3&quot; (small+fast!)</li>
218
+ <li>has been using screen as an environment for 20+ years</li>
219
+ <li>maintainer of the screen maillist gnu-screen 2000-2004 <a href="https://groups.yahoo.com/neo/groups/gnu-screen/info">https://groups.yahoo.com/neo/groups/gnu-screen/info</a>
220
+
221
+ <ul>
222
+ <li><a href="http://www.guckes.net/Screen">http://www.guckes.net/Screen</a> webpages on screen</li>
223
+ </ul></li>
224
+ <li> setup files:
225
+
226
+ <ul>
227
+ <li><a href="http://www.guckes.net/Setup/screenrc.minimal">http://www.guckes.net/Setup/screenrc.minimal</a> 450byte</li>
228
+ <li><a href="http://www.guckes.net/Setup/screenrc">http://www.guckes.net/Setup/screenrc</a> (58KB): includes many examples, links about screen, a description of copy mode, and some general problems on screen</li>
229
+ </ul></li>
230
+ <li>screen or tmux? tmux!
231
+
232
+ <ul>
233
+ <li>comparison: <a href="http://www.guckes.net/tmux/vs.screen.txt">http://www.guckes.net/tmux/vs.screen.txt</a></li>
234
+ </ul></li>
235
+ </ul>
236
+
237
+ <p><strong>screen: some remarks:</strong></p>
238
+
239
+ <ul>
240
+ <li>screen+tmux: keep programs running</li>
241
+ <li>terminology:
242
+
243
+ <ul>
244
+ <li>screen: windows with regions</li>
245
+ <li>tmux: windows with panes</li>
246
+ </ul></li>
247
+ <li>splitting: horizontal und vertikal
248
+
249
+ <ul>
250
+ <li>screen: global layout</li>
251
+ <li>tmux: each window can have different panes</li>
252
+ </ul></li>
253
+ <li>useful shell aliases:</li>
254
+ </ul>
255
+ <pre class="highlight shell"><code><span class="nb">alias</span> <span class="se">\\</span>?<span class="o">=</span><span class="s1">'screen -ls'</span>
256
+ <span class="nb">alias</span> <span class="se">\\</span>!<span class="o">=</span><span class="s1">'screen -r'</span>
257
+ <span class="nb">alias </span><span class="nv">x</span><span class="o">=</span><span class="s1">'screen -x'</span>
258
+ </code></pre>
259
+ <ul>
260
+ <li>screen: starting sessions with config files</li>
261
+ </ul>
262
+ <pre class="highlight shell"><code>screen -c <span class="nv">$file</span>
263
+ <span class="nb">alias </span><span class="nv">WORK</span><span class="o">=</span><span class="s1">'screen -m -c ~/.screenrc.work'</span>
264
+ <span class="nb">alias </span><span class="nv">COMM</span><span class="o">=</span><span class="s1">'screen -t COMM 9 -m -c ~/.screenrc.comm'</span>
265
+ <span class="gp">-&gt; </span><span class="s2">":source"</span> allows splitting of config files
266
+ <span class="o">(</span>shells, mutt and vim allows this, <span class="nv">too</span><span class="o">=</span>
267
+ </code></pre>
268
+ <ul>
269
+ <li>bindings: allows to start programs and webpages easily (zB htop, imdb, mtr, mutt,vim; web: dict,google,imdbhj)</li>
270
+ </ul>
271
+
272
+ <p><strong>other tools:</strong></p>
273
+
274
+ <ul>
275
+ <li>irssi: &quot;a modular IRC client for UNIX&quot; backlog completion - ading tab completion for prefix of words which had been used in conversation (private or in public, ie on channels)</li>
276
+ <li><a href="http://www.guckes.net/irssi/scripts/backlog_completion.txt">http://www.guckes.net/irssi/scripts/backlog_completion.txt</a> written by Florian Ragwitz</li>
277
+ <li>xsel: &quot;manipulate the X selection&quot; <a href="http://www.vergenet.net/%7Econrad/software/xsel/">http://www.vergenet.net/~conrad/software/xsel/</a> copies text from shell/vim from/into the X clipboard -&gt; no need for vim to be compiled with clipboard support
278
+
279
+ <ul>
280
+ <li>same functionality for MacOSX: pbcopy + pbpaste <a href="http://osxdaily.com/2007/03/05/manipulating-the-clipboard-from-the-command-line/">http://osxdaily.com/2007/03/05/manipulating-the-clipboard-from-the-command-line/</a></li>
281
+ </ul></li>
282
+ <li>zsh: fc - &quot;The fc command controls the interactive history mechanism.&quot; builtin command to edit last command</li>
283
+ </ul>
284
+
285
+ <h3>Questions</h3>
286
+
287
+ <ul>
288
+ <li>screen: backlog search with patterns? -&gt; tmux+copycat!</li>
289
+ <li>tmux: does it have a zombie mode?</li>
290
+ <li>vim: tab management. &quot;jump to tab with &#39;foo&#39; in its name&quot; - possible?</li>
291
+ <li>vim: how do you handle empty/new buffers?
292
+
293
+ <ul>
294
+ <li>eg &quot;list all buffers without a file&quot;</li>
295
+ </ul></li>
296
+ </ul>
297
+
298
+ <h3>Video</h3>
299
+
300
+ <ul>
301
+ <li><a href="https://github.com/tpope/vim-dispatch">https://github.com/tpope/vim-dispatch</a></li>
302
+ <li><a href="https://github.com/keycastr/keycastr">https://github.com/keycastr/keycastr</a></li>
303
+ <li><a href="https://www.youtube.com/watch?v=hO8vd1y0h6g10">https://www.youtube.com/watch?v=hO8vd1y0h6g10</a> &quot;fzf - Fuzzy Finder For Your Shell - Linux TUI&quot;</li>
304
+ </ul>
305
+
306
+ <h3>Ideas</h3>
307
+
308
+ <p>Christian:
309
+ - tmux: allow naming of panes/windows with letters (instead of numbers)</p>
310
+
311
+ <p>Sven:
312
+ - CryoPID: &quot;A Process Freezer for Linux&quot; <a href="https://code.google.com/p/cryopid/">https://code.google.com/p/cryopid/</a>
313
+ - CryoPID can move your running Linux programs from one computer to another. has anyone used this yet?
314
+ - reptyr: &quot;Tool for moving running programs between ptys&quot;
315
+ - feh: &quot;image viewer and cataloguer&quot;</p>
316
+ <pre class="highlight shell"><code>bilder sortieren per key bindings -&gt; actions
317
+ parameter: --action1 .. --action9
318
+ action1: save pictures to subdir1 <span class="o">(</span>good -&gt; keep<span class="o">)</span>
319
+ action2: save pictures to subdir2 <span class="o">(</span>bad -&gt; keep <span class="k">for </span>now<span class="o">)</span>
320
+ action3: save pictures to subdir3 <span class="o">(</span>ugly -&gt; to be deleted<span class="o">)</span>
321
+ </code></pre>
322
+ <ul>
323
+ <li>screen: use case embedded device -&gt; Bjoern Buerger</li>
324
+ <li>mutt+vim: colouring/farben</li>
325
+ <li>tmux: use extra pane to show key input (four/five lines)</li>
326
+ <li>vim: running several instances on the same files (swapfile issues)</li>
327
+ <li>vim: compare nerdtree to Explore to vimnegar(?)</li>
328
+ </ul>
329
+
330
+ <p>Thanks to <a title="Sven Guckes" href="http://www.guckes.net">Sven Guckes</a> for writing the notes.</p>
331
+
332
+
333
+ <a class="prev" href="/vimfest-october-2015/" rel="prev" title="Previous article: Vimfest October 2015">&laquo; Vimfest October 2015</a>
334
+ <a class="next" href="/december-2015-meetup/" rel="next" title="Next article: December 2015 Meetup">December 2015 Meetup &raquo; </a>
335
+ <div style="clear: both;"></div>
336
+ <a href="#comments"><span id="cmtcount"></span> Comments</a>
337
+ <div id="hashover"></div>
338
+ <script type="text/javascript" src="/hashover.php" defer="defer"></script>
339
+ </div>
340
+ </div>
341
+ </div >
342
+ </main>
343
+
344
+ <div class="footer--colophon hidden-xs">
345
+ <div class="container">
346
+ <div class="row">
347
+ <div class="col-md-6 col-md-offset-1">
348
+ <p class="footer--colophon__copyright">
349
+ <a href="/imprint"> Imprint</a>
350
+ <a style="border-left: #d5dbde 1px solid;margin-left: 8px; padding-left: 12px;" href="/contact">Contact</a>
351
+ <a target="_blank" rel="noopener noreferrer" href="http://vimfest.org" style="border-left: #d5dbde 1px solid;margin-left: 8px; padding-left: 12px;">Vimfest</a>
352
+ <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>
353
+ &nbsp;
354
+ <a class="footer-link" target="_blank" rel="noopener noreferrer" href="https://twitter.com/vimberlin"><i class="fa fa-twitter" aria-hidden="true"></i></a>
355
+ &nbsp;
356
+ <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>
357
+ &nbsp;
358
+ <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>
359
+ &nbsp;
360
+ <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>
361
+ &nbsp;
362
+ <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>
363
+ </p>
364
+ </div>
365
+ <div class="col-md-2 col-md-offset-3 hidden-xs">
366
+ <p class="footer--colophon__poweredby">Powered by <a href="https://github.com/timknight/middleman-ethos" target="_blank">Ethos</a></p>
367
+ </div>
368
+ </div>
369
+ </div>
370
+ </div>
371
+
372
+ <script type="text/javascript">
373
+ var _paq = _paq || [];
374
+ _paq.push(['trackPageView']);
375
+ _paq.push(['enableLinkTracking']);
376
+ (function() {
377
+ var u=(("https:" == document.location.protocol) ? "https" : "http") + "://vimberlin.de/piwik/";
378
+ _paq.push(['setTrackerUrl', u+'piwik.php']);
379
+ _paq.push(['setSiteId', 1]);
380
+ var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript';
381
+ g.defer=true; g.async=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
382
+ })();
383
+ </script>
384
+ <noscript><p><img src="https://vimberlin.de/piwik/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
385
+
386
+
387
+
388
+ <script src="/assets/javascripts/application.js" type="text/javascript"></script>
389
+ <!-- Hotjar Tracking Code for http://vimberlin.de -->
390
+ <script>
391
+ (function(h,o,t,j,a,r){
392
+ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
393
+ h._hjSettings={hjid:370627,hjsv:5};
394
+ a=o.getElementsByTagName('head')[0];
395
+ r=o.createElement('script');r.async=1;
396
+ r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
397
+ a.appendChild(r);
398
+ })(window,document,'//static.hotjar.com/c/hotjar-','.js?sv=');
399
+ </script>
400
+
401
+ </body>
402
+ </html>
@@ -0,0 +1,224 @@
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>November 2016 Meetup - Vimberlin</title>
8
+ <meta name="description" content="November 2016 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>November 2016 Meetup</h2>
87
+ <br>
88
+ <strong class="show-for-medium-up">Time: </strong><span itemprop="startDate">Starts 17 November 7:00 pm</span>
89
+ <br>
90
+ <strong class="show-for-medium-up">Location: </strong>
91
+ <span itemtype="http://schema.org/PostalAddress" itemscope="" itemprop="location">
92
+ <span>
93
+ <a href="https://www.in-berlin.de/space">
94
+ <span itemprop="name">Individual Network Berlin e.V.</span>
95
+ </a>
96
+
97
+ </span>
98
+ <span itemprop="streetAddress">, Lehrter Str. 53</span>
99
+ <span>
100
+ <span itemprop="postalCode">, 10557</span>
101
+ <span itemprop="addressLocality">Berlin</span>
102
+ </span>
103
+ <meta content="Germany" itemprop="addressCountry">
104
+ (<a href="http://www.openstreetmap.org/node/412766878#map=19/52.53428/13.35880">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>Hi vimmers,</p>
114
+
115
+ <p>the next meetup will be on 17th Thursday in November at IN-Berlin in Moabit/Tiergarten/Mitte,
116
+ just north of Hauptbahnhof between the bus stops <code>&quot;Quitzowstraße&quot;</code> (Bus 123, M27) and <code>&quot;Kruppstraße&quot;</code> (Bus 123).</p>
117
+
118
+ <p>Interested? We are always interested in short-talks, longer talks as well as presentations about what you&#39;ve learned.</p>
119
+
120
+ <p>We can do the following</p>
121
+
122
+ <ul>
123
+ <li>vim intro for beginners</li>
124
+ <li>vim Q&amp;A - questions+answers</li>
125
+ <li>vim NEWS</li>
126
+ <li>vim installation from source (git repository)</li>
127
+ <li>vim installation config with support for lua+perl+python+ruby</li>
128
+ <li>vimgolf challenge</li>
129
+ </ul>
130
+
131
+ <p>Feel free to join us and we will help to setup vim</p>
132
+
133
+ <h2>The venue</h2>
134
+
135
+ <ul>
136
+ <li>internet: yes. cable+wifi</li>
137
+ <li>projector: 2 projectors. (VGA+HDMI), if you have a Mac, don&#39;t forget your adapters and/or install
138
+ <a href="http://www.teamviewer.com/de/">teamviewer.com/</a>
139
+
140
+ <ul>
141
+ <li>room: 15 people</li>
142
+ <li>drinks: fridge with drinks. 1€ each.</li>
143
+ </ul></li>
144
+ </ul>
145
+
146
+ <p>Bring your laptops - and join the fun! And show us <em>your</em> use with Vim! Be brief.. 5min for each presentation. We are
147
+ open to any kind of questions and suggestions.</p>
148
+
149
+ <p>Your host will be <a title="Sven Guckes" href="http://www.guckes.net">Sven Guckes (@guckes)</a> &amp; <a title="Matthias Guenther (@wikimatze)" href="http://wikimatze.de/">Matthias Guenther
150
+ (@wikimatze)</a></p>
151
+
152
+ <p>See you there!</p>
153
+
154
+
155
+ <a class="prev" href="/october-2016-meetup/" rel="prev" title="Previous article: October 2016 Meetup">&laquo; October 2016 Meetup</a>
156
+ <a class="next" href="/december-2016-meetup/" rel="next" title="Next article: December 2016 Meetup">December 2016 Meetup &raquo; </a>
157
+ <div style="clear: both;"></div>
158
+ <a href="#comments"><span id="cmtcount"></span> Comments</a>
159
+ <div id="hashover"></div>
160
+ <script type="text/javascript" src="/hashover.php" defer="defer"></script>
161
+ </div>
162
+ </div>
163
+ </div >
164
+ </main>
165
+
166
+ <div class="footer--colophon hidden-xs">
167
+ <div class="container">
168
+ <div class="row">
169
+ <div class="col-md-6 col-md-offset-1">
170
+ <p class="footer--colophon__copyright">
171
+ <a href="/imprint"> Imprint</a>
172
+ <a style="border-left: #d5dbde 1px solid;margin-left: 8px; padding-left: 12px;" href="/contact">Contact</a>
173
+ <a target="_blank" rel="noopener noreferrer" href="http://vimfest.org" style="border-left: #d5dbde 1px solid;margin-left: 8px; padding-left: 12px;">Vimfest</a>
174
+ <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>
175
+ &nbsp;
176
+ <a class="footer-link" target="_blank" rel="noopener noreferrer" href="https://twitter.com/vimberlin"><i class="fa fa-twitter" aria-hidden="true"></i></a>
177
+ &nbsp;
178
+ <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>
179
+ &nbsp;
180
+ <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>
181
+ &nbsp;
182
+ <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>
183
+ &nbsp;
184
+ <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>
185
+ </p>
186
+ </div>
187
+ <div class="col-md-2 col-md-offset-3 hidden-xs">
188
+ <p class="footer--colophon__poweredby">Powered by <a href="https://github.com/timknight/middleman-ethos" target="_blank">Ethos</a></p>
189
+ </div>
190
+ </div>
191
+ </div>
192
+ </div>
193
+
194
+ <script type="text/javascript">
195
+ var _paq = _paq || [];
196
+ _paq.push(['trackPageView']);
197
+ _paq.push(['enableLinkTracking']);
198
+ (function() {
199
+ var u=(("https:" == document.location.protocol) ? "https" : "http") + "://vimberlin.de/piwik/";
200
+ _paq.push(['setTrackerUrl', u+'piwik.php']);
201
+ _paq.push(['setSiteId', 1]);
202
+ var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript';
203
+ g.defer=true; g.async=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
204
+ })();
205
+ </script>
206
+ <noscript><p><img src="https://vimberlin.de/piwik/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
207
+
208
+
209
+
210
+ <script src="/assets/javascripts/application.js" type="text/javascript"></script>
211
+ <!-- Hotjar Tracking Code for http://vimberlin.de -->
212
+ <script>
213
+ (function(h,o,t,j,a,r){
214
+ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
215
+ h._hjSettings={hjid:370627,hjsv:5};
216
+ a=o.getElementsByTagName('head')[0];
217
+ r=o.createElement('script');r.async=1;
218
+ r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
219
+ a.appendChild(r);
220
+ })(window,document,'//static.hotjar.com/c/hotjar-','.js?sv=');
221
+ </script>
222
+
223
+ </body>
224
+ </html>