Galaxy S3 won’t connect to Mac using Samsung KIES and USB cable (device will not connect)

So I was trying to connect my wife’s Galaxy S3 to my Mac so I could download all her pics and videos, but was having quite a difficult time getting the phone to connect via USB cable. (NOTE: I am running OSX Lion 10.7.4 and Galaxy S3 has Android 4.1.2)

I tried AirDroid 2 which actually works quite well if you are looking for a wireless solution, however it is very slow if you have a large amount of data to transfer. So seeing as I had to transfer 12GB of data from her phone and I did not have all day to wait for it to transfer, I decided I would try to connect via USB cable to speed up the transfer.

So step one was simply plugging in the phone via USB to my Mac. There is a setting called USB Debugging that needs to be turned ON for this to work and for the Mac to normally recognize an Android device, however trying it both ON and OFF did not make a difference, and my Mac would not recognize the S3.

So next step was to install Samsung KIES on my Mac. After installation I started up KIES and then plugged the S3 into USB cable, and I would get a message from KIES saying “Connecting..” but then about 5 seconds later would get another message saying something like “No response from device” and “Cannot connect.”

So after several hours of Googling, I finally came across the following post which contained the solution in one of the comments:http://playingwithsid.blogspot.ca/2012/03/how-to-solve-samsung-kies-connection.html

SOLUTION:
There is a hidden menu on the S3 called Phone Utils. To access the menu, go to your dial pad and dial *#7284# (star-pound-7-2-8-4-pound).

You will then see another menu option called Qualcomm Options, so click on that, and then change the option to MTP+ADB and save the change. Now try plugging in your S3 to USB again and KIES should now recognize it and connect.

Alternatively, instead of the Qualcomm Options, you might see the UART menu with two options of MODEM or PDA. Try changing it to the other option and then try plugging S3 into USB again and see if it connects. If it still does not connect, switch it back to the original setting.

One more possibility is under Developer Options. To access Developer Options menu in Android 4.3 you need to un-hide it and make it visible. To do this, go to Settings > More > About Device then tap on Build Number seven(7) times and then go back to Settings > More and Developer Options should be visible.

That’s it! Leave a comment and let me know if this helped you out.

FIXING FONTS WITH VALIDATION ERRORS ON MAC

So you are trying to add and install a new font on your Mac (which worked fine on your Windows machine) but it is telling you that “problems may have been found with some fonts during validation” and that “a serious error was found” and “do not use this font“.

Some of the common errors I ran into were:
 ‘post’ table usability
 ‘cmap’ table usability
 ‘name’ table structure
 Duplicate fonts
 System Validation

The solution below is for a specific set of fonts that I needed to use but it should solve the problem for just about any TTF or OTF font that you are trying to use.

The specific problem fonts that I was trying to use are required for use with the Ancient Hebrew Lexicon of the Bible AHLB which is a module for e-Sword. The fonts work fine on Windows but when I used Crossover to install e-Sword on my Mac, the AHLB module would not display its fonts correctly due to errors in the font files which would not allow the Mac to install the fonts properly. The fonts I was having problems with are:
 ancheb.ttf
 bsthebre.ttf
 olbheb.ttf
 semear.ttf
 semlate.ttf
 semmid.ttf
 semmod.ttf

 

QUICK INSTRUCTIONS
For those of you that do not have a very long attention span, here are the quick instructions…

– Download and install CR8 Software Solutions free font editor for Mac (or Windows) called Type Light from here:
OLD LINK: https://www.cr8software.net/typex.html
NEW LINK: https://www.cr8software.net/typelight.html

– Open your problem ttf or otf font in the editor (choose File then Open).

– Choose Font then Rename Font then click RENAME button (without making any changes).

– Save your font (choose File then Save As).

– Try installing the font on your Mac by double-clicking it.

DONE!!

 

DETAILED INSTRUCTIONS

STEP 1
Download the original AHLB fonts from Jeff Benner’s website here:
www.mechanical-translation.org/modules/ahlbfonts.zip

STEP 2
Unzip the files.

STEP 3
Download and install CR8 Software Solutions free font editor for Mac (or Windows) called Type Light from here:
OLD LINK: https://www.cr8software.net/typex.html
NEW LINK: https://www.cr8software.net/typelight.html

STEP 4
Open your problem ttf or otf font in the editor (choose File then Open).

STEP 5
Choose Font then Rename Font.
Make sure all three field names are the identical and have the same name. They should all say the same thing and be the proper name of the font as you want it to appear in your font list. For example when I went to rename the OLBHEB.TTF font, the Family Name and Full Name said OLBHEB but the Sub Family said Regular. So I changed the Sub Family to OLBHEB as well so that all three were the same.

STEP 6
Select Remove All Non-English Entries then click RENAME button and click YES to confirm the changes.

STEP 7
Save your font (choose File then Save As).

STEP 8
Try installing the font on your Mac by double-clicking it.

DONE!!

 

OR THE EASY WAY…
You can download the “fixed for Mac”AHLB fonts here:
ahlbfonts_fixed_for_mac.zip

 

Also here is AHLB.dctx module for e-Sword:
AHLB.dctx.zip

WordPress Cron Job setup with WP-Cron.php

When setting up a cron job for WordPress we need to address a few issues. Do you really need to worry about setting up a separate cron job? Once you set it up, how do you stop it from sending you an email everytime? And once you set it up, how do you stop it from filling up your server with files?

WHY DO YOU NEED A SEPARATE CRON JOB FOR YOUR WORDPRESS SITE?

So the issue is, that by default, everytime somebody views a page on your WordPress site, the wp-cron job is run. This is not really an issue if you have less than 60 page views per hour (or 1 page view per minute). When you have a low traffic site, then there is not much else going on that wp-cron can interfere with. However IF you are getting more that 60 page views per hour, then it can start to become a much bigger issue and really slow your site down.

Lets consider an example where you are a high traffic site getting about 3,000 page views per hour (50 page views per minute). This would mean that wp-cron is being called and run for every single page view, meaning its being called and run 3000 times an hour. What if you get 30,000 page views per hour? Well now it is really interfering and causing a problem.

SETTING UP A CRON JOB

There are a multitude of sites that will teach you how to setup a cron job, so I will not go into all the details here. I will only briefly give you the two methods that you can use with their command line argument that you need.

Disbable wp-cron on page view

Regardless of which method you use, you will need to disable the wp-cron from running everytime somebody views a page on your site. You will need to edit your wp-config.php file and add the following lines at the top of the file. You can actually add them anywhere in the file really, just as long as they are after the  <?php  tag on the first line.

//Disable internal wp-cron function - setup external cron job instead.
define('DISABLE_WP_CRON', true);

Method #1 – WGET (recommended for WordPress)

The preferred way to setup an external cron job for WordPress is to use the WGET method. Make sure you include the --delete-after option otherwise your server will fill up with thousands of files named wp-cron.php.1 , wp-cron.php.2 , etc.

Use this line:
wget --delete-after http://mydomain.com/wp-cron.php

If this method keeps sending you an email everytime it runs, then you can stop the email by sending the output to a file instead with the --output-file option. This will only ever create one small file on your server as it will overwrite itself each time and will therefore not get big.

Use this line:
wget --output-file=cronlog_wp-cron.txt --delete-after http://mydomain.com/wp-cron.php

Method #2 – PHP Command Line Tool

The other method is to use the PHP Command Line tool from the cron. This is usually my preferred way to setup most cron jobs, however this creates an error in the WordPress wp-cron.php file where a require_once fails to load wp-load.php so it is not recommended.

Use this line:
/usr/local/bin/php -f /home/myroot/public_html/wp-cron.php

You may have to ask your web host where the php command line tool is located and adjust the /usr/local/bin/php accordingly. Also, you may have to ask your web host what your /myroot/ should be as well.

And if this method keeps sending you an email everytime it runs, then you can stop the email by sending the output to /dev/null instead.

Use this line:
/usr/local/bin/php -f /home/myroot/public_html/wp-cron.php > /dev/null

 

Please let me know if this was helpful by commenting below.

Best WordPress Plugins

Here is a list of my favorite and what I consider the best wordpress plugins available.

Antispam Bee by Sergej Muller

AVH Extended Categories Widget by Peter van der Does

Bad Behavior by Michael Hampton

Better WP Security by Bit51

Contact Form DB by Michael Simpson

Drop Shadow Boxes by Steven Henty

Fast Secure Contact Form by Mike Challis

Ozh’ Admin Drop Down Menu by Ozh

PC Custom CSS by Peter Coughlin

Show Hide Author by Michael Spyratos

Slideshow by StefanBoonstra

Swerve by MKDO Ltd.

TW Disable Revisions by Igor Vuckovic

TW Recent Posts Widget by Igor Vuckovic

Widget Logic by Alan Trewartha

WP-PluginsUsed by Lester GamerZ Chan

XYZ WP Newsletter by xyzscripts.com

Apple Reviewers Removing Keywords Without Notice from Submitted Apps

In the past when I submitted an iOS App for the App Store, the reviewers would Metadata Reject the app if there was an issue with the keywords. You could then either try and convince them that it should be approved as is, or just remove the keyword and re-submit it for approval.

There have been reports this month (April 2013) that Apps have been getting approved (no rejections), but that keywords have been removed.

If Apple reviewers are now removing keywords from your apps without notifying you, I think this is cause for concern.

Let me know if you have come across this trend or not.

 

WordPress Change Theme CSS in Real-Time

Have you ever wanted to change your WordPress theme CSS in real-time so you can see exactly what your changes are doing as you make them? What about being able to actually apply those changes quickly so you can override the existing CSS of the theme?

Well I found this great post about how to use Firebug add-on for Firefox and the PC Custom CSS plugin for WordPress so you can make live theme changes and apply them almost instantly:
http://wptribe.net/how-to-change-fonts-in-wordpress/

This post saved me a ton of time! Enjoy.

Unused RRSP Contributions confusion

by Anonymous Guest

NOTICE: This is not financial or legal advice. This is for educational purposes only.

My most recent Notice of Assessment from the Canada Revenue Agency (CRA) has left me dazed and confused (well nothing new there)! The assessment includes my RRSP Deduction Limit Statement which, at the very bottom, tells me “You have $6800 (B) of unused RRSP contributions available“.

So I went looking for information about what this really means and it was not easy to find. First of all we need to clarify the CRA’s use of the terms “deduction” and “contribution”. We have several items to consider:

– RRSP deduction limit
– Unused RRSP deduction limit
– RRSP contributions
– Unused RRSP contributions

What is most confusing about the CRA’s Notice of Assessment is that many people will mistake the “unused RRSP contributions” listed at the bottom as being “unused RRSP deductions”. But these unused RRSP contributions are contributions that you actually made in a previous year but did not claim as a deduction against your income, so you can now still use them to reduce your taxable income in a future year.

But be careful because this now reduces your maximum contribution limit. So what you really want to figure out is not what your RRSP Deduction Limit is, but what you RRSP Contribution Limit is, because if you over contribute you will have to pay tax on the excess contributions which defeats the purpose of putting money into an RRSP. Its actually a very simple calculation, so here it is:

RRSP Deduction Limit for current year (A)
MINUS Unused RRSP Contributions for current year (B)
EQUALS Maximum RRSP Contribution you should make for current year.

Simple example:

RRSP Deduction Limit for current year (A) = $16,800

Unused RRSP Contributions for current year (B) = $6,800

Maximum RRSP Contribution you should make for current year = $16,800 – $6,800 = $10,000

So for this example, do not exceed RRSP contributions of $10,000.

Also note (for the example above) that if you do not make any contributions at all to your RRSP for the current year, you can still deduct up to a maximum of $6,800 from your income. Or to say it another way, you can apply the previous Unused RRSP Contributions against your current income even if you did not make any contributions for the current year.

Hope this helps you be less confused.

NOTICE: This is not financial or legal advice. This is for educational purposes only.