<div dir="ltr">Meanwhile, back on the topic of the &quot;...&quot; placeholder.<div><br></div><div>For me, it boils down to:<div><ol><li>The addition of the &quot;memberwise&quot; keyword and associated behavior would stand on it&#39;s own, without the inclusion of the &quot;...&quot; placeholder syntax. (IMO)</li><li>Omitting the &quot;...&quot; placeholder syntax <i>now</i> wouldn&#39;t prevent it from being added <i>later</i>.</li></ol>If you agree with those statements, then the principle of &quot;<a href="https://swift.org/contributing/#incremental-development">smallest, incremental change</a>&quot; [<a href="http://swift.org">swift.org</a>] seems to imply that the placeholder should be removed from this proposal.</div><div><br></div><div>That&#39;s my opinion. Does the rest of the community feel that the &quot;...&quot; placeholder is a <i>necessary</i> part of this proposal?<br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jan 6, 2016 at 5:23 PM, Matthew Johnson <span dir="ltr">&lt;<a href="mailto:matthew@anandabits.com" target="_blank">matthew@anandabits.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><br><div><span class="">On Jan 6, 2016, at 7:21 PM, Matthew Johnson &lt;<a href="mailto:matthew@anandabits.com" target="_blank">matthew@anandabits.com</a>&gt; wrote:<br><blockquote type="cite"></blockquote><font color="#5856d6"><br><br></font></span><blockquote type="cite"><div style="word-wrap:break-word"><div><span class="">On Jan 6, 2016, at 6:39 PM, Alex Johnson &lt;<a href="mailto:ajohnson@quickleft.com" target="_blank">ajohnson@quickleft.com</a>&gt; wrote:<br><blockquote type="cite"></blockquote><font color="#00afcd"><br></font>Hi Matthew,<br><font color="#00afcd"><br></font>Thanks for the explanation.<br><font color="#00afcd"><br></font>Before getting into a deeper discussion, I&#39;d like to try to enumerate the reasons for adding the placeholder as I understand them:<br></span>Does that seem accurate?<span class=""><br><blockquote type="cite"><div><div dir="ltr"><div>Add clarity by visually distinguishing memberwise initializers from normal initializers.<br>Introduce a &quot;synthesized parameters placeholder&quot; syntax that might be useful in other places.<br>Allow some control over where the synthesized memberwise parameters end up in the initializer signature.<br></div></div></div></blockquote></span></div></div></blockquote><font color="#5856d6"><br></font><div><div class="h5">This is mostly correct (in terms of my motivation - Chris may have additional reasons).  <br><font color="#5856d6"><br></font>The point about clarity in regards to the `…` is about making it clear when looking at the signature that synthesized parameters are included in addition to those that are manually specified.  This the most important point.<br><font color="#5856d6"><br></font>The `memberwise` declaration modifier on the initializer itself is what distinguishes memberwise initializers from other initializers.<br><font color="#5856d6"><br></font>Matthew<br><font color="#5856d6"><br><br></font><blockquote type="cite"><div style="word-wrap:break-word"><div><font color="#00afcd"><br></font>~ Alex<br><font color="#00afcd"><br><br></font>On Wed, Jan 6, 2016 at 3:48 PM, Matthew Johnson <span dir="ltr">&lt;<a href="mailto:matthew@anandabits.com" target="_blank">matthew@anandabits.com</a>&gt;</span> wrote:<br><font color="#00afcd"><br></font><blockquote type="cite"><div><div dir="ltr"><div><div><div class="gmail_extra"><div class="gmail_quote"><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><span>On Jan 6, 2016, at 5:26 PM, Alex Johnson via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br><blockquote type="cite"></blockquote><font color="#12c00e"><br></font>(this is mostly a repost of a message I sent to the &quot;[draft]&quot; thread for this proposal, with some light editing to better match terminology in the proposal)<br><font color="#12c00e"><br></font><b>What is your evaluation of the proposal?</b><br><font color="#12c00e"><br></font>I like this proposal. I think it will bring some much-needed ease-of-use.<br><font color="#12c00e"><br></font>I have reservations about the &quot;<font face="monospace, monospace">...</font>&quot; placeholder for the memberwise initialization parameters, though. I know this was suggested by Chris Lattner, so I&#39;m inclined to defer to his judgement. But, here are my thoughts:<br><font color="#12c00e"><br></font><div><div dir="ltr"><div>First, it&#39;s very close to the varags syntax (e.g. &quot;<font face="monospace, monospace">Int...</font>&quot;) which can also appear in initializer parameter lists.</div></div></div><font color="#12c00e"><br></font>Second, and I think more important, I&#39;m not sure that it&#39;s all that <i>useful</i>. It&#39;s presence isn&#39;t necessary for triggering memberwise initialization synthesis; that is already done by the &quot;memberwise&quot; keyword.<br><font color="#12c00e"><br></font>The primary example given in the proposal is:<br><font color="#12c00e"><br></font><blockquote type="cite"><div><div dir="ltr"><div><font face="monospace, monospace">memberwise init(anInt: Int, anotherInt: Int, ...) {</font></div><div><font face="monospace, monospace">  /* code using anInt and anotherInt */</font></div><div><font face="monospace, monospace">}</font></div></div></div></blockquote><font color="#12c00e"><br></font>That is, it&#39;s used to indicate where the synthesized parameters appear in the parameter list if there are also custom (non-memberwise) parameters.<br><font color="#12c00e"><br></font>My question is, <b>could the memberwise initialization parameters always be last?</b> That would eliminate the need for the placeholder.<br><font color="#12c00e"><br></font>I don&#39;t think I&#39;ve seen a compelling case for embedding the &quot;<font face="monospace, monospace">...</font>&quot; <i>within</i> a list of custom arguments, like:<br><font color="#12c00e"><br></font><blockquote type="cite"><div><div dir="ltr"><span style="font-family:monospace,monospace">memberwise init(anInt: Int, ..., anotherInt: Int) {</span><br><span style="font-family:monospace,monospace">  /* code using anInt and anotherInt */</span><br><div><font face="monospace, monospace">}</font></div></div></div></blockquote><font color="#12c00e"><br></font><div><div dir="ltr"><div>It&#39;s been mentioned several times in the discussion of this proposal that this behavior is purely optional. If it turns out that there are rare cases where placing the memberwise params in the middle is useful, authors can use manual initialization.</div></div></div></span></div></div></blockquote><br>Hi Alex, thanks for your review.  <br><br>The initial draft of the proposal did exactly what you suggest - it did not include the placeholder and always placed the memberwise parameters last.  Personally, I believe the placeholder adds clarity and really liked the idea when Chris suggested it.  <br><br>Aside from personal preference, I like that this proposal introduces a “synthesized parameter placeholder” syntax.  Similar syntax will also be used in the parameter forwarding proposal mentioned in the future enhancements section of this proposal.<br><br>I think the `…` works really well.  That said, I don’t mind if people wish to bikeshed on it.  If that discussion starts it is worth noting that one thing I like about the `…` is that it combines with an identifier cleanly.  For example : `…memberwise`.  <br><br>Combining the placeholder with an identifier allows more than one placeholder to be used in the same parameter list.  For example, if you are forwarding memberwise parameters exposed by a super init you might also have `…super`.  <br><br>That said, I don’t want the review thread to get distracted with discussions around general parameter forwarding so please just consider this as a preview of how this syntax might scale to future applications.  For now, lets keep this thread focused on the review of the current proposal.  :)<br><br>Matthew<br><br><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><font color="#12c00e"><br><br></font>On Wed, Jan 6, 2016 at 2:47 PM, Chris Lattner via swift-evolution <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span> wrote:<br><font color="#12c00e"><br><br></font><blockquote type="cite"><div><div><div><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote>Hello Swift community,<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
</blockquote><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote>The review of &quot;Flexible Memberwise Initialization&quot; begins now and runs through January 10th. The proposal is available here:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
</blockquote><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote>        <a href="https://github.com/apple/swift-evolution/blob/master/proposals/0018-flexible-memberwise-initialization.md" rel="noreferrer" target="_blank">https://github.com/apple/swift-evolution/blob/master/proposals/0018-flexible-memberwise-initialization.md</a><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
</blockquote><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote>Reviews are an important part of the Swift evolution process. All reviews should be sent to the swift-evolution mailing list at<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
</blockquote><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote>        <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
</blockquote><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote>or, if you would like to keep your feedback private, directly to the review manager.<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
</blockquote><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote>What goes into a review?<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
</blockquote><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote>The goal of the review process is to improve the proposal under review through constructive criticism and, eventually, determine the direction of Swift. When writing your review, here are some questions you might want to answer in your review:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
</blockquote><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote>        * What is your evaluation of the proposal?<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote>        * Is the problem being addressed significant enough to warrant a change to Swift?<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote>        * Does this proposal fit well with the feel and direction of Swift?<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote>        * If you have you used other languages or libraries with a similar feature, how do you feel that this proposal compares to those?<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote>        * How much effort did you put into your review? A glance, a quick reading, or an in-depth study?<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
</blockquote><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote>More information about the Swift evolution process is available at<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
</blockquote><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote>        <a href="https://github.com/apple/swift-evolution/blob/master/process.md" rel="noreferrer" target="_blank">https://github.com/apple/swift-evolution/blob/master/process.md</a><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
</blockquote><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote>Thank you,<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
</blockquote><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote>-Chris<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote>Review Manager<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote>_______________________________________________<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote>swift-evolution mailing list<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
</blockquote><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
</div></div></div></div></div></blockquote><font color="#12c00e"><br></font>-- <br><font color="#12c00e"><br></font><b style="font-size:small"><span style="color:rgb(53,217,144)"><font face="arial, helvetica, sans-serif">Alex Johnson</font></span><font color="#666666"> | Engineering Lead</font></b><br><font color="#666666" size="2"><b><br></b></font><b style="color:rgb(34,34,34);font-family:Arial;font-size:small;line-height:14.9499998092651px;white-space:pre-wrap"><a href="https://quickleft.com/" style="color:rgb(0,51,204)" target="_blank"><font>Quick Left, Inc.</font></a></b><br><span style="color:rgb(34,34,34);font-family:Arial;white-space:pre-wrap;line-height:1.15;font-size:small"><b>Boulder </b></span><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8000001907349px"><font color="#999999"><b>|</b></font></span><b style="color:rgb(34,34,34);font-family:Arial;font-size:small;line-height:1.15;white-space:pre-wrap"> </b><b style="color:rgb(34,34,34);font-family:Arial;font-size:small;line-height:1.15;white-space:pre-wrap">Denver</b><font color="#999999" style="font-family:arial,sans-serif;font-size:12.8000001907349px"><b style="font-family:Arial;font-size:small;line-height:1.15;white-space:pre-wrap"> </b><span style="font-size:12.8000001907349px"><b>|</b></span></font><b style="color:rgb(34,34,34);font-family:Arial;font-size:small;line-height:1.15;white-space:pre-wrap"> </b><b style="color:rgb(34,34,34);font-family:Arial;font-size:small;line-height:1.15;white-space:pre-wrap">Portland</b><font color="#999999" style="font-family:arial,sans-serif;font-size:12.8000001907349px"><b><span style="font-family:Arial;font-size:small;line-height:1.15;white-space:pre-wrap"> </span><span style="font-size:12.8000001907349px">|</span></b></font><b style="color:rgb(34,34,34);font-family:Arial;font-size:small;line-height:1.15;white-space:pre-wrap"> San Francisco</b><br><span style="color:rgb(102,102,102);font-family:arial,sans-serif;font-size:12.8000001907349px">1 (844) QL-NERDS</span><br><span style="color:rgb(102,102,102);font-family:arial,sans-serif;font-size:12.8000001907349px">@nonsensery</span><br><font color="#222222" face="arial, sans-serif" size="2"><br></font><a href="https://github.com/quickleft" style="font-family:Arial;white-space:pre-wrap;font-size:12.8000001907349px;color:rgb(0,51,204)" target="_blank"><img src="http://i.imgbox.com/MNlkdRf3.png" style="border:0px;padding:0px;color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8000001907349px;line-height:normal;vertical-align:middle!important" alt=""></a><a href="https://www.facebook.com/quickleft" style="font-family:Arial;white-space:pre-wrap;font-size:12.8000001907349px;color:rgb(0,51,204)" target="_blank"><img src="http://i.imgbox.com/mZ3v7rXp.png" style="border:0px;padding:0px;color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8000001907349px;line-height:normal;vertical-align:middle!important" alt=""></a><a href="https://twitter.com/quickleft" style="font-family:Arial;white-space:pre-wrap;font-size:12.8000001907349px;color:rgb(0,51,204)" target="_blank"><img src="http://i.imgbox.com/C2qj69cx.png" style="border:0px;padding:0px;color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8000001907349px;line-height:normal;vertical-align:middle!important" alt=""></a><a href="https://instagram.com/quick_left/" style="font-family:Arial;white-space:pre-wrap;font-size:12.8000001907349px;color:rgb(0,51,204)" target="_blank"><img src="http://i.imgbox.com/3kcv532Y.png" style="border:0px;padding:0px;color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8000001907349px;line-height:normal;vertical-align:middle!important" alt=""></a><a href="https://www.flickr.com/photos/quickleft" style="font-family:Arial;white-space:pre-wrap;font-size:12.8000001907349px;color:rgb(0,51,204)" target="_blank"><img src="http://i.imgbox.com/qrtOZXDo.png" style="border:0px;padding:0px;color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8000001907349px;line-height:normal;vertical-align:middle!important" alt=""></a><a href="https://vimeo.com/quickleft" style="font-family:Arial;white-space:pre-wrap;font-size:12.8000001907349px;color:rgb(0,51,204)" target="_blank"><img src="http://i.imgbox.com/lv7fDapY.png" style="border:0px;padding:0px;color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8000001907349px;line-height:normal;vertical-align:middle!important" alt=""></a><br><font color="#444444" face="Arial, Verdana, sans-serif" size="2"><br></font><span style="white-space:pre-wrap;font-family:arial,sans-serif;font-size:12.8000001907349px;color:rgb(53,217,144)"><font face="arial, helvetica, sans-serif" size="2"><b>What&#39;s it like to work with us? </b></font></span><font style="white-space:pre-wrap;color:rgb(68,68,68);font-size:12.8000001907349px;font-family:Arial"><i style="font-family:arial,sans-serif">TrainingPeaks, iTriage, and Ping Identity share their stories in this short video</i><i style="font-family:arial,sans-serif"><font color="#500050"> </font><a href="https://vimeo.com/92286352" style="color:rgb(0,51,204)" target="_blank"><font color="#666666">A Client&#39;s View</font></a></i><span style="font-family:arial,sans-serif"><font color="#666666">.</font></span></font><br><img src="https://u2002410.ct.sendgrid.net/wf/open?upn=eLFMrKDT8iBxZ-2Fbnk-2BZqvSchNN-2FvYXdceA0T7VxwkAflhrD7tw43AEGnufwuVJZw8Do59-2F-2FMus3U1hozBsEznD0SIdxYuNyXu4pilODBtqc9r9pS88bGG8-2BFyuj9qUzvk-2B-2FnUkeCiwHtCs-2B-2FlvxcPyD-2Bl86UWfhXe7whnMzfLts1GFXozJHRBQMzSoI7TTnIE-2Fc8pfutJJrT4X2-2BFb-2FHazJJOd-2FPFwodPPyLZCt8Wec-3D" alt="" width="1" height="1" border="0" style="min-height:1px!important;width:1px!important;border-width:0px!important;margin:0px!important;padding:0px!important">
_______________________________________________<br>swift-evolution mailing list<br><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br><div><div><div><div class="gmail_extra"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr" style="color:rgb(68,68,68);font-family:Arial,Verdana,sans-serif;font-size:12.8000001907349px"><div><div style="line-height:1.15;font-size:12.8000001907349px;margin-top:0pt;margin-bottom:0pt"><span style="font-family:Arial;vertical-align:baseline;white-space:pre-wrap;background-color:transparent"><font size="2"><a value="+13032425536" style="color:rgb(17,85,204);text-decoration:underline"></a></font></span></div></div></div></div></div></div></div></div>
</div>
</div></div><span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br></span></div></div></div></blockquote></div>
</div></div></div></div>
</div></blockquote></div></div></blockquote></div></div></div><br></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><br></div><div><div dir="ltr" style="font-size:12.8000001907349px"><b style="font-size:small;background-color:transparent"><span style="color:rgb(53,217,144)"><font face="arial, helvetica, sans-serif">Alex Johnson</font></span><font color="#666666"> | Engineering Lead</font></b></div><div dir="ltr" style="font-size:12.8000001907349px"><b style="font-size:12.8000001907349px"><font color="#666666"><br></font></b></div><div dir="ltr" style="color:rgb(68,68,68);font-family:Arial,Verdana,sans-serif;font-size:12.8000001907349px"><div style="font-family:arial,sans-serif;color:rgb(34,34,34);font-size:12.8000001907349px"><b style="font-family:Arial;font-size:small;line-height:14.9499998092651px;white-space:pre-wrap"><a href="https://quickleft.com/" style="color:rgb(0,51,204)" target="_blank"><font color="#000000">Quick Left, Inc.</font></a></b></div><div style="font-family:arial,sans-serif;color:rgb(34,34,34);font-size:12.8000001907349px"><span style="color:rgb(0,0,0);font-family:Arial;white-space:pre-wrap;line-height:1.15;font-size:small;background-color:transparent"><b>Boulder </b></span><span style="font-size:12.8000001907349px"><font color="#999999"><b>|</b></font></span><b style="color:rgb(0,0,0);font-family:Arial;font-size:small;line-height:1.15;white-space:pre-wrap;background-color:transparent"> </b><b style="color:rgb(0,0,0);font-family:Arial;font-size:small;line-height:1.15;white-space:pre-wrap;background-color:transparent">Denver</b><font color="#999999" style="font-size:12.8000001907349px;background-color:transparent"><b style="font-family:Arial;font-size:small;line-height:1.15;white-space:pre-wrap;background-color:transparent"> </b><span style="font-size:12.8000001907349px"><b>|</b></span></font><b style="color:rgb(0,0,0);font-family:Arial;font-size:small;line-height:1.15;white-space:pre-wrap;background-color:transparent"> </b><b style="color:rgb(0,0,0);font-family:Arial;font-size:small;line-height:1.15;white-space:pre-wrap;background-color:transparent">Portland</b><font color="#999999" style="font-size:12.8000001907349px;background-color:transparent"><b><span style="font-family:Arial;font-size:small;line-height:1.15;white-space:pre-wrap;background-color:transparent"> </span><span style="font-size:12.8000001907349px">|</span></b></font><b style="color:rgb(0,0,0);font-family:Arial;font-size:small;line-height:1.15;white-space:pre-wrap;background-color:transparent"> San Francisco</b></div><div><font style="font-size:12.8000001907349px"><p style="line-height:1.15;font-size:12.8000001907349px;margin-top:0pt;margin-bottom:0pt"><span style="color:rgb(102,102,102);font-family:arial,sans-serif;font-size:12.8000001907349px;line-height:normal;background-color:transparent">1 (844) QL-NERDS</span></p><p style="font-size:12.8000001907349px;margin-top:0pt;margin-bottom:0pt"><font color="#666666" face="arial, sans-serif">@nonsensery</font></p><p style="font-family:arial,sans-serif;color:rgb(34,34,34);margin:0px"><br></p></font><p dir="ltr" style="line-height:1.15;font-size:12.8000001907349px;margin-top:0pt;margin-bottom:0pt"><span style="font-family:Arial;color:rgb(0,0,0);vertical-align:baseline;white-space:pre-wrap;background-color:transparent"><a href="https://github.com/quickleft" style="color:rgb(0,51,204)" target="_blank"><img src="http://i.imgbox.com/MNlkdRf3.png" style="border:0px;padding:0px;color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8000001907349px;line-height:normal;white-space:normal;vertical-align:middle!important" alt=""></a><a href="https://www.facebook.com/quickleft" style="color:rgb(0,51,204)" target="_blank"><img src="http://i.imgbox.com/mZ3v7rXp.png" style="border:0px;padding:0px;color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8000001907349px;line-height:normal;white-space:normal;vertical-align:middle!important" alt=""></a><a href="https://twitter.com/quickleft" style="color:rgb(0,51,204)" target="_blank"><img src="http://i.imgbox.com/C2qj69cx.png" style="border:0px;padding:0px;color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8000001907349px;line-height:normal;white-space:normal;vertical-align:middle!important" alt=""></a><a href="https://instagram.com/quick_left/" style="color:rgb(0,51,204)" target="_blank"><img src="http://i.imgbox.com/3kcv532Y.png" style="border:0px;padding:0px;color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8000001907349px;line-height:normal;white-space:normal;vertical-align:middle!important" alt=""></a><a href="https://www.flickr.com/photos/quickleft" style="color:rgb(0,51,204)" target="_blank"><img src="http://i.imgbox.com/qrtOZXDo.png" style="border:0px;padding:0px;color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8000001907349px;line-height:normal;white-space:normal;vertical-align:middle!important" alt=""></a><a href="https://vimeo.com/quickleft" style="color:rgb(0,51,204)" target="_blank"><img src="http://i.imgbox.com/lv7fDapY.png" style="border:0px;padding:0px;color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8000001907349px;line-height:normal;white-space:normal;vertical-align:middle!important" alt=""></a></span></p><p dir="ltr" style="line-height:1.15;font-size:12.8000001907349px;margin-top:0pt;margin-bottom:0pt"><br></p><p dir="ltr" style="line-height:1.15;font-size:12.8000001907349px;margin-top:0pt;margin-bottom:0pt"><span style="font-family:Arial;color:rgb(0,0,0);vertical-align:baseline;white-space:pre-wrap;background-color:transparent"><font size="2"><a value="+13032425536" style="color:rgb(17,85,204);text-decoration:underline"></a></font></span></p><div style="font-family:arial,sans-serif"><span style="vertical-align:baseline;white-space:pre-wrap"><span style="color:rgb(53,217,144)"><font face="arial, helvetica, sans-serif" size="2"><b>What&#39;s it like to work with us? </b></font></span><font style="font-size:12.8000001907349px;font-family:Arial"><i style="color:rgb(0,0,0);font-family:arial,sans-serif;white-space:normal">TrainingPeaks, iTriage, and Ping Identity share their stories in this short video</i><i style="font-family:arial,sans-serif;white-space:normal"><font color="#500050"> </font><a href="https://vimeo.com/92286352" style="color:rgb(0,51,204)" target="_blank"><font color="#666666">A Client&#39;s View</font></a></i><span style="font-family:arial,sans-serif;white-space:normal"><font color="#666666">.</font></span></font></span></div></div></div></div></div></div></div></div>
</div>