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


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<h4><a name="p-77145-enterprise-smart-contracts-with-marley-gray-1" class="anchor" href="#p-77145-enterprise-smart-contracts-with-marley-gray-1" aria-label="Heading link" rel="nofollow"></a>Enterprise Smart Contracts with Marley Gray</h4>
<blockquote>
<p>In this episode, Marley Gray from Microsoft joins the show to discuss enterprise smart contracts–why you would want to use them and how they can be architected. Marley has worked on banking and financial technology for over a decade, and makes some strong arguments for why banks will adopt smart contracts, and the timeline for how that might take place.</p>
</blockquote>
<aside class="onebox allowlistedgeneric" data-onebox-src="https://softwareengineeringdaily.com/2018/03/29/enterprise-smart-contracts-with-marley-gray/">
  <header class="source">
      <img src="https://softwareengineeringdaily.com/wp-content/uploads/fbrfg/favicon-32x32.png?v=PYYeqgEwMA" class="site-icon" alt="" width="32" height="32">

      <a href="https://softwareengineeringdaily.com/2018/03/29/enterprise-smart-contracts-with-marley-gray/" target="_blank" rel="noopener nofollow ugc" title="09:00AM - 29 March 2018">Software Engineering Daily – 29 Mar 18</a>
  </header>

  <article class="onebox-body">
    <div class="aspect-image" style="--aspect-ratio:690/344;"><img src="https://i0.wp.com/softwareengineeringdaily.com/wp-content/uploads/2018/03/SmartContracts_handshake.png?fit=1100%2C550" class="thumbnail" alt="" width="690" height="345"></div>

<h3><a href="https://softwareengineeringdaily.com/2018/03/29/enterprise-smart-contracts-with-marley-gray/" target="_blank" rel="noopener nofollow ugc">Enterprise Smart Contracts with Marley Gray - Software Engineering Daily</a></h3>

  <p>We sign many different types of contracts throughout our lives. We sign a mortgage to get a loan for a house. When we go to the hospital, we sign a piece of paper that defines how our medical data can be shared between organizations. These pieces of...</p>

  <p>
    <span class="label1">Est. reading time: 1 minute</span>
  </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="77145" 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/the-blockchain-distributed-ledger-technology/451/75">Post #74</a>
	                </div>
	            </div>
              <div id="likers-container-77145" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="77145"
                     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 #74"></div>
  </section>
</div>
    <div class="postbit" id="77194" data-post-id="77194">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group quote-modified" data-username="mkunikow" data-post="75" data-topic="451">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/mkunikow/48/235_2.png" class="avatar"> mkunikow:</div>
<blockquote>
<p><a href="https://softwareengineeringdaily.com/2018/03/29/enterprise-smart-contracts-with-marley-gray/" class="inline-onebox" rel="noopener nofollow ugc">Enterprise Smart Contracts with Marley Gray - Software Engineering Daily</a></p>
</blockquote>
</aside>
<p>I thought this episode was particularly interesting when Marley talked about how an enterprise integration might occur between businesses using a shared ledger.</p>
<p>When doing something a stateless integration probably with REST, you can often end up coupling systems together through some variation of schema(probably JSON). You have types, often nested associations, and field names that each system needs to support. If you need real-time coordination between these information systems such as when a contracting company is fulfilling some services for a shared customer, having a stateless API doesn’t fit the bill very well. Both systems probably have very different implementations in place, and the complexity of polling, authentication, authorization, and handling record changes can get pretty complex when you’re dealing with database conflicts and reactive logic to said changes.</p>
<p>A good description of some of the challenges involved with using this sort of API in <a href="https://youtu.be/sTB-TwsKrYY" rel="noopener nofollow ugc">Elixir/Ecto might be Dennis Beatty’s recent talk at Lonestar</a>. The gist of it is Podium is polling a Google REST API for Reviews, and processing changes for updates, handling conflicts etc. You end up running into some troublesome limitations with Postgres sequencing and what-not dealing with these upserts and conflicts.</p>
<p>The obvious alternative solution might be a messaging, pub-sub type integration where the two systems are coupled by a set of ubiquitous events that can then be handled by either system as needed. This could be done with a central server (Elixir/Erlang is a great fit) that runs some handshaking for authentication, sets up channels, and delivers encrypted events to the subscribers.</p>
<p>The problem with doing it this way is dependency on this central service. Which company is running this middle-man event-messaging service? What if there’s a conflict? What if one party distrusts the message being sent from this service? This is where having a distributed ledger becomes interesting. Both companies can host a node of this middle-ware service and maintain a copy of the ledger of the events. Now there’s no centralized dependency on a service hosted by either party, the same (potentially event-sourced) capabilities are supported.</p>
<p>Instead of the Google Reviews API requiring polling of stateless resources, you throw up a Node, download the ledger, and consume events into whatever architecture you prefer. You get an audit-able, event-sourced, Kafka-esque functionality between multiple parties that doesn’t have the same technical problems as stateless API integrations.</p>
<p>Anyone know similar systems being built like this? I find these patterns really interesting.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="77194" data-batch-url="/posts/batch_likers">
                        5
                      </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/the-blockchain-distributed-ledger-technology/451/76">Post #75</a>
	                </div>
	            </div>
              <div id="likers-container-77194" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="77194"
                     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 #75"></div>
  </section>
</div>
    <div class="postbit" id="84766" data-post-id="84766">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Great write up! Thanks for sharing that.</p>
<p>I did find this excellent list of use-cases for blockchain technology over at Hyperledger: <a href="https://wiki.hyperledger.org/groups/requirements/use-case-inventory" rel="noopener nofollow ugc">https://wiki.hyperledger.org/groups/requirements/use-case-inventory</a>.</p>
<p>Just one of the use-cases:</p>
<p><a href="https://wiki.hyperledger.org/requirements/use-cases/use-case-find-a-provider" class="onebox" target="_blank" rel="noopener nofollow ugc">https://wiki.hyperledger.org/requirements/use-cases/use-case-find-a-provider</a></p>
<blockquote>
<p>The more integrated is a health care delivery system, the less advantage there is to maintaining a provider directory in a blockchain. Conversely, as the relationship between the system and the providers becomes more fluid, the more compelling it is to implement both a consumer facing and a provider facing directory as a blockchain.</p>
</blockquote>
<p>I’d consider that list and those related pages great sources of inspiration for anyone getting into blockchain development.</p>
<p>I also found the Golem blockchain platform (<a href="https://golem.network/" rel="noopener nofollow ugc">https://golem.network/</a>), which was used to render CGI:</p>
<p><a href="https://blog.golemproject.net/the-first-business-case-cgi-rendering-ad6f8942137f" class="onebox" target="_blank" rel="noopener nofollow ugc">https://blog.golemproject.net/the-first-business-case-cgi-rendering-ad6f8942137f</a></p>
<p>Golem also has a monetary aspect in terms of their software marketplace, and seems they are putting software developers at the helm. Current market cap at $350m:</p>
<aside class="onebox allowlistedgeneric" data-onebox-src="https://coinmarketcap.com/currencies/golem-network-tokens/">
  <header class="source">
      <img src="https://coinmarketcap.com/favicon.ico" class="site-icon" alt="" width="32" height="32">

      <a href="https://coinmarketcap.com/currencies/golem-network-tokens/" target="_blank" rel="noopener nofollow ugc">CoinMarketCap</a>
  </header>

  <article class="onebox-body">
    <img width="200" height="200" src="https://forum.elixirforum.com/uploads/default/original/2X/3/34ca7ac207a92c453a66895577db29fc3a0deb84.png" class="thumbnail onebox-avatar" alt="" data-dominant-color="F6F6F6">

<h3><a href="https://coinmarketcap.com/currencies/golem-network-tokens/" target="_blank" rel="noopener nofollow ugc">Golem price today, GLM to USD live price, marketcap and chart | CoinMarketCap</a></h3>

  <p>The live Golem price today is $0.104 USD with a 24-hour trading volume of $29,848,307.75 USD. We update our GLM to USD price in real-time.</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="84766" 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/the-blockchain-distributed-ledger-technology/451/77">Post #76</a>
	                </div>
	            </div>
              <div id="likers-container-84766" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="84766"
                     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 #76"></div>
  </section>
</div>
    <div class="postbit" id="84976" data-post-id="84976">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="BitGonzo" data-post="77" data-topic="451">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/bitgonzo/48/8083_2.png" class="avatar"> BitGonzo:</div>
<blockquote>
<p>I did find this excellent list of use-cases for blockchain technology over at Hyperledger:</p>
</blockquote>
</aside>
<p>IBM is using Hyperledger as far I know. You can check theirs twit <a href="https://twitter.com/ibmblockchain" class="inline-onebox" rel="noopener nofollow ugc">IBM Blockchain (@IBMBlockchain) / X</a><br>
<a href="https://twitter.com/Hyperledger" class="inline-onebox" rel="noopener nofollow ugc">Hyperledger Foundation (@Hyperledger) / X</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="84976" 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/the-blockchain-distributed-ledger-technology/451/78">Post #77</a>
	                </div>
	            </div>
              <div id="likers-container-84976" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="84976"
                     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 #77"></div>
  </section>
</div>
    <div class="postbit" id="88302" data-post-id="88302">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Is there an ongoing  project that is related to this?</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="88302" 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/the-blockchain-distributed-ledger-technology/451/79">Post #78</a>
	                </div>
	            </div>
              <div id="likers-container-88302" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="88302"
                     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 #78"></div>
  </section>
</div>
    <div class="postbit" id="98437" data-post-id="98437">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p><a class="mention" href="/u/rickmutua" rel="nofollow">@rickmutua</a> Ethereum has dedicated project in Elixir</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="98437" 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/the-blockchain-distributed-ledger-technology/451/80">Post #79</a>
	                </div>
	            </div>
              <div id="likers-container-98437" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="98437"
                     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 #79"></div>
  </section>
</div>
    <div class="postbit" id="98459" data-post-id="98459">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>whats the name of the project?</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="98459" 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/the-blockchain-distributed-ledger-technology/451/81">Post #80</a>
	                </div>
	            </div>
              <div id="likers-container-98459" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="98459"
                     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 #80"></div>
  </section>
</div>
    <div class="postbit" id="98471" data-post-id="98471">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p><a href="https://github.com/exthereum/ethereumex" class="onebox" target="_blank" rel="noopener nofollow ugc">https://github.com/exthereum/ethereumex</a></p>
<p>This is the link to the project</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="98471" 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/the-blockchain-distributed-ledger-technology/451/82">Post #81</a>
	                </div>
	            </div>
              <div id="likers-container-98471" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="98471"
                     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 #81"></div>
  </section>
</div>
    <div class="postbit" id="98521" data-post-id="98521">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="Qqwy" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/Qqwy/120/1349_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  Qqwy
                  </h3>
		          </div>
						
			          <div class="user-title">
									<span>TypeCheck Core Team</span>
			          </div>
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Be aware that that project (while probably great!), is not maintained by the Ethereum Foundation: It’s not hosted under the ‘Ethereum’ organization on GitHub, but under the ‘Exthereum’ organization.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="98521" 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/the-blockchain-distributed-ledger-technology/451/83">Post #82</a>
	                </div>
	            </div>
              <div id="likers-container-98521" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="98521"
                     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 #82"></div>
  </section>
</div>
    <div class="postbit" id="98567" data-post-id="98567">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Thanks for the heads up <a class="mention" href="/u/qqwy" rel="nofollow">@Qqwy</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="98567" 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/the-blockchain-distributed-ledger-technology/451/84">Post #83</a>
	                </div>
	            </div>
              <div id="likers-container-98567" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="98567"
                     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 #83"></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/451/load_more?page=9">Load more posts (7 remaining)</a>
</div></template></turbo-stream>