Microsoft Responds to Horrified Developers on Future of Windows 8

June 18th, 2011 admin 4 comments

A few weeks ago Microsoft released a preview video of Windows 8. Almost immediately developers all over the internet became enraged that Microsoft (with Windows 8) was leaving behind the platform and framework that they have been working with for a decade … all having hedged their bets on: win32 or .NET Framework + C# (language).

Except that Microsoft made no such moves. And no real developers were “horrified”, because a real developer knows that HTML is just a markup language and JavaScript is not a replacement for the CLR + .NET Framework.

At least that was what I thought!

Microsoft has now released a video demonstrating what Windows 8 is about.

The simple truth is that Windows 8 is a re-imagination of the desktop … geared towards the mass market which primarily uses their systems to browse the internet, post on facebook, check their email.

Windows 8 can run tailored apps where HTML and JavaScript widgets replace the traditional desktop window for the benefit of the user.

The underlining platform does not change. We simply get a new fancy UI option that uses a DLL shared with IE 10.

Categories: Microsoft, Windows Tags:

Apache Conference Videos and Slides

November 23rd, 2010 admin No comments

The ASF (Apache Software Foundation) organizes and hosts talks every year.

I’ve gathered links to keynotes from this year’s conference and videos from 2009 and 2008.

Start with the videos if you are mostly interested in the Apache Web Server. It seems to be a very small part of the 2010 slides.

ApacheCon US 2009 Videos: Hadoop Track, Apache HTTPD Track, Lucene Track.
ApacheCon US 2008 Videos: Apache HTTPD System Administration, Security, Administration.

2010 ApacheCon Slides and the schedule of the talks.

Categories: Apache Tags:

Google Toolbar Is a Resource Hog

May 6th, 2010 admin 3 comments

I installed Google Toolbar in IE8 on Windows Vista.

It took up an entire cpu on a 4 core processor, ballooned IE load time from 1 second to 15 seconds, caused tabs to crash, and just made the entire system sluggish.

And that was after I turned all the toolbar’s options off.

It’s too high of a price to pay for seeing the PR of websites. Thanks, but no thanks Google. It’s now disabled.

Google Toolbar Performance

Categories: Google Tags:

Something You’ll Never See On Your iPad

February 4th, 2010 admin No comments

UNIQLOCK (flash app)

Categories: Off-topic Tags:

Google Took A Principled Stand On China.

January 15th, 2010 admin 1 comment

Google Took A Principled Stand On China.

I doubt it.

Ask yourself this… What is it that has changed since Google entered the Chinese market in 2006?

Google knew what they were getting themselves into: dealing with censored results, government interference, corporate espionage (sanctioned by the state), and much much more. Not to mention having the entire deck stacked from the onset against all foreign companies (in China, you get used, striped, and then disgarded in favor of the home-grown competitor).

So a dozen Gmail accounts get compromised and the finger points to China. A few networks get breached.

So what?

How many Gmail accounts where compromised by government interest in the rest of the world? How many times did a corporate network get compromised by a competitor or a foreign interest? This is standard-operating-procedure in big business and politics.

Let’s try this on for size…

1. Google enters the Chinese market.

2. Chinese market/government favors own state side Baidu.com

3. Google breaks even or loses money on investment. Marketshare does not come.

4. Google realizes how difficult things are in China for “outside” companies.

5. Google, not being able to hack it here, to save face and score some points, uses its PR machine to a) start the process of pulling out of the market, b) make themselves look good doing it, and c) take advantage of a whole lot of people in the process.

And what do you know, it fits!




I’ll concede this could be a bluff to get something they want or there is much more going on that we have not been made aware of.

Categories: China, Google Tags:

Zed Shaw – Fighting “Corporate Autism”, a Howto Guide For Coders

January 8th, 2010 admin 1 comment

Note: the video is labeled “The ACL is Dead” but that’s not what it really is about.

Zed Shaw – The ACL is Dead from CUSEC on Vimeo.

Categories: Informative Tags:

Google Failures of Epic Proportions

December 21st, 2009 admin 3 comments

Every day I get up, turn my system on and spend a few hours reading the blogs I follow. And every day I read posts hating Microsoft for reasons that can only be explained by a serious misunderstanding of reality.

Here I present you Google Failures of Epic Proportions (a.k.a the other side of the story).

Original Idea Google Copy Result
Wikipedia Knol Fail, no one uses
YouTube Google Video Buyout, users don’t come
Exchange Wave Hype, does not deliver
Office Docs Mediocrity, does not compete
Paypal Checkout Poor vendor uptake, too many issues
Amazon Google Catalogs Discontinued
DMOZ Google Directory Fail
Y! Answers Google Answer Fail
Craigslist Google Base Fail
Twitter Jaiku acquisition Fail
Live Messenger GTalk Fail
WolframAlpha Google Squared Fail
Categories: Google, Microsoft Tags: ,

Why Microsoft Needs Yahoo…

March 24th, 2009 admin No comments

I was reading the comments in this article today and could not resist observing (once more) how bloggers and anonymous commenters love to pretend they know Microsoft’s business better then Microsoft *knows it itself*.

I think the real question here is why has Microsoft been unsuccessful in dominating this area of [internet search] business. Right? After all, this is what everyone agrees on — that Microsoft has failed here.

But have they?…

If you take the time to try Live Search, you’ll know it’s just as good as Google Search.

The problem here is not with better algorithms or a bigger database, but rather with consumer perception.

Consumers *have* made up their minds [<-- one of a thousand examples] that Google is king of internet search. And any decent marketer will tell you that once a consumer has made up his mind, it is impossible to change his notion from that point forward.

*It is that simple.*

Live Search can never compete with Google Search directly.

The above is a failed strategy. It’s just like Google Knol trying to compete with Wikipedia (fail!). It’s just not going to happen unless they are prepared to spend 100s of millions on marketing and the next 10 years slowly leaching away at the user base of whoever is #1.

There are only two ways Microsoft can win market share here: buy another major Search company such as Yahoo (to get their users and brand), or compete with Google search on different attributes.

And this is exactly what they have been trying to do, as everything else is a dead end. And of course with some creative marketing thrown in, they can attack Google on all fronts.

Update: Just take a look a Bing! Fantastic strategy on their part. Rebranding (of Live Search) and marketing at work creating a clean slate in the consumer’s mind.

Bing

Bing is a search engine that finds and organizes the answers you need so you can make faster, more informed decisions.

vs. Google

Enables users to search the Web, Usenet, and images. Features include PageRank, caching and translation of results, and an option to find similar pages.

Categories: FUD, Microsoft Tags: ,

WordPress, Disable and Delete Post Revisions

February 17th, 2009 admin 6 comments

Post revisions are one of the more useless features of WordPress that do little but add bloat to the database.

At first they were kind of cool, but then what do you do with them?

You’re not running a wiki. Right?

Here is how to get rid of them once and for all.

Edit wp-config.php, add this line in to disable the post revisions feature.

1
define('WP_POST_REVISIONS', false);

You will also need to clean the database of all the previous entries under the wp_posts and wp_postmeta tables.

1
2
USE database_name;
DELETE a,b,c FROM wp_posts a LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id) LEFT JOIN wp_postmeta c ON (a.ID = c.post_id) WHERE a.post_type = 'revision';

Congratulations, you are done! Enjoy your now much smaller database.

Categories: HowTo, WordPress Tags: ,

Is your LCD making a buzzing or high pitch noise?

December 30th, 2008 admin 11 comments

This seems to be a real problem with some LCD Monitors, expecially the entry level 24″ TN panels like the popular Dell E248WFP (which I’m in front of right now).

In my case, the monitor was fine for the first two months. But then started making a buzzing noise… 1) when on, 2) worse when in power stand-by mode, and 3) even worse when turned off.

Thanks Dell!

It seems as if the cheap capacitors manufacturers’ use in these LCDs start to resonate at a high pitch frequency that is very annoying in a quiet room. I’ve read that some people have fixed this by opening up the monitor and putting epoxy around parts … something I was not ready to do.

Adjusting the brightness setting of the LCD managed to fix this problem. Since this changes the power the monitor takes, this also changes the frequency these cheap capacitors resonate at… Sometimes for the better. You’ll have to play around and see what works for you best.

Next time I’m going for a nice non-TN Samsung.

Categories: Dell, Informative, LCD Tags: , ,