How to make GPG4Win portable app

Lately I been using PGP more and more… and I wanted to have my portable application on a flash drive where I could carry all of the private and public keys (of course that if I loose my flash drive, I am at risk – I know that). But, there is really not good documentation that walks through a first time user on how to accomplish this.  So, here is my attempt to those first time users on how to do it.

  1. You need a Windows machine (physical or virtual)
  2. Download Gpg4Win -> http://www.gpg4win.org/
    In my case, I tested this with version 2.2.4
  3. When installing Gpg4Win, make sure that you have enable all of these options
    GnuPG 2.0.27
    Kleopatra 2.2.0-git945878c
    GPA 0.9.7
    GpgOL 1.2.1
    GpgEX 1.0.1
    Claws Mail 3.9.1
    Kompendium (de) 3.0.0
    Compendium (en) 3.0.0
  4. Once you are done with the installation, then you can run the following command in order to make your own Gpg4Win portable application.  Keep in mind that you can go two different routes.  Full or Lite.  In my example, I will show you how to have it fully loaded.
  5. Open command prompt (CLI)
  6. cd to the path where GPG4Win is located
    If you use the defaults it will be at “C:\Program Files (x86)\GNU\GnuPG\”
  7. Run “mkportable.exe –full –verbose TARGETDIR”
    where TARGETDIR in this case will be “E:\gpg4winapp”
  8. Then once the program runs, you will be able to open Kleopatra and there you have it
  9. Enjoy!!!

How to make a call from your cellphone using Google Voice

Google voice has been out for quite a while now. There are pros and cons, just like everything else, but I think that one of the benefits about this system is that allows you to make calls without the Google Voice software. This means that you will not need an app installed on your iPhone or Android device. In order to do this, you will need to have your settings on your Google Voice account setup correctly.

Setup

  1. https://support.google.com/voice/answer/115113
  2. https://support.google.com/voice/answer/117523?hl=en
  3. https://www.google.com/voice#phones

Once you have followed all of those instructions then you are ready to use Google voice on your phone without the application. All you will need to do is to dial the following from your phone… 1235556666,,2,9998887777#

  • Where “1235556666” is your Google voice number
  • AND “,,2,” will tell your Google voice number that you would like to dial out.  NOTE: If you have voicemails, this might not work as smooth.
  • AND “9998887777#” is the phone number that you would like to dial out.

At this point the receiver (the person who you are calling) will get Google voice number as the caller ID and you will be using Google voice number to place your call.

Streaming movies and music from iTunes to iPad to iPhone

Not until today that I found the right article to be able o stream from my iTunes to any of my apple devices.  Previously any time that I tried to make such a research, I found a bunch of apps that you would need to pay for and do some configuration on your PC or Mac.  Well, the article below will go over that you can do such a sharing for free by just using Apple “Home Sharing”.  … and let me tell you, it works slick!!! I was able even to stream my >15k songs to my devices :).

  1. First things first… enable iTunes Home Sharing on your PC so open iTunes
  2. Go to File “Home Sharing” -> “Turn On Home Sharing”
    Login with your Apple ID and password to identify your Home Shares
    With your Apple ID entered, click on “Create Home Share”
  3. Now let’s configure your devices….
  4. Go to “General” -> “Videos and scroll down and login with your Apple ID and password
  5. Open the Video app on the device.
  6. Then your shared library will show up 🙂
  7. Click on that library and you will be able to see all of your videos.
  8. Then click on the video that you would like to watch and enjoy

I’ve tested the steps form 5 through 9 using the Music app as well from my device.  The only difference is is that you would have to click on “More” to make the switch from sharing library to local library on the device.

I am Therefore iPad: Home Share iTunes Movies to iPad.

TrackThePack Shutting Down

Unfortunate news 🙁 … last night I received the following communication below, stating that the famous packaging tracking system will be shutting down.  I’ve been a fan of TrackThePack since it came out, and I think it definitely helped me tracking all the packages into one place.

Hi there,

I’m bummed to be writing this email, but here we are.

As of March 31, 2013, TrackThePack (Personal, Pro and Commercial versions) will be shut down.

That means no more packages will be trackable and our servers will be unreachable on that date. 🙁

Nearly 7 years ago, what started as me scratching my own itch for a toy business I was running, has turned in to an incredibly useful tool that’s touched the internet lives of ten’s of thousands of users and millions of packages. Unfortunately, the economics of it all just don’t add up for us from a business perspective

Alternatives for tracking all of your packages in one place:
Slice (what I’ve switched to)
Fara

I appreciate all of you giving TrackThePack a go over the years and taking the time to use and provide feedback.

If you have any questions at all, please don’t hesitate to reply to this email and ask. I’m still here to help.

Josh Pigford
@Shpigford

Try the other versions and I hope that you get the same if not a better experience.

Microsoft Outlook.com to Replace Hotmail, Microsoft Throws $30 Million into Outlook.com Marketing, Including Attack on Google Gmail Advertising

Things are changing!!!  How many of you like changes? Probably not that many, right?  Microsoft has decided to actually migrate their Hotmail infrastructure to Outlook Web.  Not to confuse the Outlook native application.

Microsoft Outlook.com to Replace Hotmail, Microsoft Throws $30 Million into Outlook.com Marketing, Including Attack on Google Gmail Advertising – ABC News.

How to access XAMPP from external address – HTTP and MySQL

Assuming that your internal firewall is open (this is not the right thing to do BTW). you can open a connection from any IP address to your XAMPP server.  This small tutorial will take you through the changes that you will need to do in order to be able to access XAMPP host and MySQL remotely.

for Apache go to the following line “c:\xampp\apache\conf\extra\httpd-xampp.conf” and do a search for “<LocationMatch”.  Once you find it, make a change to the “Deny from all” to have a # in front of it.  See code below.

 <LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))">
 Order deny,allow
#Deny from all
 Allow from ::1 127.0.0.0/8
 ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var

Now the next thing is to fix MySQL
Once you find the “my.cnf/my.ini” file, open it up and find the line that has “[mysqld]”.  Under that set of line add skip-name-resolve.  This should fix the issue.  Note that once you enable this, you might have some issues if you are trying to login on MyPHPAdmin.  See code for example.

# The MySQL server
[mysqld]
port= 3306
socket= "C:/xampp/mysql/mysql.sock"
basedir="C:/xampp/mysql" 
tmpdir="C:/xampp/tmp" 
datadir="C:/xampp/mysql/data"
pid_file="mysql.pid"
skip-external-locking
key_buffer = 16M
max_allowed_packet = 1M
table_cache = 64
sort_buffer_size = 512K
net_buffer_length = 8K
read_buffer_size = 256K
read_rnd_buffer_size = 512K
myisam_sort_buffer_size = 8M
log_error="mysql_error.log"
skip-name-resolve

Sources:
Apache Friends Support Forum • View topic – How to access XAMPP from external adress
XAMPP MySQL Server Remote Access
MySQL: Can’t get hostname for your address

Microsoft Office 2008 Database Problem – The macosxhints Forums

If you ever have issues when re-installing office on your mac by getting this error

There is a problem with the Office database

Office might be unable to access the database or the database file might be damaged. Without the database, you might be unable to use the Address Book, Scrapbook, and other features that store your personal information.

To rebuild the database, open Microsoft Office 2008/Office, and then open the Microsoft Database Utility. For more information, open the Database Utility application, and on the Help menu, click Database Utility Help.

The section below will help you solve it!!!

Deleting “Main Identity” only did not help me. Here is how I solved
it:
1- Deleted “Microsoft User Data” folder under Documents
2- Deleted all com.microsoft.* under ~/Library/Preferences
3- Deleted Microsoft folder under ~/Library/Preferences
I then re-ran Office Setup Assistant, and problem solved.

via Microsoft Office 2008 Database Problem – The macosxhints Forums.

Android Lost

Have you ever lost/misplace your phone?  Well, now is the time where there is an awesome app that you can use to remotely control your phone.  When I say remotely, I really mean it.  So far I have tested almost all of its features and it works pretty slick!!!

  • Read SMS’es
  • Remote control alarm
  • View on map
  • Send SMS’es from your PC
  • Lock the phone
  • Wipe the phone
  • Pop up messages on the phone
  • Forward your calls
  • No battery use
  • No pre installation required
  • Read status
  • SMS commands
  • Erase SD card
  • SIM card changed
  • Hidden SMS
  • Call list
  • Camera
  • Tablets
  • Text to speech
  • Multiple phones on the same account
  • Browse content

Android Lost.