EFF to Copyright Office: Safe Harbors Work
-
The “notice-and-takedown” process for addressing online copyright infringement isn’t perfect: it’s often abused to remove lawful speech from the Internet. But it many cases this process, described in Section 512 of the Digital Millennium Copyright Act (DMCA), works pretty well—particularly because of the safe harbors that protect Internet services that comply with the law. That’s why it’s so frustrating that major media and entertainment companies are still pushing the Copyright Office to recommend throwing away the safe harbors and instead order Internet platforms to filter users’ communications.
The Copyright Office’s study started in early 2016. EFF first submitted comments in April of that year, explaining that any tweaks to Section 512 should focus on protecting Internet speech and creativity for all of us. The safe harbors help protect the Internet as a viable and accessible platform for free expression and innovation, ensuring that online platforms are encouraged to experiment with new forms of communication and connection without threat of costly legal action. That unfettered experimentation creates new ways for everyone to share and comment and create art without undue copyright claims resulting in the removal, blocking, or filtering of content from Internet services.
The study is ongoing, and EFF submitted reply comments Tuesday reinforcing these arguments. But of course, in the last year we’ve seen a lot of submissions featuring the hysteria of major entertainment companies and their grab for more control. These copyright holders claim that more onerous processes, like mandatory filtering, are needed to make sure that Internet platforms and their users stop acting out. In short, many copyright holders would prefer to sacrifice your voice or the next fun social media product you might like to use in exchange for even more dangerous private policing of the Internet.
So while 512 could be implemented more fairly to users and innovators, it’s hard to escape the thought that this study is only treading well-worn ground, allowing Big Content to continue pushing a filter-everything approach.
The Copyright Office is working on other reviews of the law that could be more meaningful in the long run. The office is looking into Section 1201 of the DMCA—a provision that is blatantly unconstitutional. The anti-circumvention provisions of Section 1201 block your ability to access, use, or even discuss copyrighted materials if they are protected by digital rights management software. We are working on a lawsuit challenging Section 1201 because of the damage that it does, and we wish the Copyright Office would focus its attention there.
Related Cases: Copyright Office Section 512 study
Share this:Join EFF
https://www.eff.org/deeplinks/2017/02/eff-copyright-office-safe-harbors-work

screen and tmux
A comparison of the features (or more-so just a table of notes for accessing some of those features) for GNU screen and BSD-licensed tmux.
The formatting here is simple enough to understand (I would hope). ^ means ctrl+, so ^x is ctrl+x. M- means meta (generally left-alt or escape)+, so M-x is left-alt+x It should be noted that this is no where near a full feature-set of either group. This - being a cheat-sheet - is just to point out the most very basic features to get you on the road. Trust the developers and manpage writers more than me. This document is originally from 2009 when tmux was still new - since then both of these programs have had many updates and features added (not all of which have been dutifully noted here). |
||
Action | tmux | screen |
start a new session | tmux OR tmux new OR tmux new-session |
screen |
re-attach a detached session | tmux attach OR tmux attach-session |
screen-r |
re-attach an attached session (detaching it from elsewhere) | tmux attach -d OR tmux attach-session -d |
screen -dr |
re-attach an attached session (keeping it attached elsewhere) | tmux attach OR tmux attach-session |
screen -x |
detach from currently attached session | ^b d OR ^b :detach |
^a ^d OR ^a :detach |
rename-window to newname | ^b , <newname> OR ^b :rename-window <newn> |
^a A <newname> |
list windows | ^b w | ^a w |
list windows in chooseable menu | ^a " | |
go to window # | ^b # | ^a # |
go to last-active window | ^b l | ^a ^a |
go to next window | ^b n | ^a n |
go to previous window | ^b p | ^a p |
see keybindings | ^b ? | ^a ? |
list sessions | ^b s OR tmux ls OR tmux list-sessions |
screen -ls |
toggle visual bell | ^a ^g | |
create another window | ^b c | ^a c |
exit current shell/window | ^d | ^d |
split window/pane horizontally | ^b " | ^a S |
split window/pane vertically | ^b % | ^a | |
switch to other pane | ^b o | ^a <tab> |
kill the current pane | ^b x OR (logout/^D) | |
collapse the current pane/split (but leave processes running) | ^a X | |
cycle location of panes | ^b ^o | |
swap current pane with previous | ^b { | |
swap current pane with next | ^b } | |
show time | ^b t | |
show numeric values of panes | ^b q | |
toggle zoom-state of current pane (maximize/return current pane) | ^b z | |
break the current pane out of its window (to form new window) | ^b ! | |
re-arrange current panels within same window (different layouts) | ^b [space] | |
Kill the current window (and all panes within) | ^b killw [target-window] |