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


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="OvermindDL1" data-post="30" data-topic="7028">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/overminddl1/48/2677_2.png" class="avatar"> OvermindDL1:</div>
<blockquote>
<p>I’d not doubt that there are .gitattribute plugins for things like atom or so that can auto-detect though, or at the very least it would be so easy to make one.  That is a useful idea, hmm…</p>
</blockquote>
</aside>
<p>The problem is that dropping a <code>* -text</code> into your gitattributes file doesn’t tell it to use Unix line endings. It tells it to not change them, whatever it may be. If I’m creating a <code>.reg</code> file for Windows, I want my text editor to use Windows line endings, and if I’m creating or editing an HL7 message, I want the lines to be terminated by a lone “\r”.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="42489" 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/windows-and-linux-co-development/7028/32">Post #31</a>
	                </div>
	            </div>
              <div id="likers-container-42489" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="42489"
                     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="42500" data-post-id="42500">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="notriddle" data-post="31" data-topic="7028">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/notriddle/48/6385_2.png" class="avatar"> notriddle:</div>
<blockquote>
<p>Cross-compilers work within WSL.</p>
</blockquote>
</aside>
<p>Does mix use cross-compilers?</p>
<aside class="quote no-group" data-username="notriddle" data-post="31" data-topic="7028">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/notriddle/48/6385_2.png" class="avatar"> notriddle:</div>
<blockquote>
<p>OTOH, overriding wget and curl was a horrible, and deliberate, choice of action.</p>
</blockquote>
</aside>
<p>These are the ones I am referencing, plus iex.  They are entirely not functionally equivalent in any form other than the absolute basics.  Even the command args are different.</p>
<aside class="quote no-group" data-username="notriddle" data-post="31" data-topic="7028">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/notriddle/48/6385_2.png" class="avatar"> notriddle:</div>
<blockquote>
<p>Bash overrides time without providing the whole scope of functionality, so it’s not like it’s unprecedented. I just would’ve hoped people would learn better by now.</p>
</blockquote>
</aside>
<p>That is for the purpose of getting more accurate timing data, which is what it’s purpose is.  If you really need the default then just do <code>env time &lt;blah&gt;</code> (Remember that <code>env &lt;cmd&gt;</code> always uses the systems command, not a shell built-in).</p>
<aside class="quote no-group" data-username="notriddle" data-post="32" data-topic="7028">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/notriddle/48/6385_2.png" class="avatar"> notriddle:</div>
<blockquote>
<p>The problem is that dropping a * -text into your gitattributes file doesn’t tell it to use Unix line endings. It tells it to not change them, whatever it may be. If I’m creating a .reg file for Windows, I want my text editor to use Windows line endings, and if I’m creating or editing an HL7 message, I want the lines to be terminated by a lone “\r”.</p>
</blockquote>
</aside>
<p>.gitattributes can specify those.  text=auto means use the system default (when pulling/pushing), which also works fine for an editor default as well.  <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"></p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="42500" 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/windows-and-linux-co-development/7028/33">Post #32</a>
	                </div>
	            </div>
              <div id="likers-container-42500" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="42500"
                     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="42503" data-post-id="42503">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="OvermindDL1" data-post="33" data-topic="7028">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/overminddl1/48/2677_2.png" class="avatar"> OvermindDL1:</div>
<blockquote>
<p>These are the ones I am referencing, plus iex.  They are entirely not functionally equivalent in any form other than the absolute basics.  Even the command args are different.</p>
</blockquote>
</aside>
<p>PowerShell iex, unlike PowerShell wget and curl, is not an attempted replacement for Elixir <code>iex</code>. PowerShell iex is short for <strong>I</strong>nvoke-<strong>Ex</strong>pression. The fact that they share a name is a coincidence.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="42503" 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/windows-and-linux-co-development/7028/34">Post #33</a>
	                </div>
	            </div>
              <div id="likers-container-42503" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="42503"
                     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="42504" data-post-id="42504">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="notriddle" data-post="34" data-topic="7028">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/notriddle/48/6385_2.png" class="avatar"> notriddle:</div>
<blockquote>
<p>PowerShell iex is short for Invoke-Expression. The fact that they share a name is a coincidence.</p>
</blockquote>
</aside>
<p>Then it should be <code>IEX</code>, not <code>iex</code>.  <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"></p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="42504" 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/windows-and-linux-co-development/7028/35">Post #34</a>
	                </div>
	            </div>
              <div id="likers-container-42504" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="42504"
                     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="42505" data-post-id="42505">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>PowerShell commands are case-insensitive. Also, that would be <code>IEx</code>, with mixed case.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="42505" 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/windows-and-linux-co-development/7028/36">Post #35</a>
	                </div>
	            </div>
              <div id="likers-container-42505" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="42505"
                     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>
    <div class="postbit" id="42506" data-post-id="42506">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="notriddle" data-post="36" data-topic="7028" data-full="true">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/notriddle/48/6385_2.png" class="avatar"> notriddle:</div>
<blockquote>
<p>PowerShell commands are case-insensitive. Also, that would be IEx, with mixed case.</p>
</blockquote>
</aside>
<p>Ah true, it should be IEx.</p>
<p>It’s not case sensitive?  Wtf?  That is a good reason not to use it right there…</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="42506" 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/windows-and-linux-co-development/7028/37">Post #36</a>
	                </div>
	            </div>
              <div id="likers-container-42506" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="42506"
                     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 #36"></div>
  </section>
</div>
    <div class="postbit" id="42508" data-post-id="42508">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="OvermindDL1" data-post="33" data-topic="7028">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/overminddl1/48/2677_2.png" class="avatar"> OvermindDL1:</div>
<blockquote>
<p>If you really need the default then just do env time &lt;blah&gt; (Remember that env &lt;cmd&gt; always uses the systems command, not a shell built-in).</p>
</blockquote>
</aside>
<p>And PowerShell has a built-in called start. I used the <code>.bat</code> suffix to distinguish Invoke-Expression from Interactive Elixir, but this works too:</p>
<pre data-code-wrap="powershell"><code class="lang-powershell">start iex --werl
</code></pre>
<aside class="quote no-group" data-username="OvermindDL1" data-post="37" data-topic="7028">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/overminddl1/48/2677_2.png" class="avatar"> OvermindDL1:</div>
<blockquote>
<p>It’s not case sensitive?  Wtf?  That is a good reason not to use it right there…</p>
</blockquote>
</aside>
<p>Executables are case-insensitive under Windows. Given a choice, I’d rather have the PowerShell builtins also be case insensitive than have exes and builtins disagree.</p>
<p>Also, having executables on your system with names that differ only in case is a <em>serious system configuration smell</em>.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="42508" 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/windows-and-linux-co-development/7028/38">Post #37</a>
	                </div>
	            </div>
              <div id="likers-container-42508" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="42508"
                     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 #37"></div>
  </section>
</div>
    <div class="postbit" id="42510" data-post-id="42510">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="notriddle" data-post="38" data-topic="7028">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/notriddle/48/6385_2.png" class="avatar"> notriddle:</div>
<blockquote>
<p>And PowerShell has a built-in called start. I used the .bat suffix to distinguish Invoke-Expression from Interactive Elixir, but this works too:</p>
</blockquote>
</aside>
<p>Oooo, useful, I’ll give that a try next time I need.  Thanks!  <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"></p>
<aside class="quote no-group" data-username="notriddle" data-post="38" data-topic="7028">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/notriddle/48/6385_2.png" class="avatar"> notriddle:</div>
<blockquote>
<p>Executables are case-insensitive under Windows. Given a choice, I’d rather have the PowerShell builtins also be case insensitive than have exes and builtins disagree.</p>
</blockquote>
</aside>
<p>Not under Windows, but rather under the filesystems it includes by default.  A custom filesystem does not need such a limitation as case-insensitivity.</p>
<aside class="quote no-group" data-username="notriddle" data-post="38" data-topic="7028">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/notriddle/48/6385_2.png" class="avatar"> notriddle:</div>
<blockquote>
<p>Also, having executables on your system with names that differ only in case is a serious system configuration smell.</p>
</blockquote>
</aside>
<p>Executables sure, but not commands.  I’ve made a <em>LOT</em> of functions and aliases and such in my shell that differ from an executable via just their case so that I can have special functionality without needing to replace the existing functionality.  <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"></p>
<p>This is also why it is a wtf that powershell has case-insensitive ‘commands’.  o.O?!</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="42510" 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/windows-and-linux-co-development/7028/39">Post #38</a>
	                </div>
	            </div>
              <div id="likers-container-42510" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="42510"
                     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 #38"></div>
  </section>
</div>
    <div class="postbit" id="42511" data-post-id="42511">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="OvermindDL1" data-post="39" data-topic="7028">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/overminddl1/48/2677_2.png" class="avatar"> OvermindDL1:</div>
<blockquote>
<p>Not under Windows, but rather under the filesystems it includes by default.  A custom filesystem does not need such a limitation as case-insensitivity.</p>
</blockquote>
</aside>
<p>False. Case-insensitive semantics are provided by the Win32 subsystem on top of whatever native filesystem you’re using. With the right API calls, I can do this:</p>
<p><a href="http://imgur.com/a/Iakx4" rel="noopener nofollow ugc"><img src="https://forum.elixirforum.com/uploads/default/original/2X/f/fedc1496a41cec870013bb1a16dd0e1a66fee599.png" alt="some file, SOME FILE, and Some File in the same folder" width="506" height="110"></a></p>
<p>NTFS is capable of a lot. It’s the Win32 subsystem that limits you.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="42511" 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/windows-and-linux-co-development/7028/40">Post #39</a>
	                </div>
	            </div>
              <div id="likers-container-42511" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="42511"
                     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 #39"></div>
  </section>
</div>
    <div class="postbit" id="42515" data-post-id="42515">
  <section>
    <div class="post-wrap">


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

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="notriddle" data-post="40" data-topic="7028">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/notriddle/48/6385_2.png" class="avatar"> notriddle:</div>
<blockquote>
<p>NTFS is capable of a lot. It’s the Win32 subsystem that limits you.</p>
</blockquote>
</aside>
<p>Hah, nice.  ^.^;</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="42515" 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/windows-and-linux-co-development/7028/41">Post #40</a>
	                </div>
	            </div>
              <div id="likers-container-42515" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="42515"
                     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 #40"></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/7028/load_more?page=5">Load more posts (7 remaining)</a>
</div></template></turbo-stream>