<div dir="ltr">The last 20 minutes of this PyCon 2016 talk are Van Lindberg of the PSF (who is also Associate General Counsel at Rackspace) talking about legal implications of the Oracle v. Google case.<div><br></div><div><a href="https://www.youtube.com/watch?v=Bo1UqxTnp1s&feature=youtu.be">https://www.youtube.com/watch?v=Bo1UqxTnp1s&feature=youtu.be</a><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jun 13, 2016 at 6:13 PM,  <span dir="ltr"><<a href="mailto:jep200404@columbus.rr.com" target="_blank">jep200404@columbus.rr.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Oracle v Google<br>
<br>
    Google beats Oracle—Android makes “fair use” of Java APIs<br>
    <a href="http://arstechnica.com/tech-policy/2016/05/google-wins-trial-against-oracle-as-jury-finds-android-is-fair-use/" rel="noreferrer" target="_blank">http://arstechnica.com/tech-policy/2016/05/google-wins-trial-against-oracle-as-jury-finds-android-is-fair-use/</a><br>
<br>
    $10bn Oracle v Google copyright jury verdict: Google wins, Java APIs in Android are Fair Use<br>
    <a href="http://www.theregister.co.uk/2016/05/26/google_wins_latest_round_in_oracle_copyright_battle/" rel="noreferrer" target="_blank">http://www.theregister.co.uk/2016/05/26/google_wins_latest_round_in_oracle_copyright_battle/</a><br>
<br>
    Op-ed: Oracle attorney says Google’s court victory might kill the GPL<br>
    <a href="http://arstechnica.com/tech-policy/2016/05/op-ed-oracle-attorney-says-googles-court-victory-might-kill-the-gpl/" rel="noreferrer" target="_blank">http://arstechnica.com/tech-policy/2016/05/op-ed-oracle-attorney-says-googles-court-victory-might-kill-the-gpl/</a><br>
<br>
    Google's Fair Use Victory Is Good for Open Source<br>
    <a href="https://www.linkedin.com/pulse/googles-fair-use-victory-good-open-source-pamela-samuelson" rel="noreferrer" target="_blank">https://www.linkedin.com/pulse/googles-fair-use-victory-good-open-source-pamela-samuelson</a><br>
<br>
Was this decimation[1] in the Roman sense?<br>
<br>
    After suffering a painful incident, did an organization fire<br>
    someone who did not cause the problem, so as to instill fear<br>
    amongst the survivors, and not fire the person who caused the<br>
    problem because the organization was too reliant on that person?<br>
<br>
How Newegg is Winning the Battle Against Patent Trolls<br>
<a href="https://www.linux.com/news/how-newegg-winning-battle-against-patent-trolls-video" rel="noreferrer" target="_blank">https://www.linux.com/news/how-newegg-winning-battle-against-patent-trolls-video</a><br>
<br>
wp: prefix means Wikipedia<br>
To get good answers, consider following the advice in the links below.<br>
<a href="http://catb.org/~esr/faqs/smart-questions.html" rel="noreferrer" target="_blank">http://catb.org/~esr/faqs/smart-questions.html</a><br>
<a href="http://web.archive.org/web/20090627155454/www.greenend.org.uk/rjk/2000/06/14/quoting.html" rel="noreferrer" target="_blank">http://web.archive.org/web/20090627155454/www.greenend.org.uk/rjk/2000/06/14/quoting.html</a><br>
<br>
Compare:<br>
<br>
    wp:Principle of least astonishment<br>
<br>
    Microsoft won't back down from Windows 10 nagware 'trick'<br>
    <a href="http://www.theregister.co.uk/2016/05/26/microsoft_clarifies_upgrade_trick/" rel="noreferrer" target="_blank">http://www.theregister.co.uk/2016/05/26/microsoft_clarifies_upgrade_trick/</a><br>
<br>
*args in tuple unpacking<br>
*expressions<br>
<br>
    dojo@4519n_high:~/i/dojo$ python3<br>
    Python 3.4.3 (default, Oct 14 2015, 20:33:09)<br>
    [GCC 4.8.4] on linux<br>
    Type "help", "copyright", "credits" or "license" for more information.<br>
    >>> a = list(range(5))<br>
    >>> a<br>
    [0, 1, 2, 3, 4]<br>
    >>> first, *middle, last = a<br>
    >>> first<br>
    0<br>
    >>> middle<br>
    [1, 2, 3]<br>
    >>> last<br>
    4<br>
    >>><br>
<br>
Cowtown was important for UNIX<br>
wp:CB UNIX<br>
wp:Bidet<br>
wp:Furo<br>
<br>
<a href="http://www.merriam-webster.com/dictionary/parlous" rel="noreferrer" target="_blank">http://www.merriam-webster.com/dictionary/parlous</a><br>
<br>
wp:PNC Bank<br>
wp:45 RPM Record<br>
<br>
hashing is magic<br>
<a href="http://nbviewer.jupyter.org/github/james-prior/cohpy/blob/master/20160523/cohpy-20160523-speed-of-searching-sets-and-lists.ipynb" rel="noreferrer" target="_blank">http://nbviewer.jupyter.org/github/james-prior/cohpy/blob/master/20160523/cohpy-20160523-speed-of-searching-sets-and-lists.ipynb</a><br>
<a href="http://pyvideo.org/video/2571/all-your-ducks-in-a-row-data-structures-in-the-s" rel="noreferrer" target="_blank">http://pyvideo.org/video/2571/all-your-ducks-in-a-row-data-structures-in-the-s</a><br>
<a href="http://pyvideo.org/video/276/the-mighty-dictionary-55" rel="noreferrer" target="_blank">http://pyvideo.org/video/276/the-mighty-dictionary-55</a><br>
<a href="https://en.wikipedia.org/wiki/Hash_table" rel="noreferrer" target="_blank">https://en.wikipedia.org/wiki/Hash_table</a><br>
<br>
    most happy with: generator expression for most common words<br>
        line 39 (and lines 39-49) of<br>
        <a href="https://github.com/cohpy/challenge-201604-words/blob/57706ccaf571491f701600bc93b8d9dd4ae760ac/CWAndrews-OH/text_counter/word_count.py" rel="noreferrer" target="_blank">https://github.com/cohpy/challenge-201604-words/blob/57706ccaf571491f701600bc93b8d9dd4ae760ac/CWAndrews-OH/text_counter/word_count.py</a><br>
<br>
    marshmallow challenge<br>
<br>
    wp:Iterative design<br>
    wp:Agile software development<br>
<br>
[1] <a href="https://en.wikipedia.org/wiki/Decimation_(Roman_army)" rel="noreferrer" target="_blank">https://en.wikipedia.org/wiki/Decimation_(Roman_army)</a><br>
_______________________________________________<br>
CentralOH mailing list<br>
<a href="mailto:CentralOH@python.org">CentralOH@python.org</a><br>
<a href="https://mail.python.org/mailman/listinfo/centraloh" rel="noreferrer" target="_blank">https://mail.python.org/mailman/listinfo/centraloh</a><br>
</blockquote></div><br></div>