California Broadband Privacy Bill Heads for Final Vote This Friday
-
Huge news for broadband privacy! A California bill that would restore many of the privacy protections that Congress stripped earlier this year is headed for a final vote this Friday,
The bill, A.B. 375, had languished in the Senate Rules Committee due to the efforts of AT&T, Comcast, and Verizon to deny a vote. But constituents called and emailed their representatives and reporters started asking questions. The overwhelming public support for privacy has so far counteracted the lobbying by telecommunications companies, which will spare no expense to keep the gift handed to them by Congress and the Trump administration.
The legislation is now one step away from landing on the governor’s desk, with final votes set for September 15, the last day of session. If you live in California, you have 72 hours remaining to call your state Assemblymember and state Senator and tell them to vote AYE for A.B. 375 this Friday.
The Battle Behind the Scenes
Despite widespread public support, A.B. 375 has faced significant procedural hurdles behind the scenes in Sacramento, in part because the bill was introduced late in the legislation cycle in response to the Congressional vote. The bill emerged victorious from two Senate committees with strong votes in July before getting stuck in the Senate Rules Committee in the weeks that followed. Recognizing that they will not beat this bill by the votes, the ISP industry players that opposed the bill (note, many ISPs in California support AB 375), opted to run out the clock.
On Tuesday, however, the Senate Rules Committee Chair and Senate Leader Kevin de Leon decided to move the bill for a vote, and his committee approved discharging the bill for the Senate floor. Following that step, the California Senate voted 25 to 13 to make it eligible for a final vote. These procedural steps are necessary under California law because bills must be in public display for 72 hours as required by Proposition 54 that was approved by voters in 2016.
The bill’s final version continues to mirror the now repealed FCC broadband privacy rule and the bill as it stands now would effectively return power to California consumers over their personal data that their ISP obtains from the broadband service. That means your browser history, the applications you use, your location when you use the Internet are firmly controlled by you. If A.B. 375 is enacted, ISPs must have your permission first before they can resell or use that data with third parties beyond providing broadband access services.
Furthermore, the bill expands consumer protection beyond the original FCC rule by banning pay for privacy practices such as AT&T’s effort to charge people $30 more for broadband if they did not surrender their private information. While AT&T dropped its plan once the FCC began updating the privacy rules in 2015, their successful lobbying campaign to repeal the rule had cleared the way for them to revisit plans to roll it back out. If A.B. 375 is law though residents in this state will never face what was essentially a privacy tax.
The stage is set for a final vote this Friday, the last day of session for the California legislature so that it can be sent to the Governor’s office this year. Speak up now to demand that the legislature puts people’s privacy over ISP profits.
Tell your representatives to support online privacy.
https://www.eff.org/deeplinks/2017/09/california-broadband-privacy-bill-heads-final-vote-friday

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] |