Showing posts with label google. Show all posts
Showing posts with label google. Show all posts

Sunday, November 09, 2008

Ballmer: Google Android no competition


We all know that Steve Ballmer emanates endless assertions of accuracy, such as when he said here that the iPhone was-a nuthin'. And we can also see how M$ failed to recognize Google as a threat in other ways, such as searching.

Let's hope Ballmer continues as CEO of M$, so that he continues screwing up...like he did with Vista.

Ballmer doesn’t see Google Android as competitor yet | Macworld:

Google’s Android mobile platform doesn’t “bubble up to the top” of Microsoft’s list of toughest competitors to Windows Mobile in the market for smartphone OSes, Microsoft CEO Steve Ballmer said this week.
Speaking at an investor day hosted by Australian telecommunications carrier Telstra on Thursday, Ballmer said that it’s too early to tell if Android will ever be a serious competitor in the mobile market, where others have already marked considerable territory.

Sunday, November 02, 2008

Hack Google, download an mp3

LogoLooking to download an mp3 from your CD collection (ahem)? Don't want to use BitTorrent for fear of the RIAA busting down your front door? Use Google! Of course, don't forget about seeqpod.com either!

HACKING GOOGLE: TURNING A SEARCH ENGINE INTO AN MP3 DOWNLOADER

Copy / Paste the code below into your Google search box:
-inurl:(htm|html|php) intitle:"index of" +"last modified" +"parent directory" +description +size +(wma|mp3) "<BANDNAME/SONG>"

Monday, September 22, 2008

Shane's Top Mac Troubleshooting Tips

(This was posted originally in January 2006 when running OS X 10.4.3, Tiger; it has been updated to address changes since Snow Leopard in 2009).

I’m no expert on this stuff, but due to the years of diagnosing and fixing Mac issues (since 1993 to be exact with my old Classic II) I’ve developed a few troubleshooting routines that I automatically run through when stuff starts acting weird. Of course, most of the tricks of the old classic pre-X days are useless now (unless troubleshooting for Classic, of course), but here are some helpful ideas for X (currently 10.6.2).

= Command key (might have an Apple on the key as well)
= Option key
= Shift key

[Complete List of Macintosh Keyboard Shortcuts - http://support.apple.com/kb/HT1343]

First, get to know these helpful “snags” (startup key sequences):

* Start up in Open Firmware: --O-F (more below)
* Reset parameter RAM: --P-R (zaps the PRAM - see also Open Firmware reset)
* Bypass startup volume: -- -Delete (gets to a new volume if your current one is busted)
* Open the Startup Manager: (pick the volume you want to start up from)
* Force Mac OS X startup: X or -X (start in OS X)
* Start up from an optical disc: C (force start from your CD or DVD drive)
* Eject optical disc: mouse, trackpad button, or hold down the eject button (at startup)
* Start up from a network server: N (if you have a network startup volume)
* Reset PowerBook screen: R (no clue)
* Start up in Target Disk mode: T (firewire two computers together and boot from the other)
* Start up in Safe mode: (more below)
* Start up in Verbose mode: -V (great for seeing what the startup problem is)
* Start up in Single-User mode: -S (more below)

Most of these key sequences are still valid for Classic OS boots also (pre-X), and most of these don’t work if an Open Firmware password has been set using either Terminal or Apple’s OFPW application. Using an OF password is a good idea, especially for notebooks that could get stolen (protect your data from thieves at least).

Backup, Backup, Backup

Before doing anything, learn to regularly backup your system. I backup every hour to another drive (using Time Machine). It’s always best to keep two backups if possible, but one is better than none. There are other good backup solutions available too, such as Carbon Copy Cloner and SuperDuper. Do a backup immediately before making any major changes to your system too!

Programs are a-crashin’

If you have apps that are crashing, not responding, or you’re getting kernel panics, this is a sign that something is amiss. Here are the beginning steps to take:

• Repair permissions using Disk Utility if you can (this should always be your first step). Always try to repair permissions from the startup volume itself. If that doesn’t work, startup from your Install Disc and repair permissions from the Install’s Disk Utility (see below).

• Try logging out and back in.

• Try creating a new account and see if the problem persists. If it goes away then the problem is likely with your Home folder.

• Try restarting (rebooting).

• Check the volume for file system errors. There are a few ways to do this. I usually boot into Single-User mode first (see above snag list); to run a file system check, at the prompt type:

# /sbin/fsck -fy

If errors were found, continue running the above command until they’re gone; then type:

# reboot

If no errors were found, continue booting normally by typing:

# exit

Of course, you can also boot from your OS X install disc (hold C while booting), Repair Permissions, and run Repair Disk in Disk Utility. If Disk Utility or fsck won’t do the trick, consider an emergency boot disc or another bootable volume (separate hard drive or partition) with TechTool Pro or Disk Warrior to repair the volume.

• If none of these steps solved your problem try what’s listed below.

Safe Mode ( while starting up)

Here’s what it does for you:

* Performs a directory check of the hard drive identical to clicking Repair Disk in the First Aid pane of Disk Utility.
* Ignores kernel extensions cache (/System/Library/Extensions.kextcache).
* Loads only required kernel extensions (/System/Library/Extensions).
* Runs only Apple-installed startup items (/Library/StartupItems and /System/Library/StartupItems).
* Loads only those fonts in /System/Library/Fonts (Mac OS X 10.4 or higher).
* Trashes all font caches stored in /Library/Caches/com.apple.ATS/user ID number (Mac OS X 10.4 or higher).
* Disables Login Items (Mac OS X 10.4 or higher).

Safe Mode is a limited mode which also allows one to install and uninstall software and kernel extensions, and Disk Utility will easily repair permissions while in Safe Mode. Also, a good troubleshooting step while in Safe Mode is to use the Finder to delete the following:

/Library/Caches/* (delete entire directory contents)
/System/Library/Caches/* (delete entire directory contents)
/System/Extensions.kextcache (delete only this file)

NOTE: This can also be done in Single-User mode (see below).

More Single-User Tricks (-S while starting up)

Much can be done in Single-User mode (not just running fsck). It’s basically the BSD command line, so you can mount volumes and do a variety of maintenance tasks if you’re Terminal savvy (er…you’re a UNIX geek). To learn more about these commands and what they do, Google it and find out!

Mount the volume:

# mount -uw /

Run the cron routine maintenance scripts:

# sudo periodic daily
# sudo periodic weekly
# sudo periodic monthly

Update the prebindiing:

# sudo update_prebinding -root / -force

Repair permissions:

# sudo diskutil repairPermissions /

Eliminate some startup, cache, and kernel extension problems:

# /sbin/mount -uw /
# cd /Library/Preferences
# rm com.apple.loginwindow.plist
# rm com.apple.windowserver.plist
# cd /Library/Caches
# rm -r *
# cd /System/Library
# rm Extensions.kextcache
# cd /System/Library/Caches
# rm -r *
# reboot

You could also install Applejack, which is a wonderful utility to automate many Single-User maintenance and troubleshooting tasks for you.

Open Firmware (--O-F while starting up)

One could do quite a bit of damage when booting into Open Firmware (basically the Mac version of BIOS), so stick strictly to these commands unless you really know what you’re doing.

You can check the current OF environment by typing:

> printenv

To reset the OF and reboot, at the prompt type:

> reset-nvram
> set-defaults
> reset-all

Sometimes, you’ll need to eject a disc when the usual methods (holding down the mouse, E, or Eject buttons) don’t work. In OF, do this:

> eject cd
> mac-boot

Another neat fact. OF is based on the old programming language called Forth, which was originally written by an astronomer named Charles Moore to control telescopes. Forth is unique in the way it handles math; one must think in RPN (Reverse Polish Notation). So to add 2 and 5 to get 7, at the prompt type:

> 25+
> 7

Hopefully by now, your problem is solved. If not, you’re going to have to jump in some place like Apple Support (especially Discussions) or MacFixit forums.

Other Resources

Lots are available online, but here are some great links:

http://delicious.com/sonicdeviant/macintosh+Troubleshooting%20

Saturday, December 01, 2007

Ballmer, MS, and their cronies at their stupidity again

I really need to write about something else. This blog is turning into a "I hate Microsoft" column. But they're just so hateable.

The iPhone whining from Microsoft is apparently ceaseless. Too bad the iPhone WAS A SUCCESS, eh Ballmer and Allard?

MacNN | MS Zune chief: iPhone is a "lousy" iPod:

"It’s a lousy iPod," Allard explains. "You can’t skip a track without looking at it. You can’t go running with the thing."

Ballmer bawls out Apple iPhone as 'no hoper':

Microsoft's boss Steve Ballmer slammed the iPhone last week, saying it has "no hope" of gaining a foothold in the mobile phone market.

Ballmer clearly hasn't heard much about the one million AT&T customers in the US already signed-up for information on the new product when it ships.

On the security-and-utter-bull-crap front, Computerworld magazine published this gem from a hacking contest winner. Obviously, MS is trying their damnedest to reverse the PR image that their pathetic OSX-wannabe is not the malware slut it once was:

Vista more secure than Mac OS:

I have found the code quality, at least in terms of security, to be much better overall in Vista than Mac OS X 10.4. It is obvious from observing affected components in security patches that Microsoft’s Security Development Lifecycle (SDL) has resulted in fewer vulnerabilities in newly-written code. I hope that more software vendors follow their lead in developing proactive software security development methodologies.

It wasn't all bad, though, in that he actually had some good security advice for Macites:

I recommend that Mac users make their primary user a non-admin account, use a separate keychain for important passwords, and store sensitive documents in a separate encrypted disk image. I think these are fairly straightforward steps that many users can take to better protect their sensitive information on their computer.

Mmm hmm...oh yeah, it's real secure (and energy-friendly). Later we read:

Vista Battery Problems and Microsoft Security Update:

A Domain Name System (DNS) zero-day bug had been found that could expose vulnerabilities throughout Microsoft's entire server line. There are indications that Microsoft will also include a DNS patch in the Tuesday round.

Yep, it's just plain more secure than OS X. We then read this:

How Internet Criminals Will Evade Vista's Safeguards:

Think malware will fade away with Vista? Sorry. There's about as much chance of the thriving throngs of online criminals packing up shop as there is of Microsoft doing the same.

And MS's gobble-everything-up mentality hasn't gone away, seeing that they are unable to muster any innovations of their own accord; when someone is actually competing with them, they'll just work at acquiring a service or product that they just can't seem to deliver well on their own:

Reports: Microsoft pursuing Yahoo:

Microsoft is feeling increasing pressure to compete with Google, which plans to beef up its portfolio with a $3.1 billion purchase of online advertising company DoubleClick Inc. Microsoft currently trails both Yahoo and Google in the lucrative and growing business of Web search, even as Google increases its development of Web-based software that directly competes with Microsoft's lucrative Office suite.


Technorati Tags:
, , , , , , , , , ,

Sunday, March 18, 2007

Microshaft = Xerxes (The REAL battle of 300!)


300Poster3The rantings of Clinton Forbes:

Today a former Microsoft employee, a very disgruntled former employee, revealed to Wired Magazine why the company encountered such a large number of problems delivering their latest operating-system release - Apple Computer was to blame.

And later on, the disgruntled MS employee stated:

Gates employed an 'industry research' firm, a company specializing in corporate espionage, to steal the source code of Apple's work-in-progress, OS X version 10.2. He planned to beat Apple to market with Apple's own new features. It was a very strange plan considering that Microsoft already owned over 90% of the desktop market.

How ironic! MS stealing ideas (even code) from Apple?? No way! Not MS! But wait, there's more!

Macworld: News: Ballmer questions business strategy of Google:

Microsoft CEO Steve Ballmer criticized rival Google, saying it is devoted primarily to ad-supported search while Microsoft has reinvented itself many times over.

So here we have that dolt Ballmer publicly putting down other companies, like Apple and Google, that are kicking his company's butt at certain aspects within the tech industry. No surprise there. But, just as Ballmer does this (as one might expect), he's conspiring to destroy the competition through bribery. I guess MS hasn't learned that its Mafioso tactics aren't very sublte:


Microsoft promises rewards for search engine use - Yahoo! News:

In a move intended to wrest users from rival search engines such as market-dominating Google, Microsoft will give business customers service or training credits based on how much employees use Live Search.

Well, dumpy ol' Ballmer and Gates have a reason to worry. They will NOT wrestle control away from Google (nor Apple), because they're only capable of copying and stealing the technology invented by others. Here's an example of how they're losing the battle:

US university dumps Windows to go all Mac - Mac - Macworld UK:

Wilkes University announced on Wednesday that it has pulled the plug on PCs in favour of Macs, saying the move - which actually began last year - will save the Pennsylvania liberal arts college more than $150,000 while letting students and faculty continue to run Windows applications.

So, I think companies like Apple and Google are playing the part of the Spartans and King Leonidas to Microsoft's Xerxes of Persia. The 300 Spartans stood up to Xerxes at Thermopylae and eventually lost, after taking a lot of Persians with them. But in the long run, they kicked Xerxes' butt. His butt was too big for his own breeches! Sounds like Ballmer...I mean Microsoft...I mean Xerxes!


Friday, August 11, 2006

Open VISE get Script Editor?

This was a new one for me. Double-clicking a VISE Installer application opened the Script Editor. I did a quick Google search and found this Mac NN:

Installer VISE Installers?

None of their suggestions worked for me, but I discovered something simple. I just added the extension ".app" to the file using Get Info from the Finder! Problem solved.