<turbo-stream action="append" target="posts_list"><template>    <div class="postbit" id="233776" data-post-id="233776">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="jazzyer" src="/assets/icons/user-9f439610.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  jazzyer
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Day 1: two solutions for <code>part one</code>, <code>part two</code> + <code>tests</code>. Would love to hear some critic/thoughts/suggestions.</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">defmodule AOC_2021.Day1 do
  @input "input.txt"
  def part_one_1 do
    [_, result] =
      @input
      |&gt; list_of_numbers()
      |&gt; Enum.reduce([0, 0], fn item, [last_item, result] -&gt;
        cond do
          last_item == 0 -&gt;
            [item, result]

          last_item &lt; item -&gt;
            [item, result + 1]

          true -&gt;
            [item, result]
        end
      end)

    result
  end

  def part_one_2 do
    result =
      @input
      |&gt; list_of_numbers()
      |&gt; Enum.to_list()
      |&gt; do_job(0)

    result
  end

  defp do_job([first | [second | _] = tail], result) when first &lt; second,
    do: do_job(tail, result + 1)

  defp do_job([_ | [_ | _] = tail], result), do: do_job(tail, result)

  defp do_job([_ | _], result), do: result

  def part_two do
    [_item, _, result] =
      @input
      |&gt; list_of_numbers()
      |&gt; Enum.chunk_every(3, 1, :discard)
      |&gt; Enum.reduce([0, 0, 0], fn [first, second, third], [last_item, window_sum, result] -&gt;
        cond do
          last_item == 0 -&gt;
            [first + second + third, second + third, result]

          last_item &lt; window_sum + third -&gt;
            [window_sum + third, second + third, result + 1]

          true -&gt;
            [window_sum + third, second + third, result]
        end
      end)

    result
  end

  defp list_of_numbers(input) do
    input
    |&gt; File.stream!([], :line)
    |&gt; Stream.map(fn line -&gt;
      {integer, _} = Integer.parse(line)
      integer
    end)
  end
end

case System.argv() do
  ["--test"] -&gt;
    ExUnit.start()

    defmodule AOC_2021.Day1Test do
      use ExUnit.Case

      @expected_part_one 1121
      @expected_part_two 1065

      test "tests" do
        response = fn _, _, _ -&gt;
          [
            AOC_2021.Day1.part_one_1(),
            AOC_2021.Day1.part_one_2(),
            AOC_2021.Day1.part_two()
          ]
        end

        assert [@expected_part_one, @expected_part_one, @expected_part_two] ==
                 response.(1121, 1121, 1065)
      end
    end

  ["--run"] -&gt;
    AOC_2021.Day1.part_one_1()
    |&gt; IO.inspect(label: "\npart_one_1 \n")

    AOC_2021.Day1.part_one_2()
    |&gt; IO.inspect(label: "\npart_one_2 \n")

    AOC_2021.Day1.part_two()
    |&gt; IO.inspect(label: "\npart_two \n")

  _ -&gt;
    IO.puts(:stderr, "\nplease specify --run or --test flag")
end
</code></pre> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="233776" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/advent-of-code-2021-day-1/44179/42">Post #41</a>
	                </div>
	            </div>
              <div id="likers-container-233776" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="233776"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #41"></div>
  </section>
</div>
    <div class="postbit" id="233777" data-post-id="233777">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="m4hi2" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/m4hi2/120/23554_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  m4hi2
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>While looking at your solution, I was thinking the same that why didn’t you use either <code>a &lt; b</code> or <code>b &gt; a</code>. I was about to ask you. <img src="https://forum.elixirforum.com/images/emoji/apple/grinning.png?v=15" title=":grinning:" class="emoji" alt=":grinning:" loading="lazy" width="20" height="20"></p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="233777" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/advent-of-code-2021-day-1/44179/43">Post #42</a>
	                </div>
	            </div>
              <div id="likers-container-233777" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="233777"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #42"></div>
  </section>
</div>
    <div class="postbit" id="233791" data-post-id="233791">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="miguelbermudez" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/miguelbermudez/120/15284_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  miguelbermudez
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Elixir newbie here! Just wanted a reason to start using Livebook.</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">report = ("inputs/day01.txt")
|&gt; File.read!
|&gt; String.split(~r/\n/, trim: true)
|&gt; Enum.map(&amp;String.to_integer/1)

defmodule Sonar do
  def depthReport([]), do: []  
  def depthReport([_head | []]), do: []
  def depthReport([head | tail]) do 
    #IO.puts("head #{inspect(head)} \t tail #{inspect(tail)}")
    
    [(if (head &lt; hd(tail)), do: :up, else: :down) | depthReport(tail)]
  end

  def is_up(a) when is_atom(a), do: a == :up
end
# part 1 
report
|&gt; Sonar.depthReport
|&gt; Enum.filter(&amp;Sonar.is_up/1)
|&gt; length

# part 2
report
|&gt; Enum.chunk_every(3, 1, :discard)
|&gt; Enum.map(&amp;Enum.sum/1)
|&gt; Sonar.depthReport
|&gt; Enum.filter(&amp;Sonar.is_up/1)
|&gt; length


</code></pre>
<p>Found out about <code>chunk_every</code> <strong>after</strong> part1 <img src="https://forum.elixirforum.com/images/emoji/apple/man_facepalming.png?v=15" title=":man_facepalming:" class="emoji" alt=":man_facepalming:" loading="lazy" width="20" height="20"></p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="233791" data-batch-url="/posts/batch_likers">
                        2
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/advent-of-code-2021-day-1/44179/44">Post #43</a>
	                </div>
	            </div>
              <div id="likers-container-233791" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="233791"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #43"></div>
  </section>
</div>
    <div class="postbit" id="233804" data-post-id="233804">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="code-shoily" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/code-shoily/120/8052_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  code-shoily
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>I am waiting to see how Jose solves things with Livebook tomorrow. I missed the first part of the broadcast today but I did see <code>Lit HTML</code> and I was like… how do I rewind this video! Really looking forward.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="233804" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/advent-of-code-2021-day-1/44179/45">Post #44</a>
	                </div>
	            </div>
              <div id="likers-container-233804" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="233804"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #44"></div>
  </section>
</div>
    <div class="postbit" id="233859" data-post-id="233859">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="romenigld" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/romenigld/120/6200_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  romenigld
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>I created another mix project called aoc2021 and rather than create a new mix project for every day I will put everything in this one project.<br>
My solution of the <a href="https://github.com/romenigld/AOC2021/blob/master/lib/day01.ex" rel="noopener nofollow ugc">Day 1 - Github</a></p>
<pre data-code-wrap="elixir"><code class="lang-elixir">defmodule Day01 do
  @sample ~w/199
             200
             208
             210
             200
             207
             240
             269
             260
             263/
             |&gt; Enum.map(&amp;String.to_integer/1)

  @report_list "assets/day01.txt"
               |&gt; File.read!()
               |&gt; String.split(~r/\n/, trim: true)
               |&gt; Enum.map(&amp;String.to_integer/1)

  def list do
    @report_list
  end

  defp larger_than_previous([]), do: []

  defp larger_than_previous([h1 | [h2 | _] = t]) do
    [h2 &gt; h1 | larger_than_previous(t)]
  end

  defp larger_than_previous([_ | t]), do: larger_than_previous(t)

  def count do
    ltp_count(list())
  end

  def count_sample do
    ltp_count(@sample)
  end

  # Puzzle 2

  defp sum3([]), do: []

  defp sum3([h1 | [h2 | [h3 | _]] = t]) do
    [h1 + h2 + h3 | sum3(t)]
  end

  defp sum3([_ | t]), do: sum3(t)

  def count2_sample do
    sum3 = sum3(@sample)
    ltp_count(sum3)
  end

  def count2 do
    sum3 = sum3(@report_list)
    ltp_count(sum3)
  end

  defp ltp_count(list) do
    list_ltp = larger_than_previous(list)
    Enum.count(list_ltp, fn x -&gt; x == true end)
  end
end

# Results of the Sample
IO.puts("The result of the 1st sample is: #{Day01.count_sample()}")
IO.puts("The result of the 2nd sample is: #{Day01.count2_sample()}")

# Results of the Puzzle
IO.puts("The result of the 1st puzzle is: #{Day01.count()}")
IO.puts("The result of the 2nd puzzle is: #{Day01.count2()}")
</code></pre>
<p>run <code> iex -S mix</code>:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">iex(1)&gt; r Day01
The result of the 1st sample is: 7
The result of the 2nd sample is: 5
The result of the 1st puzzle is: 1462
The result of the 2nd puzzle is: 1497
{:reloaded, Day01, [Day01]}
</code></pre> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="233859" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/advent-of-code-2021-day-1/44179/46">Post #45</a>
	                </div>
	            </div>
              <div id="likers-container-233859" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="233859"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #45"></div>
  </section>
</div>
    <div class="postbit" id="233862" data-post-id="233862">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="outlog" src="/assets/icons/user-9f439610.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  outlog
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p><a class="mention" href="/u/seanmor5" rel="nofollow">@seanmor5</a> posted a Nx solution on twitter - which is very interesting and different from Enum/Stream..<br>
<a href="https://twitter.com/sean_moriarity/status/1466380895884038151" class="onebox" target="_blank" rel="noopener nofollow ugc">https://twitter.com/sean_moriarity/status/1466380895884038151</a></p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="233862" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/advent-of-code-2021-day-1/44179/47">Post #46</a>
	                </div>
	            </div>
              <div id="likers-container-233862" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="233862"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #46"></div>
  </section>
</div>
    <div class="postbit" id="233870" data-post-id="233870">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="hauleth" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/hauleth/120/18942_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  hauleth
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>It is actually the same as <code>Enum</code>/<code>Stream</code> solution, just doing everything on structure that conceptually is parallel.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="233870" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/advent-of-code-2021-day-1/44179/48">Post #47</a>
	                </div>
	            </div>
              <div id="likers-container-233870" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="233870"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #47"></div>
  </section>
</div>
    <div class="postbit" id="233882" data-post-id="233882">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="josevalim" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/josevalim/120/1787_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  josevalim
                  </h3>
		          </div>
						
			          <div class="user-title">
									<span>Creator of Elixir</span>
			          </div>
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>My solutions for day 1 can be found here: <a href="https://github.com/josevalim/aoc/blob/main/2021/day-01.livemd" rel="nofollow">https://github.com/josevalim/aoc/blob/main/2021/day-01.livemd</a></p>
<p>I used Livebook and I solved using different styles: enum, nx, and recursion. You can find the streaming here: <a href="https://www.twitch.tv/videos/1221981322" class="inline-onebox" rel="nofollow">Twitch</a></p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="233882" data-batch-url="/posts/batch_likers">
                        7
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/advent-of-code-2021-day-1/44179/49">Post #48</a>
	                </div>
	            </div>
              <div id="likers-container-233882" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="233882"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #48"></div>
  </section>
</div>
    <div class="postbit" id="233892" data-post-id="233892">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="stevensonmt" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/stevensonmt/120/20503_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  stevensonmt
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>When people say they’re using Livebook for these exercises, does that have any practical impact on the code? Is Livebook just a cloud-based dev environment like cloud9 or something?</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="233892" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/advent-of-code-2021-day-1/44179/50">Post #49</a>
	                </div>
	            </div>
              <div id="likers-container-233892" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="233892"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #49"></div>
  </section>
</div>
    <div class="postbit" id="233897" data-post-id="233897">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="ruslandoga" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/ruslandoga/120/22193_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  ruslandoga
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Livebooks are like Jupyter notebooks streamlined for Elixir, it works both locally and remotely. Not sure if you are familiar with the latter, it’s quite big in data science communities.</p>
<aside class="onebox allowlistedgeneric" data-onebox-src="https://livebook.dev">
  <header class="source">
      <img src="https://livebook.dev/favicon.svg" class="site-icon" alt="" width="690" height="755">

      <a href="https://livebook.dev" target="_blank" rel="noopener nofollow ugc">livebook.dev</a>
  </header>

  <article class="onebox-body">
    

<h3><a href="https://livebook.dev" target="_blank" rel="noopener nofollow ugc">Home - Livebook.dev</a></h3>

  <p>Automate code &amp; data workflows with interactive notebooks</p>


  </article>

  <div class="onebox-metadata">
    
    
  </div>

  <div style="clear: both"></div>
</aside>
 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="233897" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/advent-of-code-2021-day-1/44179/51">Post #50</a>
	                </div>
	            </div>
              <div id="likers-container-233897" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="233897"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #50"></div>
  </section>
</div>
</template></turbo-stream><turbo-stream action="replace" target="load-more-container"><template><div id="load-more-container" class="load-more-container">
    <a class="load-more-button" data-turbo-stream="true" href="/topics/44179/load_more?page=6">Load more posts (9 remaining)</a>
</div></template></turbo-stream>