Skip to main content

Google - Lacking the human touch

Don't bite the hand that feeds you!

First and foremost, I am a big supporter of Google and think the company has great potential in the future and is innovating way beyond many of its competitors however, there is one downside I've notice more so recently with Google - but they can change it!

The lack of human touch. A recent and ongoing issue (I will update the blog once it is resolved) I am having is with Google's AdSense service. The issue is with domain verification however the process is completely automated. Sounds great? It isn't.

I know where it is failing but need support from Google as the issue is on their side, unfortunately the support consists of help pages which don't relate to my issue. I've tried reaching out via Twitter and I've also tried the forums with the usual response to wait or to go to the help pages.

This may be a very small minority who have issues like these where the system isn't there to support but it isn't any the less infuriating. A simple phone number to call or live chat would make this much easier to resolve and adds the human touch.

With chat bots getting more and more undistinguishable from humans and Google Duplex service (check it out - it will blow your mind!), it would be easy to implement a faux human touch with a real support team to pick up the issues.

Luckily I have time on my side and can wait but imagine this was a business trying to get AdSense setup on their new web service they are going to launch and then being the IT person having to explain to the Marketing Director we are waiting for someone on the community member forum to provide assistance and there is no business support.

Whilst this could come across as a rant, I hope Google takes from this and pushes their services with Chat Bots and Duplex to make support for all Google services easy and accessible to all.

Google, please keep up the good work and keep on innovating!

Comments

Popular posts from this blog

Adding a space to your iOS App Name

How to add a space to your display name There is a cap of sorts for iOS applications where once your display name exceeds 12 characters, it will strip any spaces in it. There are a lot of posts on StackOverflow about this, however the missed one small detail on how to edit the value. What we need to do is edit info.plist. You can try this in Xcode but it doesn't work, you need to use another text editor - in my case I used Visual Studio Code. Your directory structure may vary, here I am working on a React Native project. Instead of iOS, your root folder may be your project name.  Go to: build > * Your application name * > edit info.plist The value we want to update is " CFBundleDisplayName ".  Where the space(s) are, we need to replace the space here with:      Your CFBundleDisplayName should then look like this: That is all there is to it! Hope this helps you out.

How to enable the lock screen for your Android Emulator

Here's how: When I was testing and app with media controls, I would press the lock button, once to lock the screen and a second to unlock it which would instantly unlock it and take you to the app.  By setting the option for ‘swipe’ when unlocking the screen (pressing the power button the second time) you are now presented with the lock screen and can swipe/drag the screen upwards to go the application Go to Settings --> Security --> Screen Lock Choose 'Swipe' That's all there is to it!

Xcode - ld: library not found for -lDoubleConversion

Here's how you fix this issue Ran into this with the iOS version of my React Native application, the fix is very quick and easy: We need to disable dead code stripping for our release, this is how to do it: Open XCode and press: Cmd + 1 Click on your project in the left panel Click on "Build Settings" In the "Linking" section, under the "Dead Code Stripping" section, change the setting for "Release" from "Yes" to "No"