Could it be that capitalism works well until the population of available
workers is significantly greater than the number of workers required to
produce efficiently?
comment on the new york times by Vanessa Hall from Millersburg, Missouri
the single worst strategic mistake that any software company can make [is] to rewrite the code from scratch
<!-- This is invalid. | |
Do not nest a section tag | |
inside a paragraph tag. --> | |
<footer> | |
<div class="content-wrapper"> | |
<div class="float-left"> | |
<p>© @DateTime.Now.Year - new guy blogs | |
<section id="login"> | |
@Html.Partial("_LoginPartial") | |
</section> | |
</p> | |
</div> | |
</div> | |
</footer> | |
<!-- This is valid --> | |
<footer> | |
<div class="content-wrapper"> | |
<div class="float-left"> | |
<p>© @DateTime.Now.Year - new guy blogs | |
</p> | |
<section id="login"> | |
@Html.Partial("_LoginPartial") | |
</section> | |
</div> | |
</div> | |
</footer> |