On Friday, the system that prevents college athletes from being compensated for their labor (beyond the scholarships that some receive) cracked open, just a little bit.
A federal judge in California ruled that the NCAA’s rules on compensation violate antitrust laws and must be slightly expanded. Per the Alston v. NCAA ruling, the association can no longer cap the scholarships colleges offer student-athletes, paving the way for schools to begin offering larger education-related packages. That doesn’t mean colleges are allowed — let alone encouraged — to pay traditional salaries.
The status quo, as Vox’s Today, Explained has reported, is that players get nothing while schools make a killing off of them — even as some student-athletes, particularly those from low-income backgrounds, can struggle to make ends meet:
At present, many students are offered scholarships but not paid beyond that scholarship, nor do they have the time to hold on-campus employment. … Complicating the debate: Black students make up more than half of Division 1 basketball players, and the policy that they shouldn’t be paid is supported by mostly white people.
Furthermore, because many of these students come from precarious financial situations at home, they don’t have the luxury of boycotting or going on strike. They have to watch as the NCAA makes billions from their performance — in ticket sales, merchandise, and more — while they (if they’re following the NCAA-dictated rules) never see a cent.
Only about two dozen college athletics programs are actually profitable (but the ones that are bring in profit margins in the millions). Some people, like former basketball player Cody J. McDavis, worry that allowing colleges to pay would create an expensive arms race for the top recruits that would cut smaller programs — and less profitable sports — out of the competition.
The ruling in Alston v. NCAA is not the dramatic pay-for-play precedent the plaintiffs were hoping for, but it could have major effects on college sports. It says that the NCAA must allow colleges to offer students education-related items like “computers, science equipment, musical instruments and other tangible items not included in the cost of attendance calculation but nonetheless related to the pursuit of academic studies” on top of their scholarship packages — but they still can’t pay for things outside of the academic sphere.
The NCAA insists that its athletes are, fundamentally, amateurs, and should not be paid. In the organization’s statement on the case, its chief legal officer Donald Remy said “the decision acknowledges that the popularity of college sports stems in part from the fact that these athletes are indeed students, who must not be paid unlimited cash sums unrelated to education.”
US District Judge Claudia Wilken said that the NCAA can continue to regulate benefits that aren’t linked to attending school. But she wrote that its “amateurism” argument is fundamentally flawed, as Law360 reported, and that the NCAA has not successfully defined what an amateur is. She also dismissed their defense that not paying athletes helps them better integrate into campus, noting that wealth disparities are already found at colleges across the nation.
She found “that the defendants agreed to and did restrain trade in the relevant market” and that the NCAA’s caps on scholarships “produced significant anticompetitive effects.” In 2014, Wilken issued a similar ruling on O’Bannon v. NCAA, a class-action antitrust lawsuit arguing that the NCAA should pay to use former students’ images, though much of her remedy was overturned on appeal.
Whether the latest case will hold up on appeal remains to be seen. As does the extent to which it might change things: The ruling doesn’t force conferences and colleges to change their compensation or scholarship packages — it just says the NCAA can’t stop them from doing so.

L273 NCAA的更多相关文章

  1. AssetBundle loading failed because.....已解决

    http://blog.csdn.net/ldghd/article/details/9632455 *****************************      一      ******* ...

  2. Web信息架构——设计大型网站(第3版)(久负盛名经典再现,信息架构设计领域基石之作!)

    Web信息架构——设计大型网站(第3版)(久负盛名经典再现,信息架构设计领域基石之作!) [美]]Peter Morville(彼得·莫维尔)  Louis Rosenfeld(路易斯·罗森菲尔德) ...

  3. [No000050]练习一万小时便能成为天才

    练习一万小时便能成为天才 世界上顶尖的记忆高手都是训练出来的! 加拿大畅销书作家麦尔坎·葛拉威尔在<异数>一书中指出:"人们眼中的天才之所以卓越非凡,并非天资超人一等,而是付出了 ...

  4. Top 10 Universities for Artificial Intelligence

    1. Massachusetts Institute of Technology, Cambridge, MA Massachusetts Institute of Technology is a p ...

  5. 美国政府关于Google公司2013年度的财务报表红头文件

    请管理员移至新闻版块,谢谢! 来源:http://www.sec.gov/ 财务报表下载↓ 此文仅作参考分析. 10-K 1 goog2013123110-k.htm FORM 10-K   UNIT ...

  6. Structural Inference of Hierarchies in Networks(网络层次结构推断)

    Structural Inference of Hierarchies in Networks(网络层次结构推断) 1. 问题 层次结构是一种重要的复杂网络性质.这篇文章给出了层次结构的精确定义,给出 ...

  7. python词云的制作方法

    第一次接触到词云主要是觉得很好看,就研究了一下,官方给出了代码的,但是新手看的话还是有点不容易,我们来尝试下吧. 环境:python2.7 python库:PIL(pillow),numpy,matp ...

  8. 数据结构之二叉树(BinaryTree)

    导读 二叉树是一种很常见的数据结构,但要注意的是,二叉树并不是树的特殊情况,二叉树与树是两种不一样的数据结构. 目录 一. 二叉树的定义 二.二叉树为何不是特殊的树 三.二叉树的五种基本形态 四.二叉 ...

  9. pyecharts使用

    安装 pyecharts 兼容 Python2 和 Python3.目前版本为 0.1.2 pip install pyecharts 入门 首先开始来绘制你的第一个图表 from pyecharts ...

随机推荐

  1. Mysql中从一张表中的数据添加到另一张表

    A为原表 B为要加入的表$sql="insert into B select * from A where id=$id";

  2. redis 基本指令

    redis-cli开启redis客户端 1. set key value // 设置key-value 2. get key // 获取key 3. delete key [] // 删除key 4. ...

  3. 漏洞复现——ngnix文件解析漏洞

    漏洞描述: 上传文件时,在文件名后加%00php,就可以绕过检测成功上传而已文件 影响版本: nginx 0.8.41 – 1.5.6 漏洞分析: 该漏洞原理是非法字符空格和截止符(\0)会导致Ngi ...

  4. python模块安装报错大全

    报错 环境 解决 手动安装pip install mysqlclient 报错: _mysql.c(29) : fatal error C1083: Cannot open include file: ...

  5. 【Oracle】【3】字段自增长(+1)

    业务场景——解决方案 1,每插入一条数据,其排序字段要增长1 —— Service层查询出最大值,再+1(参考博客的方法是触发器) 2,子表插入一条数据,主表某字段+1 —— where A.ID = ...

  6. UI基础四:简单的assign block

    经常会有需求让在标准的order加个assign block,那就来简单说一下: 1.创建assign block组件ZXXXXXX 2.添加BTORDER节点和GUID属性 3.创建表视图(可配置, ...

  7. svn中的ignore

    首先,svn GUI菜单右键的ignore功能,写的模模糊糊,网上也没啥人给出清晰的解释,stackoverflow推荐用命令行控制 SVN有3中方法配置ignore 1.配置文件 C:\Users\ ...

  8. 连接zookeeper+solr的服务器超时

    在连接zookeeper+solr的服务器超时,如果检查各ip地址都没有变动,各部分工程也没有书写问题,那么连接超时,就可能是该服务器内存分配过少,性能不足的问题,扩大该服务器内存即可.

  9. iOS 面试总结

    APP崩溃 启动秒退 在新 iOS 上正常的应用,到了老版本 iOS 上秒退最常见原因是系统动态链接库或Framework无法找到.这种情况通常是由于 App 引用了一个新版操作系统里的动态库(或者某 ...

  10. APP安全防护基本方法(混淆/签名验证/反调试)

    本教程所用Android Studio测试项目已上传:https://github.com/PrettyUp/SecTest 一.混淆 对于很多人而言是因为java才接触到“混淆”这个词,由于在前移动 ...