Time for a quick civics lesson!
Cloture is a a motion to limit debate on a bill or other matter (i.e. nomination) pending before the Senate. So what do news agencies mean when they say that yesterday’s Senate vote on the health care bill is a vote to begin debating the bill?
From the Washington Post:
After days of indecision, the last two Democratic holdouts — Sens. Blanche Lincoln (Ark.) and Mary Landrieu (La.) — joined their caucus in supporting a motion to begin debate.
From the New York Times:
The Senate voted on Saturday to begin full debate on major health care legislation
From CNN:
the Senate voted to move ahead with a floor debate
These are just a few examples, but you can find countless others on Google News.
In olden days, you couldn’t actually ever stop debate on a bill if any Senator wanted to keep talking about it. As you can imagine, this meant that if a couple of Senators were really opposed to something, they could just take turns talking about it until the rest of the Senators caved and moved on to the other things they needed to vote on. In an effort to help move things along, the Senate changed its rules so that if two-thirds of the Senators wanted to end debate, they could do so by invoking cloture. Yes, it sounds a lot like closure, and the two words have very similar meanings. They’re about bringing something to an end.
The bar for invoking cloture was still so high that it was nearly impossible to do. Getting two-thirds of the Senate to agree on everything is like getting two three-year-olds to eat all of their vegetables. In fact, cloture was only invoked five times during the next 46 years. Consequently, the Senate changed its rules to require only three-fifths of the Senators to vote for a cloture motion in order for it to pass.
The motion that the Senate voted to invoke cloture on last night was the motion to begin debate. In other words, the Republicans were stopping the official debate from even beginning, so the Democrats had to muster 60 votes just to start the debate.
I hope this little history and civics lesson has helped you understand what the Senate voted on last night. Here are a couple of resources on the Senate website that deal with the history of cloture:
http://www.senate.gov/artandhistory/history/minute/Cloture_Rule.htm
http://www.senate.gov/reference/resources/pdf/RL30360.pdf
I have a bad habit of starting too many projects. I started another one last night called Recessions Aren’t Funny. Of course, it’s tongue in cheek because the site is full of recession jokes. I’ve still got a lot of work to do on it, but for now you can go vote on your favorite recession jokes.
If you have feedback or ideas about the site, I’d love to hear about it in the comments below. Of course, as I said, this site is in it’s early stages. I built it in about 3 hours last night, so it’s pretty rough around the edges.
Originally Posted on PoliticLOLz
This post will probably only interest you if you use MailChimp to send enewsletters.
A few days ago I signed up for a MailChimp account so that I can publish enewsletters for my political humor website, PoliticLOLz. One of the features that they offer is an “evil popup mode.” Basically, the first time you visit a website, a box pops up that encourages you to sign up for the email newsletter. When you close the box, a cookie is set that tells the website that you’ve already visited and seen the box. This way, you won’t be bothered for a year or until you delete your cookies.
However, there is a slight problem with the code. If you’re having trouble with the box popping up more than once, you should change the following line in the code that MailChimp gives you.
Original:
document.cookie = 'MCEvilPopupClosed=yes;expires=' + expires_date.toGMTString();
Fixed:
document.cookie = 'MCEvilPopupClosed=yes;expires=' + expires_date.toGMTString() + ';path=/';
That should fix your problem. You don’t really need to know any more. However, if you’re curious as to how this works, read on.
Basically, when a cookie is set, it is given a particular path that defines the scope of the cookie, (i.e. which pages the cookie affects) and the path defaults to the path of the page being viewed. For example, if you visit http://yoursite.com/games/new, any cookies that are set will have a default path of /games/new, meaning that they will only be used on that page and its subpages (i.e. /games/new/top).
Of course, you can give a cookie a different path when you set it. Thus, by adding “ + ';path=/'” to the code, I am setting the cookie’s path to the site’s root, meaning that it will be used for all pages on the site, not just the page that was visited and any subpages it may have.
I hope this helps you out. Let me know if you run into any issues.