The Daily Mail Vs Facebook – The Death knee of old media

March 11th, 2010

 

The Daily Mail has never had what you may call a rational outlook of the world be it their Hypocrisy over Eastern European migrants or abortion or Bingo in fact there is very little that they haven’t attacked and slandered and made up stories about over the years.

So what’s new?

Well their resent story and shall we say non-to subtle headline (see above) about a former child safety expert Mark Williams-Thomas, the opening paragraph of his article was shocking enough.

"Even after 15 years in child protection, I was shocked by what I encountered when I spent just five minutes on Facebook posing as a 14-year-old girl. Within 90 seconds, a middle-aged man wanted to perform a sex act in front of me."

But the rest when on to describe how a series of men approached him and made sexual suggestions.

But hang on a second, Facebook isn’t the kind of place you spark up random chats with people, but you can’t just chat with them.

Thankfully the old media does have some integrity Rory Cellan-Jones of the BBC contacted Mark and Facebook to ask them about this they said.

Facebook says when it contacted Mark Williams-Thomas, he had a rather different story. He had been contacted by the Mail which had provided him with the material about the fake profile, but he had corrected it to make it clear that it involved not Facebook but another social network. By late yesterday, the story on the Mail’s website had been amended; although it still featured a Facebook picture, it included this apology:

And Mark said

He got back to the paper with a number of changes before publication, but although they acknowledged receipt of his alterations, they were not acted on.

In other words they just made it “fit” their world view. So much for old media’s journalistic standards.

Mark is very annoyed by thisbecause it detracts from the point of the experiment which was worthwhile”.

This whole thing is just another example of why some elements of the old media, ironically throes who are most critical of the new media, should take leaf out of their own book, or they will be forced to close… and may be that wouldn’t be such a bad thing for society after all.

Posted via email from scottherbert’s posterous

Random Posts

A Digest of what I did on March 9th

March 9th, 2010
twitter (feed #3)
A Digest of what I did on March 2nd http://bit.ly/dakWrq [Scott_Herbert]
twitter (feed #3)
PlayStation 3 clock bug fixed http://bit.ly/bFvlN2 [Scott_Herbert]
twitter (feed #3)
RT @Brandylele: Twitter Turns On The Firehose For Realtime Search Startups: When it comes to getting access to all the data that … htt … [Scott_Herbert]
twitter (feed #3)
twitter (feed #3)
Apple sues HTC over phone patents http://bit.ly/dADcS9 [Scott_Herbert]
twitter (feed #3)
RT @jeffbullas: Survey Results Revealed: Content Makes You Influential on Twitter http://bit.ly/2KoLFM [Scott_Herbert]
twitter (feed #3)
Fixed DM and Reply’s as well as refresh http://bit.ly/d2hn1S [Scott_Herbert]
twitter (feed #3)
CoTweet sold to ExactTarget http://post.ly/QWTt [Scott_Herbert]
blog (feed #1)
twitter (feed #3)
CoTweet sold to ExactTarget http://bit.ly/abNbql [Scott_Herbert]
twitter (feed #3)
Spanish police smash huge botnet http://bit.ly/aGyXuC [Scott_Herbert]
blog (feed #1)
twitter (feed #3)
EU urged to level playing field for Web browsers – but where’s the Mac browser choice? http://viigo.im/2Ee2 [Scott_Herbert]
twitter (feed #3)
Entrepreneurship Education: What DO B-Schools Teach About Venture Capital? http://viigo.im/2EmQ [Scott_Herbert]
twitter (feed #3)
Is The Federal Reserve Insolvent? http://viigo.im/2GIi [Scott_Herbert]

Random Posts

(406) Not Acceptable error in vb.net and how I fixed it!

March 4th, 2010

 

Last night, well till 2am this morning, I finally fixed a highly annoying problem with VB.

As you know if you’re a regular reader (don’t worry if you just found this via Google looking for the same problem as I had, don’t worry we love you too), I’m currently working on a Twitter client called TwitterBrite, part of the application will make a query to my web server, and pull a list of interesting twitter people worth that user following.

This should be fairly simple, all I need to do is point my WebClient at the correct URL and pull the XML out then process it as I need

people = wc.DownloadString(URL)

people_xml = XElement.Parse(people)

Dim elements = From el In people_xml.<user> Select el

For Each el In elements

But no, my server returns a “(406) Not Acceptable” exception every time. Wikipedia tells us that this error is “The requested resource is only capable of generating content not acceptable according to the Accept headers sent in the request.”

OK… this isn’t pushing any content to the server just pulling from it. So the next step is to see what Dr. Google says. Sadly all my initial search returns is that I’m not alone in having this problem. Then I found one or two gems. So it’s to do with the headers I’m sending to my webserver. But wait MSDN says

In addition, some other headers are also restricted when using a WebClient object. These restricted headers include, but are not limited to the following:

·         Accept

·         Connection

·         Content-Length

·         Expect (when the value is set to "100-continue"

·         If-Modified-Since

·         Range

·         Transfer-Encoding

Oh… So it can’t be that! And let’s face it “text/xml” isn’t exactly an obscure mime type. So I thought, it must be something server side. So I went into the PHP and forced the header but no joy, so I wrote an e-mail to my web host (at about 1:30am).

Just as I was going to go to bed when I thought “you’ve nothing to lose, just try adding the headers” so I added the three lines

headers.Add(HttpRequestHeader.Accept, "text/xml")

headers.Add(HttpRequestHeader.UserAgent, "twitterBrite Client")

wc.Headers = headers

people = wc.DownloadString(URL)

people_xml = XElement.Parse(people)

Dim elements = From el In people_xml.<user> Select el

For Each el In elements

And guess what! It pulled the data first and every time!

                                                                                                  

So either MSDN is wrong or I missed something! If you have any additional information on this I’d love to hear from you in the comments.

Posted via email from scottherbert’s posterous

Random Posts

CoTweet sold to ExactTarget

March 3rd, 2010

CoTweet, the Twitter CRM tool used by several large brands, including the likes of ford and the airline JetBlue has been sold to the email marketing firm ExactTarget.

So I hear you cry, this is just another web2.0 merger who cares?

Well you should, at least you should if you use a web based twitter client for your business.

CoTweet, like Hootsuite, doesn’t use oAuth, at least it doesn’t when I last tried it.

So all CoTweet’s usernames and passwords have just been sold to a third party, so even if you trust coTweet with your username and password do you trust ExactTarget?

It also exposes another issue sourounding cloud based services. That of the cost. CoTweet started life as a free beta, then late last year they started charging $1,500/mo for their basic plan. In any other business this would be called extorsion, you sign-up for a service for free then when your tied to it they rank up the price.

That said CoTweet has a small but active customer base, I wouldn’t be surprised if they have to charge such a huge price because if they don’t they go under.

And if your customer service relied on their service and they went out of business what happens to your data? What happens to your customer service?

That’s why TwitterBrite is a desktop based application, if I go under all that happens if you don’t get updates and the “Find interesting people to follow” wouldn’t work, but other than that you wouldn’t notice anything.

Posted via email from scottherbert’s posterous

Random Posts

A Digest of what I did on March 2nd

March 2nd, 2010
twitter (feed #3)
Apple, There’s Pornography On My iPhone. The App Is Called Safari. You Made It. http://viigo.im/2wmH [Scott_Herbert]
twitter (feed #3)
A Digest of what I did on February 23rd http://bit.ly/aRJMnp [Scott_Herbert]
twitter (feed #3)
Anger as Apple purges adult apps http://bit.ly/crPi6j [Scott_Herbert]
twitter (feed #3)
Google faces competition inquiry http://bit.ly/9TxtkS [Scott_Herbert]
twitter (feed #3)
Google bosses convicted in Italy http://bit.ly/bclGc9 [Scott_Herbert]
twitter (feed #3)
UKs web heritage could be lost http://bit.ly/agrwDP [Scott_Herbert]
twitter (feed #3)
Why Can’t PCs Work More Like iPhones? http://viigo.im/2yis [Scott_Herbert]
twitter (feed #3)
Kindle App on iPad: No In-App Book Buying http://viigo.im/2z4U [Scott_Herbert]
twitter (feed #3)
Tiny ear listens to hidden worlds http://bit.ly/baU2sL [Scott_Herbert]
twitter (feed #3)
RT @Needimages: Pacific Tsunami Warning Center issues tsunami warning for Hawaii. waves expected in Hawaii at 4:19p EST http://ow.ly/1bW … [Scott_Herbert]
twitter (feed #3)
Desktop Fun: Fantasy Theme Wallpapers http://viigo.im/2A2B [Scott_Herbert]
twitter (feed #3)
RT @designfollow: Showcase and Tips: How to Create Effective Landing Page Designs http://bit.ly/aBUxrQ [Scott_Herbert]
twitter (feed #3)
RT @healinggarden: Totally inspiring: Created to celebrate their first year growing organic vegetables, this
short is part of a… http … [Scott_Herbert]
twitter (feed #3)
A Digest of what I did on February 23rd [Scott_Herbert]
twitter (feed #3)
Tiny ear listens to hidden worlds [Scott_Herbert]
twitter (feed #3)
A Digest of what I did on February 23rd http://bit.ly/aRJMnp [Scott_Herbert]
twitter (feed #3)
Tiny ear listens to hidden worlds http://bit.ly/baU2sL [Scott_Herbert]
twitter (feed #3)
TwitterBrite TR 1 http://bit.ly/akDebV Not production ready, but free to test if you want. (Windows Twitter client) [Scott_Herbert]
blog (feed #1)
Published Twitterbrite TR1.
twitter (feed #3)
Thanks for the Re-tweet @gort999 [Scott_Herbert]
twitter (feed #3)
twitter (feed #3)
Microsoft offers browser choices http://bit.ly/a698z4 [Scott_Herbert]
twitter (feed #3)
RT @dave_carpenter: "somebody wrote something about you in this blog here " is apparently the latest version of the DM sent out on hacke … [Scott_Herbert]

Random Posts