<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Thomas Junkツ</title>
    <description>The latest articles on Forem by Thomas Junkツ (@thomasjunkos).</description>
    <link>https://forem.com/thomasjunkos</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F61813%2Fd12b6c68-9cc6-440b-a0b4-9f8eba5b6e82.jpg</url>
      <title>Forem: Thomas Junkツ</title>
      <link>https://forem.com/thomasjunkos</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/thomasjunkos"/>
    <language>en</language>
    <item>
      <title>Open Slides (conference tool) is looking for contributors</title>
      <dc:creator>Thomas Junkツ</dc:creator>
      <pubDate>Wed, 16 Jan 2019 08:36:49 +0000</pubDate>
      <link>https://forem.com/thomasjunkos/open-slides-conference-tool-is-looking-for-contributors-516e</link>
      <guid>https://forem.com/thomasjunkos/open-slides-conference-tool-is-looking-for-contributors-516e</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/intevation"&gt;We&lt;/a&gt; are developing a conference tool called &lt;a href="https://openslides.org/"&gt;openslides&lt;/a&gt; based on Django and Angular 7. The software deals with speaker management, display of content on different media projectors, polls etc. &lt;a href="https://www.youtube.com/watch?v=SvZ8N2SEzEg"&gt;Here&lt;/a&gt; is an image film which shows the tool in action. Last year we had a test run for Amnesty international.&lt;/p&gt;

&lt;p&gt;The current version is 2.3 (version 3 with fully mobile integration and material design is in the pipeline and will be released soon). Lately we implemented a basic real time chat with WebRTC as a plugin.&lt;/p&gt;

&lt;p&gt;Our project is hosted on &lt;a href="https://github.com/OpenSlides/OpenSlides"&gt;github&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;If you are looking for entry-level issues we have the &lt;a href="https://github.com/OpenSlides/OpenSlides/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22"&gt;good first issue&lt;/a&gt; hashtag.&lt;/p&gt;

</description>
      <category>contributorswanted</category>
    </item>
    <item>
      <title>Advent of code Day 1 - Javascript while loop abuse</title>
      <dc:creator>Thomas Junkツ</dc:creator>
      <pubDate>Thu, 20 Dec 2018 08:15:26 +0000</pubDate>
      <link>https://forem.com/thomasjunkos/advent-of-code-day-1---javascript-while-loop-abuse-lbc</link>
      <guid>https://forem.com/thomasjunkos/advent-of-code-day-1---javascript-while-loop-abuse-lbc</guid>
      <description>&lt;p&gt;Yesterday I found a little time, to start the annual AOC. &lt;/p&gt;

&lt;p&gt;Yes, I know, I am late to the party. But hey: Better late than never. &lt;/p&gt;

&lt;p&gt;So, the first part was an easy warm up, just &lt;code&gt;sum&lt;/code&gt; an array. Part 2 was a bit trickier. I came up with this - admittedly - somewhat "not clean" solution.&lt;/p&gt;

&lt;p&gt;OTOH, I find it nonetheless &lt;em&gt;readable&lt;/em&gt; in one way or the other.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;findDoubleFrequency&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;array&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;doubles&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;new&lt;/span&gt; &lt;span class="nb"&gt;Set&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
  &lt;span class="nx"&gt;doubles&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;add&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
  &lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;acc&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="k"&gt;while&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="o"&gt;!&lt;/span&gt;&lt;span class="nx"&gt;array&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;find&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;x&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
      &lt;span class="nx"&gt;acc&lt;/span&gt; &lt;span class="o"&gt;+=&lt;/span&gt; &lt;span class="nx"&gt;x&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
      &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;doubles&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;has&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;acc&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
      &lt;span class="p"&gt;}&lt;/span&gt;
      &lt;span class="nx"&gt;doubles&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;add&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;acc&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
      &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="p"&gt;})&lt;/span&gt;
  &lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{}&lt;/span&gt;
  &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="nx"&gt;acc&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>adventofcode</category>
      <category>spoiler</category>
      <category>javascript</category>
    </item>
  </channel>
</rss>
