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


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Stefan,</p>
<p>The reality is that it always depends, everything is a matter of tradeoff, once you step over the fallacies.</p>
<p>So again, Isomorphic Javascript seemed to be a distant dream, SAM makes it absolutely trivial to move elements of the pattern (Actions, Model and State) between the client and the server, at any point of the implementation (that’s probably what you seem bitter about because you see how powerful an argument it makes). Please note that this is not a binary choice and as little as a single action can be moved to the server.</p>
<p>It’s easy to debunk the arguments behind this article:</p>
<ul>
<li>
<p>the Web server can only be written in Javascript: most organizations would see this as a big plus as developers can move (nearly) freely between Front-End, Back-End, not to mention Integration if you see something like Node as a terrific middleware.</p>
</li>
<li>
<p>“<em>Client-side javascript has access to an in-memory state machine that allows for a fine-grained level of interaction, with a very low latency (sub-milliseconds). The same in not true for the HTTP state machine, which is driven by link clicks and form submissions.</em>”: this is possibly the biggest fallacy in the argument against Isomorphic Javascript since for most (business) applications each user event will translate into some form of API call. Who could argue that the HTTP state machine is not prevalent in Front-End architecture. I would argue even further that trying to ignore that simple fact like most Web frameworks do, is a major faux-pas, and the source of major pain and aches when developers need to stitch together pristine Web frameworks with API calls.</p>
</li>
<li>
<p>“<em>Blocking vs non-blocking data flow</em>”: obviously this guy has not heard of Websocket</p>
</li>
<li>
<p>“The infrastructure then needs a way to make sure the smart leaf’s context doesn’t get lost”: obviously this guy has never heard of single state tree architecture, and the SAM pattern in particular.</p>
</li>
<li>
<p>“<em>Mobile devices freeze during parsing of javascript</em>” not much to add here</p>
</li>
<li>
<p>“<em>Isomorphic Web Apps is an approach that demands a high level of development skill.</em>”, with SAM the additional skillset is exactly zero.</p>
</li>
</ul> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="8594" 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-sam-state-action-model-pattern-general-discussion-blog-posts-wiki/703/24">Post #23</a>
	                </div>
	            </div>
              <div id="likers-container-8594" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="8594"
                     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 #23"></div>
  </section>
</div>
    <div class="postbit" id="8608" data-post-id="8608">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Only on your first point (the webserver can only be written in javascript etc), I have other things to do. I don’t see node.js as terrific middleware, on the contrary. For those that are new to the discussion:<br>
“Node.js’ heart of async I/O is built on a horrible concurrency model + you will experience why js is not a language to build business logic in that you can trust (error handling etc). See <a href="http://www.youtube.com/watch?v=q8wueg2hswA" rel="noopener nofollow ugc">www.youtube.com/watch?v=q8wueg2hswA</a><br>
Javascript for developing node was just a poor choice. Read here<br>
<a href="http://bostinno.streetwise.co/2011/01/31/node-js-interview-4-questions-with-creator-ryan-dahl/" rel="noopener nofollow ugc">http://bostinno.streetwise.co/2011/01/31/node-js-interview-4-questions-with-creator-ryan-dahl/</a>  why Ryan Dahl choose javascript. What you can trust (and it is proven to be very reliable) is the actor-based concurrency model. Here about the model diffs: <a href="https://joearms.github.io/2013/04/02/Red-and-Green-Callbacks.html" rel="noopener nofollow ugc">https://joearms.github.io/2013/04/02/Red-and-Green-Callbacks.html</a>”<br>
At least on the server we have some choices concerning the used languages, we are not obliged to use node.js. There is an erlang webserver: cowboy. There are haskell webservers like yesod, they make a difference with node.js to a selling point:</p>
<p>“Asynchronous made easy<br>
The Haskell runtime is asynchronous automatically. Instead of dealing with callbacks, you get to write normal code. By utilizing light-weight green threads and event-based system calls, your code automatically becomes non-blocking, without the pain.” (<a href="http://www.yesodweb.com/" rel="noopener nofollow ugc">http://www.yesodweb.com/</a>)</p>
<p>Ok. The last point that you make is that no additional skillset is needed. What exactly you are pointing at is not clear to me. In any case you were (in my opinion) not succesfull in react (see <a href="https://github.com/reactjs/redux/issues/1528" class="inline-onebox" rel="noopener nofollow ugc">Reducer Composition with Effects in JavaScript · Issue #1528 · reduxjs/redux · GitHub</a>) and elm (google yourself please) usergroups when you tried to convince people there of your ideas. They seem to be hindered and irritated by at least the jargon you use. See all the reactions you got there. Isn’t it time to scratch your head a bit? If it is all so simple why use all this jargon and in general unclear texts and answers? See for example that link copied in this message, written by Armstrong: this is clear language: aimed at readers like probably most of us.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="8608" 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-sam-state-action-model-pattern-general-discussion-blog-posts-wiki/703/28">Post #27</a>
	                </div>
	            </div>
              <div id="likers-container-8608" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="8608"
                     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 #27"></div>
  </section>
</div>
    <div class="postbit" id="8609" data-post-id="8609">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>I think it reasonable to accept that there is multitude of options and there is no “right way” and for any given project there might be different approaches (although sometimes there might not be much choice). There is no objective way to prove something in general terms just by referencing some authority figure, by same token one can point to Bryan Cantrill (creator of Dtrace, Solaris core developer, CTO of Joyent)  and his positive opinion of node as a definitive proof it’s the best thing since sliced bread :). In reality it’s all project specific.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="8609" 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-sam-state-action-model-pattern-general-discussion-blog-posts-wiki/703/29">Post #28</a>
	                </div>
	            </div>
              <div id="likers-container-8609" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="8609"
                     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 #28"></div>
  </section>
</div>
    <div class="postbit" id="8621" data-post-id="8621">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Partly agreed. I think the choice for a webserver / architecture is often taken not too well informed. And node is quite hyped, cowboy not. Who does not want to ride the waves of success? Netflix, airbnb, together with the big boys, all that applause, champagne, bubbles (!! <img src="https://forum.elixirforum.com/images/emoji/apple/wink.png?v=15" title=":wink:" class="emoji" alt=":wink:" loading="lazy" width="20" height="20"> etc! Benchmarks can help. I have not been seeking long, but here is an example (2011, quite old): <a href="http://www.ostinelli.net/a-comparison-between-misultin-mochiweb-cowboy-nodejs-and-tornadoweb/" rel="noopener nofollow ugc">http://www.ostinelli.net/a-comparison-between-misultin-mochiweb-cowboy-nodejs-and-tornadoweb/</a><br>
But there are more parameters that are hard to measure.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="8621" 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-sam-state-action-model-pattern-general-discussion-blog-posts-wiki/703/30">Post #29</a>
	                </div>
	            </div>
              <div id="likers-container-8621" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="8621"
                     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 #29"></div>
  </section>
</div>
    <div class="postbit" id="8686" data-post-id="8686">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>The core value proposition of JavaScript on the server is JSON because pretty much all you do is “mediate” requests and response with vanilla business logic (which is about 99% of use cases in IT). You can use libraries such as Strummer for validation (which is far superior to any class structure). Combine that with a convergence of skills between front-end, back-end and integration, I don’t see why any IT organization would choose anything else. One of my clients tried WSO2, then SpringBoot, then Node. Pretty much every developer when crazy about Node. Projects were delivered in the time it would take to do a PoC with WSO2 or SpringBoot.</p>
<p>Add AWS Lambda on top of that, and the value is even more compelling. I just finished a project for a key customer facing API. Not a glitch. The Lambda makes 6 queries to DynamoDB (including fetching 100+ records), with quite a bit of business logic to prepare the response, and the median response time is 161 ms (including network round trip). The DynamoDB data set is over 20M records.</p>
<p>Please bear in mind that most IT organizations (~90%) operate under the 10 TPS threshold, even in the top F50.</p>
<p>When you combine all these advantages, I don’t see why most IT organization would adopt anything else. I am happy to evaluate something better but it would be hard to match this kind of value.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="8686" 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-sam-state-action-model-pattern-general-discussion-blog-posts-wiki/703/31">Post #30</a>
	                </div>
	            </div>
              <div id="likers-container-8686" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="8686"
                     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 #30"></div>
  </section>
</div>
    <div class="postbit" id="8699" data-post-id="8699">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="jdubray" data-post="31" data-topic="703">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/letter_avatar_proxy/v4/letter/j/94ad74/48.png" class="avatar"> jdubray:</div>
<blockquote>
<p>Please bear in mind that most IT organizations (~90%) operate under the 10 TPS threshold, even in the top F50.</p>
</blockquote>
</aside>
<p>Could you provide a source for this amazing statistic <img src="https://forum.elixirforum.com/images/emoji/apple/slight_smile.png?v=15" title=":slight_smile:" class="emoji" alt=":slight_smile:" loading="lazy" width="20" height="20">  especially for F50 :)?</p>
<aside class="quote no-group" data-username="jdubray" data-post="31" data-topic="703">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/letter_avatar_proxy/v4/letter/j/94ad74/48.png" class="avatar"> jdubray:</div>
<blockquote>
<p>When you combine all these advantages, I don’t see why most IT organization would adopt anything else. I am happy to evaluate something better but it would be hard to match this kind of value.</p>
</blockquote>
</aside>
<ul>
<li>Because people have needs beyond what node.js can offer from soft real time to concurrency to HA and distribution</li>
<li>Because running anything critical on AWS is very questionable idea in the first place <img src="https://forum.elixirforum.com/images/emoji/apple/slight_smile.png?v=15" title=":slight_smile:" class="emoji" alt=":slight_smile:" loading="lazy" width="20" height="20"></li>
<li>Because setting up Amazon API gateway for anything beyond very trivial is time consuming nightmare</li>
<li>Because pricing of lambda is n times higher then for normal instances which are already overpriced</li>
</ul> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="8699" 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-sam-state-action-model-pattern-general-discussion-blog-posts-wiki/703/32">Post #31</a>
	                </div>
	            </div>
              <div id="likers-container-8699" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="8699"
                     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 #31"></div>
  </section>
</div>
    <div class="postbit" id="8702" data-post-id="8702">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Those are personal stats … :-), but they are real. We might push to 20TPS by the end of the decade, but you’d be surprised once you step out the unicorn paths. Traffic does not always equate revenue, and vice versa.</p>
<p>You’d also be surprised at what’s going on with AWS and IT right now, worldwide. I am assuming the same is true of Azure.</p>
<p>Setting up API Gateway + Lambda is trivial when you use <a href="https://www.npmjs.com/package/claudia" rel="noopener nofollow ugc">claudia.js,</a> <strong>literally trivial</strong>.</p>
<p>Citing Adrian Cockcroft, <a href="https://www.infoq.com/presentations/microservices-review" rel="noopener nofollow ugc">Lambda is 99% cheaper</a> than EC2 (and I’ll second that) - for the record $0.20 per million request (100ms requests).</p>
<p>I am not here to sell node, I just provide feedback based on where I see my clients heading. I work mostly with G200 companies.  Node.js/Angular2/AWS  is a true game changer for them in terms of LoE, this is the first time I see a stack having such a dramatic impact on cost, from JEE/JBoss, to Spring(Boot). At the same time, this is the first time, I see such broad excitement in the IT dev community.</p>
<p>That being said, I am not disputing that some companies such as eBay, Netflix, have widely different problems and they need different solutions.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="8702" 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-sam-state-action-model-pattern-general-discussion-blog-posts-wiki/703/33">Post #32</a>
	                </div>
	            </div>
              <div id="likers-container-8702" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="8702"
                     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 #32"></div>
  </section>
</div>
    <div class="postbit" id="8703" data-post-id="8703">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Of the G200 we only worked with Ford and  JPM all our other clients are way smaller and we never had a project with less then few hundred tps and more commonly it’s into 1000s and thats very far from their core apps that they run.  As far as black boxes are fun Lambda 128 is priced at about 30% premium to equivalent EC2 load with about 1/3 RAM. So if you sustained load is smaller than a few small instances then Lambda is an OK value otherwise it’s horrible value. On AWS as a whole a lot of people doing something very risky does not make it a smart move. For decision algorithm on if you should run critical apps on AWS it’s fairly simple you should ask yourself is my company called Netflix? If the answer is NO then you should not run anything critical on AWS :).</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="8703" 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-sam-state-action-model-pattern-general-discussion-blog-posts-wiki/703/34">Post #33</a>
	                </div>
	            </div>
              <div id="likers-container-8703" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="8703"
                     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 #33"></div>
  </section>
</div>
    <div class="postbit" id="8707" data-post-id="8707">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>It looks like our domains do not intersect, that’s fine. It is clear that if you have high constant volumes, Lambda would not be a good fit, but again, who has constant high volumes of requests? You really think the largest insurance or (health care) payer in the country have to deal with more than 10 TPS?</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="8707" 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-sam-state-action-model-pattern-general-discussion-blog-posts-wiki/703/35">Post #34</a>
	                </div>
	            </div>
              <div id="likers-container-8707" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="8707"
                     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 #34"></div>
  </section>
</div>
    <div class="postbit" id="8708" data-post-id="8708">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Are you kidding? A much smaller insurance company like Auto Owners is running multiple high end mainframes at very decent utilization rate. The workloads for something like AIG is a few datacenters.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="8708" 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-sam-state-action-model-pattern-general-discussion-blog-posts-wiki/703/36">Post #35</a>
	                </div>
	            </div>
              <div id="likers-container-8708" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="8708"
                     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 #35"></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/703/load_more?page=4">Load more posts (17 remaining)</a>
</div></template></turbo-stream>