Sign InRegisterForgotten password?

RebelmouseTwitterFacebook

Drudge Report Falsely Attributes Quote to President Obama: “I’m a Black Man”

These people are sick in the head
• Views: 4,318

And now, Drudge Report is getting into the false quotation game.

This morning, President Obama gave the commencement speech at Morehouse College, a historically African-American university; it was an inspiring speech calling on members of the African-American community to be good role models and strive to do what’s right.

So naturally, the right wing media are completely losing their shit again. This is Drudge’s take on it, and notice that he went frame by frame through the video until he found what he obviously thought was the most unflattering image possible:

Here’s a transcript of the prepared speech — the words “I’m a black man,” which Drudge put in quotation marks, do NOT APPEAR in the speech. The link for Drudge’s headline goes to a Washington Post article, and the words “I’m a black man” do not appear in that article either. Drudge simply made it up.

Pure-D race-baiting dishonesty from the right wing. In other words, business as usual.

Advertisement

ABC’s Jon Karl Posts to Twitter, Still Refuses to Retract False Story

The hole’s getting deeper
Media • Views: 2,509

Posted a little while ago on Twitter by ABC News’s Jonathan Karl:

The facts are:

  • Karl stated in no uncertain terms that he had “obtained” the emails. This was FALSE.
  • Karl’s story also claimed that ABC News had “reviewed” the emails. This was FALSE.
  • Karl’s story put the made-up email in quotation marks, when it was NOT A QUOTE.

Jonathan Karl clearly does not intend to retract his story, even though he lied outright about the circumstances and passed on false information from a Republican source. And just as clearly, he does not intend to reveal who gave him this false information.

It’s impossible to see this as anything other than a complete lack of journalistic ethics. Not to mention simple decency. What a disgrace.

ABC’s Jonathan Karl: Yes, the Story Was False but It “Entirely Stands”

WTF?
Media • Views: 4,007

If you’ve been following the story of the Benghazi “talking points” emails, you know that it’s now been confirmed beyond any doubt that Republican sources fed false information to the media, especially to ABC News’s Jonathan Karl. Karl claimed that he had “obtained” these emails, and we now know that this was completely untrue — he was quoting the words of his anonymous source, who lied to him. He did not “obtain” or even see the actual email in question.

The ethical thing to do at this point would be to correct and retract the story, and reveal the name of his dishonest source. But that’s not the path Karl is choosing:

On the Sunday, May 19 edition of CNN’s Reliable Sources, host Howard Kurtz read a statement from Jonathan Karl, chief White House Correspondent for ABC News in response to his reporting on altered emails related to the Sunday talk show talking points following the attacks on the U.S. diplomatic mission in Benghazi, Libya in September 2012. Karl now expresses regret about his original reporting on May 10th on the Benghazi emails. The statement reads:

“Clearly, I regret the email was quoted incorrectly and I regret that it’s become a distraction from the story, which still entirely stands. I should have been clearer about the attribution. We updated our story immediately.”

-Jonathan Karl, ABC News Chief White House Correspondent

Amazing. ABC News should be ashamed of this kind of egotistical ass-covering. Their credibility is at stake, and they’re letting their anonymous right wing sources get away with lying to them.

Via: ABC News’ Jonathan Karl Addresses Criticism on Reporting of the Benghazi Talking Points Controversy - CNN Press Room Blogs

Also see:
Jon Karl got played by a confidential source and now ABC News has a big Benghazi problem » Pressthink
What do Jonathan Karl and James O’Keefe have in common?

Watch the Biggest Explosion Ever Seen on the Moon

Visible to the naked eye
Science • Views: 3,969

NASA scientists recorded the biggest explosion from a meteorite impact seen on the moon in eight years of monitoring.

The lunar burst was caused by a 40-kilogram boulder-sized rock slamming into the surface at about 90,000 kph. It generated a flash 10 times brighter than anything seen before, which came from the thermal glow of molten rock at the point of impact.

More: Watch the Biggest Explosion Ever Seen on the Moon

The Best Short Animated Film You’ll See Today: “Fred”

Show time!
Arts • Views: 8,453

Fred is a personal stop motion short. It got finished thanks to many friends, bank loans, and credit cards. I devoted spare time between jobs, moving the sets and puppets from one city to the next zig-zagging the west coast from LA to Seattle.

Tech Note: Yet Another LGF Pages Bookmarklet Update

But this version will make updating much easier
LGF • Views: 8,955

I know, right? Another one, just a day later? But this one actually will make it possible for me to update the types of auto-embed content the LGF Pages bookmarklet can identify — without making you re-install the bookmarklet to take advantage of the new features.

When you open this new version of the bookmarklet, it “phones home” to littlegreenfootballs.com no matter which site you’re on, and gets a file with the information it needs to find embedded video and audio in the current page. The cool thing about doing it this way is that it lets me add new embed types to the file on our server, and the bookmarklet automatically starts using them the next time you open it — no reinstallation necessary any more!

To get the new extensible version of the bookmarklet, reinstall it one more time by first deleting the old one (either by dragging it off the bookmark bar or by right-clicking and choosing “Delete”), then dragging the button labeled “Create a Page” (at the top of the right sidebar) to your bookmark bar in its place.

A trouble-shooting tip: if you click the bookmarklet and no window (or tab) opens, it’s probably because popups have been blocked by the browser. Most browsers have popup blocking on by default. The easiest way to handle this is to turn popup blocking off entirely; you can also allow popups on specific sites in the browser’s Preferences, but for posting purposes it’s a nuisance to do this for every site you might want to post something about.

The technical details

This new bookmarklet is actually calling our brand spanking new API (version 0.1, a one-day old baby), using the JSONP technique to get around the Javascript same-origin policy that would normally prevent this kind of cross-site access.

This happens in the jQuery.ajax() method beginning at line 27. It makes a call to the API at:

http://littlegreenfootballs.com/api/0.1/postRegex

jQuery handles all the details of the JSONP call (with its necessary callback function), parses the JSON response, and returns the data in the object lgf — in this case it consists of two regular expression definitions that are used on lines 34 and 36.

UPDATE at 5/18/13 5:08:19 pm

Stop the presses! Wouldn’t you know that as soon as I post this new version, I discover an even better way to get this done? Instead of JSONP, the bookmarklet now uses the new hotness, CORS, to do away with the callback function and the other JSONP kludges, and use pure unsullied JSON as Crockford intended.

I’ve updated the code below; the API now goes to version 0.2, so I can still support the JSONP method as well.

(function() {
	var j = '1.9.1', d = document;
	if (window.jQuery === undefined || window.jQuery.fn.jquery < j) {
		var done = false, s = d.createElement('script');
		s.src = '//ajax.googleapis.com/ajax/libs/jquery/' + j + '/jquery.min.js';
		s.onload = s.onreadystatechange = function(){
			if (!done && (!this.readyState || this.readyState == 'loaded' || this.readyState == 'complete')) {
				done = true;
				jQuery.noConflict();
				lgfPost();
			}
		};
		d.getElementsByTagName('head')[0].appendChild(s);
	} else {
		lgfPost();
	}
	function esc(s) {
		return escape(s).replace(/\+/ig, '%252B');
	}
	function lgfPost() {
		(window.postPage = function() {
			jQuery.ajax('http://littlegreenfootballs.com/api/0.2/postRegex').done(function(lgf) {
				var f = q = w = '',
					u = esc(location.href),
					d = document,
					t = esc(d.title),
					s = esc((d.selection) ? d.selection.createRange().text : d.getSelection()),
					ob = jQuery('iframe').filter(function() {
						return this.src.match(RegExp(lgf.regex.embed, 'i'));
					});
				if (ob.length && !u.match(RegExp(lgf.regex.sites, 'i'))) {
					f = esc(ob.eq(0).attr('src'));
				}
				q = (
					'u=' + u +
					'&t=' + t +
					'&f=' + f +
					'&s=' + s
				);
				w = (
					'width=670,' +
					'height=820,' +
					'scrollbars=1,' +
					'status=1,' +
					'menubar=1,' +
					'location=1,' +
					'resizable=1'
				);
				window.open('http://littlegreenfootballs.com/weblog/lgf-postpage.php?' + q, '_blank', w);
			});
		})();
	}
})();

Glenn Beck: AP and IRS Scandals Are Just Cover-Ups for the Benghazi Cover-Up

Paranoia that eats its own tail
Wingnuts • Views: 10,322

An alternate title for this post might be, “The Recursive Conspiracy Theories of a Raving Freakazoid,” as our favorite right wing nut sandwich just continues to chase his own paranoid tail. Here he is opining that the AP and IRS “scandals” are really just attempts to cover up the Benghazi cover-up, because “that is literally where the bodies are buried.”

Via: Right Wing Watch.

Tech Note: LGF Pages Bookmarklet Supports Scribd and SoundCloud

Making blogging easier
LGF • Views: 14,449

I’m about to sling some code at you here, so watch out. There’s a new improved version of the LGF Pages bookmarklet, and if you have an LGF account you can install it by deleting the old one (if you already installed it) from your browser’s bookmarks bar, then dragging the “Create a Page” button to the bookmarks bar in its place.

The new version extends our exclusive auto-embed feature to add Scribd.com and SoundCloud to the auto-detected embed types. If you open the bookmarklet on any page containing an embedded Scribd document or SoundCloud audio file, it will be automatically added to your Page. If you want to test it out, here’s a page at Right Wing Watch with an embedded SoundCloud file: Radio Host Frequented by Gun Activists Calls for Shooting of Bush Family & Obama, Sexual Violence Against Hillary Clinton | Right Wing Watch.

Here’s the source code for the bookmarklet, in the interest of full disclosure. (Also because I want to test the latest version of our source code formatter.)

There are a couple of interesting tricks in this one; notice the method of loading jQuery by injecting a script tag into the page. I’ll leave the rest as an exercise for the nerds amongst us.

The bookmarklet source code:

(function() {
	var j = '1.9.1', d = document;
	if (window.jQuery === undefined || window.jQuery.fn.jquery < j) {
		var done = false, s = d.createElement('script');
		s.src = '//ajax.googleapis.com/ajax/libs/jquery/' + j + '/jquery.min.js';
		s.onload = s.onreadystatechange = function(){
			if (!done && (!this.readyState || this.readyState == 'loaded' || this.readyState == 'complete')) {
				done = true;
				jQuery.noConflict();
				init();
			}
		};
		d.getElementsByTagName('head')[0].appendChild(s);
	} else {
		init();
	}
	function esc(s) {
		return escape(s).replace(/\+/ig, '%252B');
	}
	function init() {
		(window.LGF_post = function() {
			var f = q = w = '',
				u = esc(location.href),
				d = document,
				t = esc(d.title),
				s = esc((d.selection) ? d.selection.createRange().text : d.getSelection()),
				ob = jQuery('iframe').filter(function() {
					return this.src.match(/https?:\/\/(www\.youtube|player\.vimeo\.|w\.soundcloud\.com\/player|www\.scribd\.com\/embeds\/)/i);
				});
			if (ob.length && !u.match(/www\.youtube\.com\/|vimeo\.com\/|soundcloud\.com|www\.scribd\.com/i)) {
				f = esc(ob.eq(0).attr('src'));
			}
			q = (
				'u=' + u +
				'&t=' + t +
				'&f=' + f +
				'&s=' + s
			);
			w = (
				'width=670,' +
				'height=820,' +
				'scrollbars=1,' +
				'status=1,' +
				'menubar=1,' +
				'location=1,' +
				'resizable=1'
			);
			window.open('http://littlegreenfootballs.com/weblog/lgf-postpage.php?' + q, '_blank', w);
		})();
	}
})();

And here’s the minified version created with Google Closure Compiler:

(function(){function b(b){return escape(b).replace(/\+/ig,"%252B")}function d(){(window.LGF_post=function(){var a=q=w="",d=b(location.href),c=document,f=b(c.title),c=b(c.selection?c.selection.createRange().text:c.getSelection()),e=jQuery("iframe").filter(function(){return this.src.match(/https?:\/\/(www\.youtube|player\.vimeo\.|w\.soundcloud\.com\/player|www\.scribd\.com\/embeds\/)/i)});e.length&&!d.match(/www\.youtube\.com\/|vimeo\.com\/|soundcloud\.com|www\.scribd\.com/i)&&(a=b(e.eq(0).attr("src"))); q="u="+d+"&t="+f+"&f="+a+"&s="+c;w="width=670,height=820,scrollbars=1,status=1,menubar=1,location=1,resizable=1";window.open("http://littlegreenfootballs.com/weblog/lgf-postpage.php?"+q,"_blank",w)})()}var f=document;if(void 0===window.jQuery||"1.9.1">window.jQuery.fn.jquery){var e=!1,a=f.createElement("script");a.src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js";a.onload=a.onreadystatechange=function(){if(!e&&(!this.readyState||"loaded"==this.readyState||"complete"==this.readyState))e= !0,jQuery.noConflict(),d()};f.getElementsByTagName("head")[0].appendChild(a)}else d()})();

Daily Caller Cooks Up Another Stupid Scandal, Commenters Spew Vile Racism

“Umbrellagate?” Are they serious?
Wingnuts • Views: 19,230

The mind-numbingly stupid right wing fake outrage of the day: yes, now they’re even going after the President for asking Marines to hold umbrellas for himself and the Turkish Prime Minister. I just can’t even.

The hacks at wingnut propaganda site The Daily Caller lead the charge, but it’s on every single right wing blog and media website, of course, because they do this stuff in lockstep unison like good little authoritarians: Obama Breaches Marine Umbrella Protocol | the Daily Caller.

Did Obama “breach protocol?” Let’s see what the Marine Corps has to say about it:

Seeing a Marine with this particular accessory is “extremely rare,” Marine Corps spokesman Capt. Greg Wolf explained, but because the president’s the commander in chief of the Armed Forces, if he says “hold my umbrella,” it’s permissible.

The sad thing is that this laughable story actually ended up on the front pages of the New York Post, The Wall Street Journal, The Washington Post, The Washington Times and the Los Angeles Times.

This is why the wingnut lockstep army does this kind of freakishly moronic outrage-mongering — because the mainstream media enables it.

Meanwhile, again as usual, the commenters for the Daily Caller’s rage-inducing article are, yes, spewing all kinds of vile racism. They got the subtext right away — it’s a white man holding an umbrella for a black President.

I thought afro-sheen was waterproof?

[…]

Just another occasion where Obama shows his “superiority” to any and everyone around him. Shameful.

[…]

Just another example of the illegitimate Kenyan illegal alien’s arrogance, ignorance, and contempt for the military - and the Marine Corps in particular.

[…]

Next they’ll be carrying shopping bags for Michelle as she strolls ‘Miracle Mile’ looking for a bargain.

[…]

I would roll that umbrella up and shove it where the sun don’t shine. Kenyan Fraud. III%

[…]

The MONKEY BOY BATH HOUSE QUEEN WOULD MELT if SHE GOT WET!!!!!

[…]

Too funny! The first black man given the opportunity to run the most powerful country on earth and he turns out to be no different than all the other two bit corrupt black dictators around the world. For all the world to see no less. Way to go BO!

[…]

Someone…please throw some shoes at this Kenyan clown!!

On and on it goes — currently there are more than 1700 comments, almost all spewing hatred and deranged conspiracy theories. The right wing base in all its glory.

Also see:
Guest Post From a U.S. Marine About Barack Obama’s Shocking and Disgusting Use of an Umbrella

^ back to top ^

Turn off ads by subscribing!
For about 33 cents a day, our subscription option turns off all advertisements at LGF!
Read more...

► LGF Headlines

  • Loading...

► Tweeted Articles

  • Loading...

► Tweeted Pages

  • Loading...

► Top 10 Comments

  • Loading...

► Bottom Comments

  • Loading...

► Recent Comments

  • Loading...

► Tools/Info

► Tag Cloud

► Contact

You must have Javascript enabled to use the contact form.
Your email:

Subject:

Message:


Messages may be published in our weblog, unless you request otherwise.
Tech Note:
Using the Contact Form
LGF Pages Create a Page

This is the LGF Pages posting bookmarklet. To use it, drag this button to your browser's bookmark bar, and title it 'LGF Pages' (or whatever you like). Then browse to a site you want to post, select some text on the page to use for a quote, click the bookmarklet, and the Pages posting window will appear with the title and text already filled in.

Last updated: 2013-05-19 10:14 am PDT

Recent Pages
Haywood Jabloeme
Jon Karl Makes Things Worse
CNN's Howard Kurtz, who knows a little bit about being in the line of media fire for his own work, offered ABC News's embattled Jon Karl the chance to defend himself on Reliable Sources Sunday. Karl, of course, is in hot water because his "scoop" revealing that the White House tampered with Benghazi talking points relied on doctored email leaked by House Republican ...

25 minutes ago
Views: 25 • Comments: 1
Tweets: 0 • Rating: 0
thecommodore
Chris Hayes on AP Scandal: “Liberals, Listen Up.”
Very good commentary on the AP scandal by MSNBC's Chris Hayes. Video

3 hours, 43 minutes ago
Views: 84 • Comments: 1
Tweets: 0 • Rating: 0
Political Atheist
Let’s Fight Big Pharma’s Crusade to Turn Eccentricity Into Illness
Editor's Note: The controversial fifth edition of the Diagnostic and Statistical Manual of Mental Disorders or DSM-5 (a.k.a. the manual formerly known as "DSM-V") was just released - after a 14-year revision process to update its criteria for defining mental disorders. This opinion is from the former taskforce chairman and leader of previous DSM editions. Nature takes the long view, mankind the short. ...

6 hours, 28 minutes ago
Views: 168 • Comments: 4
Tweets: 1 • Rating: 0
FemNaziBitch
A Married Man’s Sexual Epiphany — the Good Men Project
Your sex appeal shoots through the roof! You achieve the status of "sexy man". Your wife sees you in a new attractive light which is the only light that allows her to see you this way. In fact, many other women notice as well--wherever you are. You morph into that man other guys envy and women adore. And until now, you had no ...

1 day, 7 hours ago
Views: 273 • Comments: 1
Tweets: 0 • Rating: 2
theye1
The Greatest (Movie) Speech Ever Made
73 years later is still relevant and powerful as ever. It's also because of this movie that Charlie Chaplin was labelled a "premature anti-fascist."

1 day, 20 hours ago
Views: 323 • Comments: 8
Tweets: 0 • Rating: 7
Romantic Heretic
The Singing Ringing Tree
Some people built this strange looking statue in England. And this is what it sounds like. Youtube Video

1 day, 21 hours ago
Views: 114 • Comments: 1
Tweets: 0 • Rating: 2
Vicious Babushka
Tonight’s Shabbos Menu (& Recipes)
Tonight's menu: Baked Gefilte FishBroiled Rainbow TroutRedskin Potato SaladChicken Noodle Soup Wine: Herzog ZinfandelDessert: Frozen Strawberry Daquiri Tomorrow's menu: Gefilte Fish, TroutRomaine/Avocado SaladOlive Pasta SaladRedskin Potato Salad Wine: Herzog Orange MuscatDessert: Frozen Margaritas Middle East Fried Chicken Recipe 1 broiler chicken, cut into 8ths1/4 c. unbleached flour1/2 c. Panko breadcrumbs1 Tbsp. Za'atar seasoning1 Tbsp. olive oil Preheat oven to 425. Put 1 Tbsp oil ...

2 days, 1 hour ago
Views: 184 • Comments: 1
Tweets: 1 • Rating: 5
Skip Intro
Your Weekly Peggy Noonan Three Martini Column
We are in the midst of the worst Washington scandal since Watergate. The reputation of the Obama White House has, among conservatives, gone from sketchy to sinister, and, among liberals, from unsatisfying to dangerous. No one likes what they're seeing. The Justice Department assault on the Associated Press and the ugly politicization of the Internal Revenue Service have left the administration's credibility deeply, ...

2 days, 1 hour ago
Views: 246 • Comments: 3
Tweets: 0 • Rating: 2
Michael McBacon
4 Things We Should Remember When Arguing About Politics
Political discourse in America has reached levels of douchebaggery previously only theorized about but never observed, like conversational dark matter. We're in a whole new world of hating people based solely on their opinions on a few key issues, and since this is unexplored territory, our conversations about politics are usually only a couple notches beyond the "hold your breath until the other ...

2 days, 6 hours ago
Views: 306 • Comments: 0
Tweets: 0 • Rating: 2
Feline Fearless Leader
What to do in Orange County - LA - San Diego
Seems a good way to solicit ideas for touristing destinations and activities. Will have 4-5 days so some opportunity for visiting multiple sites. And since I do have an interest in history and military history items in that area will be welcome suggestions. (The USS Midway down in San Diego is already on the list.) If there is anything California-geology related that would be ...

2 days, 8 hours ago
Views: 156 • Comments: 4
Tweets: 0 • Rating: 4
 Frank says:

The people of your century no longer require the service of composers. A composer is as useful to a person in a jogging suit as a dinosaur turd in the middle of his runway. -- from the Them Or Us The Book