Archive for the ‘tips’ Category

The Truth Will Make it Free

Wednesday, November 2nd, 2011

A few weeks ago at lunch I dropped my beloved iPhone 4 and shattered the back side glass. Fortunately I already knew the cost to replace it, as I had just been to the Apple Store the previous weekend with a friend who committed the same act of violence against his phone.

At $29 I thought he got away cheap – but I didn’t understand why my friend fabricated a ridiculous story about how the glass shattered on his phone. Later he told me it was to try to get sympathy from the Genius in order to replace the glass for free. Of course this lowered my opinion of him (not the lie, the fact that it was a terrible lie) and I knew it wasn’t going to work for me.

After recovering from my phone-dropped-glass-shattered induced heart attack, I scheduled an appointment with the Genius Bar online & was served by the very same Genius as my friend:

“How did this happen?” he asked.

I replied, “I dropped it in a parking lot.”

At that moment it felt like you could hear a pin drop in the store. All of the surrounding Apple employees looked toward me in shock & awe, not because I dropped my phone – but because I told the truth.

“During times of universal deceit, telling the truth becomes a revolutionary act.”

~George Owell (or not)

Unbeknownst to me, a store manager was standing right behind me, came up to the service desk, and asked for more details about my phone tragedy. It seemed as if nobody ever told him “Yes, it’s my fault & it hit the pavement.” The manager took my phone with him to the back of the store & came back minutes later letting me know the glass was replaced and that the repair cost was on him.

Nothing more than the truth made it free.

SociBook del.icio.us Digg Facebook Google Yahoo Buzz StumbleUpon

Social Networking and Your Blog

Tuesday, October 25th, 2011

Some of you may know I love food, and in my effort to both learn more about social networking, wordpress architecture, cloud computing, and search engine optimization I decided to create a blog devoted to my adventures in seeking out the best places to eat around.

Creating a blog is easy, though customizing it for your use is can be challenging unless you take advantage of the work of others with the thousands of free themes, plugins, widgets, and other tools that are available to streamline the customization you wish to add. Here we will discuss how to tie your Facebook fan page into your word press blog so you can share information between the two seamlessly and promote traffic to your site.

There are many word press to Facebook plugins, but the one I chose was Add Link To Facebook. This allows me to publish articles composed on the site to the Facebook Page I have setup for the blog and share the comments and likes between the two. It was rather simple to setup and configure as I already had a Facebook developer account which was required to create the Facebook application needed to bridge the two together. The instructions were super simple and I was up and running in no time.

 

If you have a blog and a Facebook Page I highly recommend you integrate the two to steam line the content management between the two.

 

-Chris

SociBook del.icio.us Digg Facebook Google Yahoo Buzz StumbleUpon

Voice Recognition in the Work Place

Monday, October 24th, 2011

If I could have three wishes, one of them would surely be 100% accurate voice recognition with every electronic device that I interact with. I don’t mind typing but given the choice, I would much prefer to speak my commands rather than have to type them into a keyboard or hammer them out on an iPhone or iPad.

Voice recognition is obviously in its infancy but it is becoming quite good considering the tools we have to work with. In fact this blog post is being dictated into an iPad with the headphones that come with the iPad and so far it has been 100% accurate. I agree it could get confusing for a computer to decipher commands if you’re in a crowded room or there is loud music playing in the background or any other number of situations that might not be applicable to voice recognition.

That said how nice would it be to wake up in the morning and say, “turn on shower”. Or if you’re laying in bed at night and you want the lights off, instead of getting up to walk across the room you say, “turn off the lights”. How about you say, “did I remember to lock the doors” and the computer says “no, the back door is unlocked, would you like me to lock it for you now”.

It almost sounds a little like being lazy on the surface but I think it goes much deeper than that if you really ponder the possibilities. Steve Jobs seemed to be headed in the right direction before his untimely passing and I suspect that in the not-too-distant future, keyboard will go the way of the eight track.

Imagine how much we would save on hand sanitizer and carpal tunnel syndrome treatments.

SociBook del.icio.us Digg Facebook Google Yahoo Buzz StumbleUpon

Recovering a Corrupted Partition Table

Friday, August 19th, 2011

There are few things worse than the sinking feeling you get when you boot your computer and find that partitions are missing, or even worse that it won’t boot at all. For sure drives fail due to moving components wearing out over time, but if the drive is mechanically intact there are many options for recovering your data, and not all of them involve spending thousands of dollars to have a recovery specialist deconstruct the drive in a clean room. This option is useful if the drive no longer spins or is unrecoverable by other methods, and in many cases recovery can be too complicated an ordeal for a normal user to approach.

You’d never know the extent of the problem however without doing an initial bit of investigation, Does the drive spin? Yes? Is it making funny noises? No? Well chances are your data is still there, but may have gotten lost by a corrupt or broken partition. You could spend a bit of money on software designed to scan your drive for unmapped data (ie. GetDataBack & DiyDataRecovery’s Diskpatch are a couple of my favorites), though there is a good chance you could recover a backup of your partition table for free if you just knew how.

Enter Testdisk. I first discovered this useful freeware utility when using Insert, a mini-Linux distribution on a live cd focused on security. Since then I’ve found it’s also available on Windows and MacOSX and has helped me out of similar predicaments on countless occasions, and no technician’s arsenal is complete without it.

Full details can be found on their wiki at

http://www.cgsecurity.org/wiki/TestDisk

with step by step instructions at

http://www.cgsecurity.org/wiki/TestDisk_Step_By_Step

SociBook del.icio.us Digg Facebook Google Yahoo Buzz StumbleUpon

Testing to see if your ISP is blocking outgoing SMTP connections

Friday, August 12th, 2011

Oftentimes to reduce the threat of spambot outbreaks coming from their network, ISP’s today will prohibit outgoing connections to port 25 except when connecting to the mailservers designated for their own clients to use. Some ISP’s will make exceptions if you contact them about it, but usually the person who answers their first tier support calls knows little about how SMTP works, or why you’d want to connect to some other SMTP server to begin with.

When sending email using a server on someone else’s network the errors in your own mail client may be less than helpful, saying ‘Server not available’ or something similar, leading the investigation in the wrong direction: towards the server you are connecting to rather than your ISP or local network.

Luckily many servers nowadays will have an alternate port open for this purpose (since a spambot is connecting to an MX server instead of your outgoing server they are much less likely to attempt connections to an alternate port as well). This is often set to port 587 though technically any port could be used.

Assuming SSL is not required, to test whether you are able to connect to a mailserver on port 25 simply open a command prompt and type ‘telnet someserver.yourhost.com 25′ (replacing the hostname with whatever outgoing server is provided by your host):

C:\>telnet someserver.yourhost.com 25

220 someserver.yourhost.com (IMail 8.21 57484-4) NT-ESMTP Server X1

If the screen refreshes and you see an SMTP banner as above, then that port is open for you to connect to and the issue lies elsewhere.
If you know that this server is working for other people and the port is being blocked however, you’ll see a connection failure just as if the server is down or not responding:

C:\>telnet someserver.yourhost.com 25
Connecting To someserver.yourhost.com…Could not open connection to the host, on port 25: Connect failed

C:\>

Ask your email provider for an alternate port to connect to and any other relevant settings. Assuming SSL is not required you can test to this alternate port in the same way as above.

C:\>telnet someserver.yourhost.com 587

220 someserver.yourhost.com (IMail 8.21 57809-2) NT-ESMTP Server X1

Note: The telnet program is not installed by default on recent Windows operating systems though it can easily be installed through Programs and Features by selecting ‘Turn Windows features on or off’ and checking ‘Telnet Client’, then Ok.

SociBook del.icio.us Digg Facebook Google Yahoo Buzz StumbleUpon