8 Reasons You Need an In Home or Remote Computer Cell Phone and Tablet Tutor by J. Richard Kirkham B.Sc. Honolulu Hawaii and all of Oahu text or call 808.224.1870 Text Only Mainland U.S.A. for Remote Lessons and Help

There are several reasons why you may need an in home or remote computer, cell phone and tablet tutor for lessons, troubleshooting and quick fixes.

Aloha! In home computer tutor J. Richard Kirkham B.Sc.

I'm Rick Kirkham, a dual certified teacher turned in home computer tutor specializing in small business and senior citizens here in Honolulu Hawaii covering all of Oahu for house calls, as well as remotely for the English speaking United States.

Reason 8 of When to See Your In Home Computer Tutor and Troubleshooter - It's been four months!

That's right I see my in home computer clients a minimum of every four months to

  • Clean your computer

  • Optimize your computer

  • and check security on their computers, tablets and cell phones

But Rick, I Have Antivirus Software . That Fixes Everything Right?

No. Cleaning and optimization should be done every four months including

  • Removing tracking cookies

  • Deleting temporary internet files

  • Removing bloatware from the computer's memory. Unnecessary programs loading into your computer's memory during startup slows down your computer NOT just on startup, but uses resources to run programs you want to run. These programs will then

    • Run slow
    • Cause videos to buffer
    • and even freeze your computer forcing a hard boot which is bad for your computer.
  • Checking for updates and security

  • As a professional, I'll hear a noise you may ignore but, I may recognize as your fan going out or a problem with the hard drive or SSD. If I stop this process while your computer is working it will save you

    • Money
    • Time
    • Computer files and photos

Reason 7 of When to See Your In Home Computer Tutor and Troubleshooter - Your Computer is Running Slow

If you missed your four month cleaning and optimization, whether as a house call here in Honolulu Hawaii covering all of Oahu or remotely for the English speaking United States, your computer will begin to run slow. Don't be embarrassed about missing your maintenance appointment time. People are busy and it happens once in a while. Just Text me or call, Rick Kirkham, 808.224.1870 to check my availability. I'll take care of everything. Don't worry. By the way U.S.A. mainland text only please due to time differences. We'll talk while I'm taking care of your computer.

This slowing down of your computer will cause extra wear and tear on it actually decreasing the life of the computer. Especially if you have a hard drive and not an SSD which stands for Solid State Drive.

Reason 6 of When to See Your In Home Computer Tutor and Troubleshooter - You've spent your hard-earned time trying to figure something out

This one's obvious. Your time is important and I enjoy teaching and helping people with their computers, cell phones and tablets. Just

  1. Text me or call me

  2. Schedule a time

  3. I'll come over and take care of everything

  4. Relax

Reason 5 of When to See Your In Home Computer Tutor and Troubleshooter - Job training!

That's right. According to those I've helped, it looks good on a resume to have private computer lessons for

Office

Spreadsheets

And other computer job-related skills

Reason 4 of When to See Your In Home Computer Tutor and Troubleshooter - Grandma wants to learn how to use a computer or cell phone

I'm going to try to be gentle when I say this, knowing how to do something, does not mean you know how to teach something in a positive, fun and efficient manner. I'm a trained teacher who later became a computer expert. I still do a lot of substitute teaching and academic in home tutoring for students. If you noticed my photo, you see that I am a senior citizen. I relate well to seniors and they have fun talking their computer lessons.

Save yourself and your senior citizen relative some frustration and call me instead. If you set up the computer, I can even give a remote computer lesson if your senior citizen relative is not on Oahu.

Reason 3 of When to See Your In OFFICE Computer Tutor and Troubleshooter - You or your staff need computer training

If you're in business time is money. This will sound weird but, even if it's a program I'm not familiar with, I'll be able to figure it out and teach you what you need to learn a lot faster than it does for you to figure it out on your own. Makes sense when you think about it. I know something is possible in a program, I just need to figure out how to do it with the UI (user interface).

I recently had that very thing happen with an accounting program an in home computer client needed help with. I showed him how to save time scanning by creating and going into the folder first where he wanted the receipts stored in the software. I'd never used the program before, but I understood how programs like that worked since I've used similar programs. I've seen a followed a lot of changes since 1993.

Reason 2 of When to See Your In Home Computer Tutor and Troubleshooter - You're tired of Windows bad updates

See my article on Linux Mint. The Windows operating system replacement.

Reason 1 of When to See Your In Home Computer Tutor and Troubleshooter - You wrote your five questions down

Hold on I'll explain. Whenever I see in home computer clients who do not want to set up 1 to 3 lessons per week, I tell them to keep a piece of paper by their computer. Whenever they have a problem or question with one of their devices write it down. When the in home computer clients write down 5 questions, it's time to call me for a lesson!

Contact Experienced Dual Certified Teacher and Computer Cell Phone and Tablet Computer Tutor, Trainer, Teacher and Troubleshooter J. Richard Kirkham B.Sc.

Rick Kirkham

Honolulu Hawaii and all of Oahu call or Text me, Rick Kirkham, 808.224.1870 to check my availability. English speaking Mainland U.S.A. text only due to time differences for remote help and lessons.

Useful Linux Mint and Ubuntu Terminal Codes

Learn How to Use Linux, Linux Mint Cinnamon 20 Bootable 8GB USB Flash Drive - Includes Boot Repair and Install Guide

I have only recently begun memorizing useful Linux terminal (command line) codes. Instead of keeping my list of useful terminal codes in Google Drive, I decided to share them with you.

Batch Replacing Text in Multiple Files

Some of these include recursive text replacement in subdirectories. I'm only researching this right now and this is not tested. I am not responsible for damage to your computer or loss of files

The example below uses grep to recursively find files.

grep -rli 'old-word' * | xargs -i@ sed -i 's/old-word/new-word/g' @

Command breakdown

grep -r: --recursive, recursively read all files under each directory.

grep -l: --print-with-matches, prints the name of each file that has a match, instead of printing matching lines.

grep -i: --ignore-case.

xargs: transform the STDIN to arguments, follow this answer.

xargs -i@ ~command contains @~: a placeholder for the argument to be used in a specific position in the ~command~, the @ sign is a placeholder which could replaced by any string.

sed -i: edit files in place, without backups.

sed s/regexp/replacement/: substitute string matching regexp with replacement.

sed s/regexp/replacement/g: global, make the substitution for each match instead of only the first match.

This is the bash script I ended up using

It's a mess but it worked

l#!/bin/bash 

SRC='$url="https://blah"'; 

DST='$url="https:/foo"'; 

find . -type f -name "*.*" -exec sed -i 's,'"$SRC"','"$DST"',' {} ;


find . -type f -exec sed -i 's+https://InHomeComputerHelp.com+https://InHomeComputerHelp.com+g' {} +


find . -type f -exec sed -i 's+https://mobilecomputersupportoahu.com+https://InHomeComputerHelp.com+g' {} 

Updating Linux Mint

sudo apt update && sudo apt upgrade -y

Installing Brave Internet Browser On Linux Mint

  sudo apt install apt-transport-https curl

sudo curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg

echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main"|sudo tee /etc/apt/sources.list.d/brave-browser-release.list

sudo apt update

sudo apt install brave-browser

I just memorized this code and wanted to share. This will make your htdoc folder for XAMPP writeable. I found this as I was working on my first computer-based local website.

sudo chmod 777 -R /opt/lampp/htdocs/

If you're having trouble getting Apache Web Server to start

sudo systemctl stop nginx

I don't remember where I saved these bash commands from. I've seen websites come and go so I tend to save things with copy and paste to my Google Drive. Don't worry though. I use this website for my in home computer, cell phone and tablet tutoring and troubleshooting business. So this website is here to stay. Bookmark it and check back often. Follow me on Twitter to subscribe.

An A-Z Index of the Bash command line for Linux.

alias Create an alias •

apropos Search Help manual pages (man -k)

apt-get Search for and install software packages (Debian/Ubuntu)

aptitude Search for and install software packages (Debian/Ubuntu)

aspell Spell Checker

awk Find and Replace text, database sort/validate/index

b

basename Strip directory and suffix from filenames

bash GNU Bourne-Again SHell

bc Arbitrary precision calculator language

bg Send to background

break Exit from a loop •

builtin Run a shell builtin

bzip2 Compress or decompress named file(s)

c

cal Display a calendar

case Conditionally perform a command

cat Concatenate and print (display) the content of files

cd Change Directory

cfdisk Partition table manipulator for Linux

chgrp Change group ownership

chmod Change access permissions

chown Change file owner and group

chroot Run a command with a different root directory

chkconfig System services (runlevel)

cksum Print CRC checksum and byte counts

clear Clear terminal screen

cmp Compare two files

comm Compare two sorted files line by line

command Run a command - ignoring shell functions •

continue Resume the next iteration of a loop •

cp Copy one or more files to another location

cron Daemon to execute scheduled commands

crontab Schedule a command to run at a later time

csplit Split a file into context-determined pieces

cut Divide a file into several parts

d

date Display or change the date & time

dc Desk Calculator

dd Convert and copy a file, write disk headers, boot records

ddrescue Data recovery tool

declare Declare variables and give them attributes •

df Display free disk space

diff Display the differences between two files

diff3 Show differences among three files

dig DNS lookup

dir Briefly list directory contents

dircolors Colour setup for `ls'

dirname Convert a full pathname to just a path

dirs Display list of remembered directories

dmesg Print kernel & driver messages

du Estimate file space usage

e

echo Display message on screen •

egrep Search file(s) for lines that match an extended expression

eject Eject removable media

enable Enable and disable builtin shell commands •

env Environment variables

ethtool Ethernet card settings

eval Evaluate several commands/arguments

exec Execute a command

exit Exit the shell

expect Automate arbitrary applications accessed over a terminal

expand Convert tabs to spaces

export Set an environment variable

expr Evaluate expressions

f

false Do nothing, unsuccessfully

fdformat Low-level format a floppy disk

fdisk Partition table manipulator for Linux

fg Send job to foreground

fgrep Search file(s) for lines that match a fixed string

file Determine file type

find Search for files that meet a desired criteria

fmt Reformat paragraph text

fold Wrap text to fit a specified width.

for Expand words, and execute commands

format Format disks or tapes

free Display memory usage

fsck File system consistency check and repair

ftp File Transfer Protocol

function Define Function Macros

fuser Identify/kill the process that is accessing a file

g

gawk Find and Replace text within file(s)

getopts Parse positional parameters

grep Search file(s) for lines that match a given pattern

groupadd Add a user security group

groupdel Delete a group

groupmod Modify a group

groups Print group names a user is in

gzip Compress or decompress named file(s)

h

hash Remember the full pathname of a name argument

head Output the first part of file(s)

help Display help for a built-in command •

history Command History

hostname Print or set system name

i

iconv Convert the character set of a file

id Print user and group id's

if Conditionally perform a command

ifconfig Configure a network interface

ifdown Stop a network interface

ifup Start a network interface up

import Capture an X server screen and save the image to file

install Copy files and set attributes

j

jobs List active jobs •

join Join lines on a common field

k

kill Kill a process by specifying its PID

killall Kill processes by name

l

less Display output one screen at a time

let Perform arithmetic on shell variables •

link Create a link to a file

ln Create a symbolic link to a file

local Create variables •

locate Find files

logname Print current login name

logout Exit a login shell •

look Display lines beginning with a given string

lpc Line printer control program

lpr Off line print

lprint Print a file

lprintd Abort a print job

lprintq List the print queue

lprm Remove jobs from the print queue

ls List information about file(s)

lsof List open files

m

make Recompile a group of programs

man Help manual

mkdir Create new folder(s)

mkfifo Make FIFOs (named pipes)

mkisofs Create an hybrid ISO9660/JOLIET/HFS filesystem

mknod Make block or character special files

more Display output one screen at a time

most Browse or page through a text file

mount Mount a file system

mtools Manipulate MS-DOS files

mtr Network diagnostics (traceroute/ping)

mv Move or rename files or directories

mmv Mass Move and rename (files)

n

netstat Networking information

nice Set the priority of a command or job

nl Number lines and write files

nohup Run a command immune to hangups

notify-send Send desktop notifications

nslookup Query Internet name servers interactively

o

open Open a file in its default application

op Operator access

p

passwd Modify a user password

paste Merge lines of files

pathchk Check file name portability

ping Test a network connection

pkill Kill processes by a full or partial name.

popd Restore the previous value of the current directory

pr Prepare files for printing

printcap Printer capability database

printenv Print environment variables

printf Format and print data •

ps Process status

pushd Save and then change the current directory

pv Monitor the progress of data through a pipe

pwd Print Working Directory

q

quota Display disk usage and limits

quotacheck Scan a file system for disk usage

quotactl Set disk quotas

r

ram ram disk device

rar Archive files with compression

rcp Copy files between two machines

read Read a line from standard input •

readarray Read from stdin into an array variable •

readonly Mark variables/functions as readonly

reboot Reboot the system

rename Rename files

renice Alter priority of running processes

remsync Synchronize remote files via email

return Exit a shell function

rev Reverse lines of a file

rm Remove files

rmdir Remove folder(s)

rsync Remote file copy (Synchronize file trees)

s

screen Multiplex terminal, run remote shells via ssh

scp Secure copy (remote file copy)

sdiff Merge two files interactively

sed Stream Editor

select Accept keyboard input

seq Print numeric sequences

set Manipulate shell variables and functions

sftp Secure File Transfer Program

shift Shift positional parameters

shopt Shell Options

shutdown Shutdown or restart linux

sleep Delay for a specified time

slocate Find files

sort Sort text files

source Run commands from a file '.'

split Split a file into fixed-size pieces

ssh Secure Shell client (remote login program)

stat Display file or file system status

strace Trace system calls and signals

su Substitute user identity

sudo Execute a command as another user

sum Print a checksum for a file

suspend Suspend execution of this shell •

sync Synchronize data on disk with memory

t

tail Output the last part of file

tar Store, list or extract files in an archive

tee Redirect output to multiple files

test Evaluate a conditional expression

time Measure Program running time

timeout Run a command with a time limit

times User and system times

touch Change file timestamps

top List processes running on the system

tput Set terminal-dependent capabilities, color, position

traceroute Trace Route to Host

trap Run a command when a signal is set(bourne)

tr Translate, squeeze, and/or delete characters

true Do nothing, successfully

tsort Topological sort

tty Print filename of terminal on stdin

type Describe a command •

u

ulimit Limit user resources •

umask Users file creation mask

umount Unmount a device

unalias Remove an alias •

uname Print system information

unexpand Convert spaces to tabs

uniq Uniquify files

units Convert units from one scale to another

unrar Extract files from a rar archive

unset Remove variable or function names

unshar Unpack shell archive scripts

until Execute commands (until error)

uptime Show uptime

useradd Create new user account

userdel Delete a user account

usermod Modify user account

users List users currently logged in

uuencode Encode a binary file

uudecode Decode a file created by uuencode

v

v Verbosely list directory contents (`ls -l -b')

vdir Verbosely list directory contents (`ls -l -b')

vi Text Editor

vmstat Report virtual memory statistics

w

wait Wait for a process to complete •

watch Execute/display a program periodically

wc Print byte, word, and line counts

whereis Search the user's $path, man pages and source files for a program

which Search the user's $path for a program file

while Execute commands

who Print all usernames currently logged in

whoami Print the current user id and name (`id -un')

wget Retrieve web pages or files via HTTP, HTTPS or FTP

write Send a message to another user

x

xargs Execute utility, passing constructed argument list(s)

xdg-open Open a file or URL in the user's preferred application.

yes Print a string until interrupted

zip Package and compress (archive) files.

. Run a command script in the current shell

!! Run the last command again

### Comment / Remark

Commands marked • are bash built-ins

Many commands particularly the Core Utils are also available under alternate shells (C shell, Korn shell etc).

Speed Up Your Slow Computer. You May Not Need to Buy a New Computer! Honolulu Hawaii and all of Oahu Text or Call Computer Tutor and Troubleshooter J. Richard Kirkham B.Sc. 808.224.1870 English Speaking Mainland U.S.A. Text Only for Remote Computer Help Due to Time Differences

Why is my computer running so slow? It could be a lot of reasons, but 99% of the time a slow computer is software-related. That means you don't need a new computer.

There Could be a LOT of Reasons Why Your Computer is Running Slow.

  • Too many tracking cookies and temporary files will eventually slow down your computer

  • Unwanted programs loading as a service and on startup will slow down your computer

  • Your hard drive is going bad will usually slow down your computer before it crashes

  • Not enough RAM will slow down your computer if you begin running programs that use a lot of resources

Too many tracking cookies and temporary files will eventually slow down your computer

Tracking cookies basically read your internet history. Have you ever noticed if you search for airline tickets after a few websites you start seeing ads for airline tickets? That's what the tracking cookies are doing.

Temporary internet files are little bits of information websites download into your computer. Have you ever noticed when you visit a website for the second time it loads faster? That's what the temp files do. The website basically looks for local information first so it doesn't have to load over the internet thereby speeding up the process of loading the web page.

The slowing down of your computer begins when you get too many temporary internet files and tracking cookies. Each time you visit a website it goes through all the tracking cookies and temp files first before loading.

The backup program I wrote

Is the only one I've seen that removes temporary internet files and cookies before backing up your important files and photos. Helping you to prepare for that day WHEN NOT IF your computer crashes while helping to speed up your computer at the same time.

Unwanted programs loading as a service and on startup will slow down your computer

It seems every program you have wants to load either as a service or on start. If it a program loads as a service that means it's loading before you login. If it loads on start the program loads after you login to your Windows desktop. These programs take up memory (RAM) which is used to run your apps, videos and even operating system (Windows 10, 11 Apple or Linux).

In Windows, you can stop these programs from loading using msconfig, but make sure you know what you're doing in there so you don't turn off something you need. I can help you with that either remotely or, if you're on Oahu, as a house call.

Your hard drive is going bad will usually slow down your computer before it crashes

Your hard drive is what stores your data and your operating system. When, again not if, that crashes you may lose your work files and photos. You have no idea how often I've gotten those sad puppy dog looks from in home computer clients here in Honolulu Hawaii as they explain to me their crashed hard drive has all of their grandkids' irreplaceable unbacked up photos. No pressure right? 99% of the time I'm able to recover their work files and photos for them.

This is especially true for older computers that have hard drives not SSDs. SSD stands for Solid State Drive. They have no moving parts and are faster and more stable than the older hard drives. Here's an . article on how I did a little outside the box thinking and sped up an old Windows 7 computer. Pay close attention to the type of SSD I used.

Buy Deliver Setup and Tutor Computer Service

After recovering my in home computer client's files and photos, they may use my unique Buy Deliver Setup Tutor Service. To my knowledge I'm the only in home computer tutor on Oahu that will actually interview my client, then based on your answers buy a computer for them (I am reiburssed with cash no checks), set it up and give my in home client computer lessons.

Whether I Replace the Hard Drive with an SSD or Setup a New Computer

I always setup Google Drive Backup and Sync. Now called Google Drive Desktop, . This service backs up (actually syncs) your computer files and photos with the Google Drive cloud. This has saved more files and photos of more clients than I can count.

Not enough RAM will slow down your computer if you begin running programs that use a lot of resources

These small computers and full operating system tablets, especially the Surface Tablets are very popular.

RAM stands for Random Access Memory. RAM is different from hard drive memory or storage space. RAM is used to run your programs, videos, which are also run off of programs, your internet browser such as Google Chrome (yes it's also a program) and even the OS (Operating System) itself which is Windows, Apple or Linux.

Okay Rick, So What Happens When I Don't Have Enough RAM?

The program has to wait for RAM to be freed up. A common example of this is buffering when you're watching Netflix or YouTube. That circle you see instead of the video playing is buffering. Other problems, such as slow internet speed or narrow bandwidth can also cause buffering, but we'll focus on RAM.

There Are 3 Solutions to Not Having Enough RAM

  • Remove programs that automatically load with when your computer starts. This also leads to a slow load time of your operating system as well.

  • Add more physical RAM chips to your computer if your computer is capable of taking more.

Most computer ITs would stop here, but no one ever accused me of thinking inside the box. So there is a third solution.

  • Install a different operating system that doesn't take up as many resources as Windows and Apple.

A Different Operating System to Speed Up Your Computer?Sounds Hard to Learn.

Actually Linux Mint looks an awful like like Windows. However, Linux is much more secure and doesn't take up as many resources. Thus freeing up those same resources Windows would use, so you can use the RAM to run programs instead of the operating system. If you read my article on how I did a little outside the box thinking and sped up an old Windows 7 computer, You'll notice I told my computer client he didn't need more RAM because I installed Linux Mint.

I've Switch Over Several Clients to Linux Mint and THEY LOVE IT!

I've switched some in home computer clients from Windows right into Linux Mint from out of the box of a new computer. People spend most of their time online. Once you get into Google Chrome everything is the same as Windows and Apple.

One condo manager was calling me about every 10 days

90% of the problems were due to bad Microsoft updates. The final straw was not being able to use the printer for an important meeting due to a Microsoft Windows update. I backed up all his files and installed Linux Mint. I didn't hear from him for a month and a half and that was just for a question. I saved my client a lot of frustration and money.

If You Want to Install Linux Mint Yourself

The above link leads to a page where you can order a Linux Mint USB drive and directions. It also happens to be an Amazon affiliate link which helps to support my efforts in bringing you information such as this. I thank you for your support.

If you're in Honolulu Hawaii or anywhere on Oahu you're better off Texting me, Rick Kirkham, or calling 808.224.1870 to check my availability.

Contact Me for an Appointment

enter image description here

BEFORE the computer crashes. If you're in Honolulu Hawaii or anywhere on Oahu Text me, Rick Kirkham, or call 808.224.1870 to check my availability. Text only if you're on the mainland U.S.A. due to time differences.

Tuition and Rates

Help is Now Available for Google Drive The Microsoft Office 365 Replacement and Gmail by Remote Computer Tutor and Troubleshooter J. Richard Kirkham B.Sc.

After helping my second remote computer client in the U.S.A. in a row with Google Drive I am making this an official service. As one of the best computer tutors in Honolulu Hawaii covering all of Oahu with house calls, I am now available for the mainland U.S.A. remotely. Text only due to time differences. You and I will make arrangements for a consultation phone call through texting don’t worry. 808.224.1870. Normal charges for texting apply. Hawaii is part of the United States. 808.224.1870

What is Google Drive?

You saw me refer to Google Drive as a Microsoft Office 365 Replacement. Google Drive is a lot more than that and more flexible than Microsoft Office 365. It’s almost impossible for Google Drive to crash, yet we saw just a few days ago Microsoft sent an update which caused its own programs to stop working. Problems continue with Microsoft’s online services and people are beginning to turn their heads toward other office suite and cloud services.

Google Drive Is:

  • A Microsoft compatible office suite

  • A free backup and sync service

  • A cloud storage service offering 15gb (that’s a lot) of online storage

  • A file sharing service

  • A PDF reader

  • A PDF editor using a Google Drive app.

  • A video player

  • A multi-computer and device syncer

  • Draw and import pictures in its Paint like program

  • Through its wide range of apps most of which are free ALMOST ANYTHING ELSE!

What is Gmail?

Where have you been? Just kidding. Gmail is an online email service by Google. The service is free. I was around when Google started this by offering an unheard of at that time gigabyte of email space. At the time I was using Yahoo mail. I woke up to discover my storage capacity in Yahoo had tripled. I looked around Yahoo to make sure I didn’t pay for something I didn’t need. Later a search showed me it was the response to Gmail being born.

  • Gmail can be set up to receive all your emails from all your accounts AND keep them separate when you reply.

  • Gmail attachments can be viewed or saved directly to Google Drive.

  • Gmail attachments stay with the email even when replying

  • Gmail is independent of your ISP (Internet Service Provider). That means when your ISP changes your Gmail address will remain the same.

  • Google Workspace can be set up to manage your email for multiple users in your company.

Now Don’t Get Nervous About The Cloud

I can practically feel the concern of some of my beginning in home computer tutoring clients here on Oahu.

“It’s in something called the cloud. I want it on my computer. I want it printed out.“

It’s okay don’t worry. By using Google Drive’s backup and sync program, now called Google Desktop, we can have everything on your computer as well as having it backed for WHEN not if you’re computer crashes or your hard drive that stores your photos and work files goes bad.

By using the cloud we’re actually protecting your important family photos and work files.

How Much Does Google Drive Cost?

Google Drive is FREE! Up to 15GB of storage space which includes Gmail so be aware of that. 15GB (gigabytes) is more than most people need for backup and cloud storage. Being the power user that I am I’m paying a whole $5.00 per month for 200GB of storage space in Google Drive’s cloud.

I sync three of my computers using Google Drive Backup and Sync and can access my files on any computer or device I wish. I don’t have to be at a particular computer to get a particular file.

What Can You Teach Me Rick?

Anything from setting up your Google account all the way to selecting the correct program to edit a project on which you’re working. Interestingly enough I recently showed a basic computer user who's a contractor how to access his own computer files in Google Drive so he could use the free application he needed to edit his document. I was even able to help him remotely. A service I offer for all English speaking people on the mainland U.S.A..

How Much Do You Charge Rick?

I usually have people pay two hours in advance for computer troubleshooting, but sometimes I only need 15 minutes to show someone how to accomplish his/her task in Google Drive. So I charge $95.00 per hour in 15 minute increments. If you’re a beginner or haven’t begun a task yet I highly recommend you sign up for an hour.

Remote Computer Help 15 minute intervals

Your Time is Your Money

People sometimes spend an entire day trying to figure out a Gmail or Google Drive feature. When they finally contact me 808.224.1870 (text only please mainland U.S.A.) I usually show them what they need within 15 minutes. Make more money throughout the day with your business, help more of your clients by contacting me right away.

Rick Kirkham

ComputerHelp808@gmail.com

Text 808.224.1870

This Little Box Turns Your HDTV into a Windows 10/11 Computer! by in home and remote computer cell phone and tablet tutor and troubleshooter J. Richard Kirkham B.Sc. covering Honolulu Hawaii and all of Oahu and remotely for the English speaking U.S.A. Text or call 808.224.1870

This is so cool. I installed this little box for an in home computer client here in Honolulu Hawaii and turned his HDTV into a Windows 10 computer! Read my review....

Setup Was Pretty Standard for the Mele Fanless Mini PC also called a PC Stick

If you've setup Windows before you can set up the Intel PC Stick. If you haven't and your on Oahu I'll make a housecall and do it for you..

Features I Found on The Mele Fanless Mini PC also called a PC Stick

I liked it! I don't see new things very often doing what I do, but this is perfect for an end computer user that needs a big screen and has little space.

The pc stick fit right in my hand. I'd say was about six inches long and 2.5 inches across. That's without looking at the specs.

It had two usb ports.

I used one of those usb ports to plug in a wireless keyboard and wireless mouse. When you buy a wireless mouse and keyboard together you general only need one usb adapter to plug into the computer.

An Ethernet Port

Hold on let me explain what an ethernet port is. An ethernet port is a port you'll find on desktop computers and still some laptops that allow you plug in cable internet. I was happily surprised to see this feature on such a small computer.

The PC Stick Plugs Into an HDMI Port

The Mele Fanless Mini PC even comes with an HDMI cord in case of tight fits. The HDMI port is what you plug the PC stick into in order for the HDTV to act as a giant monitor. The giant monitor makes this perfect for senior citizens and other people with vision challenges.

I personally have two senior citizen in-home computer tutoring clients with macular degeneration. The larger screen makes it easy to see the text and images. Computer users with full size computers with vision problems do not give up hope. I selected This computer monitor for one of my vision challenged computer tutoring clients.

The Mele Fanless Mini PC Comes with a Power Cord

I was surprised a USB power option wasn't available, but plug your power cord into the small slot of your PC Stick which is a USB C port. Then plug the other end into any regular electric socket or better yet, a surge protected power strip

Storage for The PC Stick

It will hold around 128GB of files, photos and videos. However, I suggest doing most of your work in Google Drive. Don't worry, I can help you with your Gmail and Google Drive. This computer along with all other computers and devices will eventually crash. If you have your work and photos stored in the cloud (Google Drive), they'll be safe from the pending crash.

Options When Your Purchase The Mele Fanless Mini PC

Your basic option is 4 GB of RAM or 8 GB of RAM. RAM stands for Random Access Memory. It's the memory used to run both your programs, games, videos while at the same time running the operating system (Windows 10 or 11) itself.

If you're just going to check email and surf the internet 4 GB is fine. Games and videos I highly recommend 8 GB of RAM. If you're going to use your PC Stick for business I also suggest 8 GB of RAM.

How I Got Into The Computer from The Remote

Make sure the PC Stick is turned on. It's a rectangular button along the side. It's hard to see but you can tell it's a button due to line surrounding the button so it can be pushed down.

Every remote and HDTV is going to be different. In this case I used the back out button, which looks like a half-circle with an arrow pointed left, to take me out of the TV menu straight into Windows. Believe me when I tell you, the TV manufacturers do not want thing to be difficult to use. They want you to keep buying them and recommending them.

Thanks Rick But My HDTV Already Has Internet Browsing Capabilities

So does my in home computer tutoring client's! However he wanted to sign up for an online class and the browser built into the HDTV was not supported!

My Recommendation?

The Mele Fanless Mini PC also called a PC Stick

is perfect for any person or business who needs to sav space and the advantage of a full computer operating system. The big HDTV screen is perfect for senior citizens and anyone else with vision challenges.

I went into settings and made everything larger, text and images, for at least two of my senior citizen in home computer tutoring clients here on Oahu.

I highly recommend The Mele Fanless Mini PC also called a PC Stick

For Lessons Contact

enter image description here

In Home, Onsite and Remote Cell Phone Tablet and Computer Lessons Training and Troubleshooting for Businesses and Senior Citizens For Honolulu Hawaii and All of Oahu Text me, Rick Kirkham, 808.224.1870 to check my availability.

Mainland U.S.A. Text Only for Remote Lessons and Troubleshooting Due to Time Differences

https://MobileComputerSupportOahu.com/

Want to support my efforts?

Some of these links may be affiliate links which give me a small commission when you purchase. They cost you nothing to click on and check out and nothing extra when you order.

Thank you for your support!

Aloha,

Rick

Google Slide Show - How to Have 2 Separate Active Google Chrome Profiles by In home and remote computer, cell phone and tablet tutor Rick Kirkham Honolulu Hawaii an all of Oahu Text or call 808.224.1870

Many of my in home computer tutoring clients use the same profile of their computer. This lead to problems and sometimes arguments about checking gmail accounts on Google Chrome, bookmarks and other customizable features.

Important Links for This Computer Tip


In Home, Onsite and Remote Cell Phone Tablet and Computer Lessons Training and Troubleshooting for Businesses and Senior Citizens For Honolulu Hawaii and All of Oahu Text or Call 808.224.0870 Mainland U.S.A. Text Only for Remote Lessons and Troubleshooting Due to Time Differences

https://InHomeComputerHelp.com/


The Big Plain English Computer Cell Phone and Tablet Help and Tips eBook

By in home and remote computer cell phone and tablet tutor and troubleshooter J. Richard Kirkham of Honolulu Hawaii covering all of Oahu and the mainland U.S.A. Text 808.224.1870 for computer help or download this tell all secrets computer cell phone and tablet tips and help eBook which even contains links to computer video tutorials created by Mr. Kirkham himself!
https://InHomeComputerHelp.com/computerhelpebook/


Senior Specialty In Home Computer Lessons and Computer Setup Oahu Call or Text 224-1870

https://www.mobilecomputersupportoahu.com/computerlessonsseniors/


Help is Now Available for Google Drive The Microsoft Office 365 Replacement and Gmail by Remote Computer Tutor and Troubleshooter J. Richard Kirkham B.Sc.

https://InHomeComputerHelp.com/googledrivehelp/


How to Keep Your Computer Files and Photos Safe in The 21st Century


Your cloud backup such as Google Drive, Dropbox and if you’re using Office 365, OneDrive is NOT enough to keep your files safe and secure any longer! Cloud backup will help save your files when your computer crashes, BUT it won’t help if many of the modern viruses infect your computer such as the Ransomware Encryption Virus.
https://InHomeComputerHelp.com/safecomputerbackups/


EXACT USB Touchpad Recommended by Rick Kirkham for Computer Users with Dexterity Issues

https://InHomeComputerHelp.com/touchpad/


Wireless keyboard/touchpad solution I use myself

https://InHomeComputerHelp.com/wirelesskeyboardandtouchpad/


Voice Dictation Software to Help with Dexterity Issues

https://InHomeComputerHelp.com/voicedictation/


Legal Statement


Communists hate the fact that some of these links are affiliate links which help support my efforts to bring important information such as this to you. These affiliate links cost you nothing to click.
Thank you for your support!
Rick
J. Richard Kirkham B.Sc.
https://InHomeComputerHelp.com

How to Run a Windows XP Computer for Old Programs and Games WITHOUT The Computer EVER Breaking Down by in home computer tutor and troubleshooter J. Richard Kirkham B.Sc. Honolulu Hawaii and all of Oahu text or call 808.224.1870. Mainland U.S.A. text only due to time differences.

Finding everything online to run old Windows XP programs is very time consuming on the internet. After spending 8 hours dealing with dead links and 404 pages I finally gathered everything needed to run Windows XP WITH internet access virtually inside a Windows 10 computer. As a teacher turned computer tutor I made a very simple-to-follow downloadable instruction manual and slideshow WITH links to STORED FILES. If you need a virtual XP machine to run programs and games this downloadable manual is for you!

What Happened?

enter image description here

I recently had an in home computer client in Honolulu who depended on an old DOS Windows 32bit XP computer program for the stock market. He had initially called me to ask if I could keep the old Windows XP computers he had working for the next 10 or 20 years.

I told my new in home computer client I could not make them last 10 or 20 years but,

I replied, “There Is a way to make the Windows XP computer last forever!”

enter image description here

I then explained to my computer client I could make a virtual Windows XP machine using his Windows 10 computer. As long as he keeps his files backed up, when it’s time for a new computer, we just restore the virtual Windows XP computer and files and he keeps running XP and his XP programs for as long as he wants to!

  • Are you using old Windows XP software?

  • Do you like playing old classic computer games that won’t run on Windows 10?

  • A virtual Windows XP computer is your solution!.

But Rick, I don’t know anything about making a virtual computer. Can you help me?

enter image description here

Yes I can help you in three different ways.

I can install the software you need either as a house call here on Oahu. Honolu

I can help remotely for any English speaking person on the mainland U.S.A.

As one of the only dual-certified teachers turned in home and remote computer tutor and troubleshooter, you can download my picture driven, assume nothing slide show and downloadable manual.

This downloadable manual and slideshow contain downloads to all the files I spent HOURS searching for online. It’s not that easy to find working XP ISOs with product keys and software drivers to even make sure you can get on the internet. BUT, I found them, put them in online storage and made them downloadable so the same thing that happened to me wouldn’t happen to you.

It Was Frustrating

enter image description here

I’d find a site that supposedly had the software I needed to get windows XP running and the page would be missing or the software wouldn’t be available any longer. As a martial artist, a businessman, and an in home tutor specializing in ADHD since I have ADHD, I don’t like to quit. That character attribute will now benefit you with this package I created.

Sounds Great Rick! What is The Investment?

enter image description here

For Honolulu Hawaii and all of Oahu I’ll make a house or business call. My rate is $95.00 per hour. It could take up to two hours to set up. Honolulu Hawaii and all of Oahu call or Text me, Rick Kirkham, 808.224.1870 to check my availability.

For the English speaking mainland U.S.A. I can help you remotely at the same rate. Follow these instructions to seek remote help and prepay for two hours.

For those that cannot afford my one on one services. I wanted to make this affordable despite the 8 hours I spent in frustration searching for what I needed. I wanted to and will eventually charge $19.00 for the downloadable manual and slideshow. After talking to a fellow teacher, I decided for $19.00 I might spend the extra time trying to do this myself if I were an end computer user. I wanted to help and share my hard-earned information.

Therefore, for a limited time, the entire downloadable manual WITH stored downloadable links is only $19.00 $9.00!

Be sure to Subscribe by Following ComputerHelpHi on Twitter

Order This 27 inch Computer Monitor for Visually Impaired Computer Users If You're On a Budget

One of my latest senior citizen in home computer tutoring clients here in Kailua Hawaii on Oahu has trouble seeing both the screen and the keyboard due to macular degeneration. I recommended this reduced price 27 inch PC monitor so we can make her text and images larger without losing quality.

QHD screens otherwise known as WQHD, are noticeably sharper than Full HD (FHD) aka 1080p resolution (1920 x 1080) models, which are much more common and also cheaper than QHD displays. This higher resolution also makes going to screens larger than 27 inches without seeing individual pixels more feasible when shopping for a PC monitor. However, with laptops, a QHD screen will eat up more battery than a FHD display. My in home computer tutoring client here on Oahu has a desktop computer so battery length is not a factor.

ViewSonic VA2719-2K-SMHD 27 Inch IPS 2K 1440p LED Monitor with Ultra-Thin Bezels, HDMI and DisplayPort Inputs for Home and Office

If it's in your budget I recommend This excellent and clear 27 in the monitor which will give you even better definition.

My in home senior citizen computer tutoring client is also experiencing some dexterity issues. If you know any computer uses with dexterity issues see my article/Google Slideshow on

Senior Computer Users with Dexterity Issues. Here's What to Do....

Contact Dual Certified Teacher and Computer Expert J. Richard Kirkham B.Sc. for in home computer lessons for senior citizens and small business owners. enter image description here

In Home, Onsite and Remote Cell Phone Tablet and Computer Lessons Training and Troubleshooting for Businesses and Senior Citizens For Honolulu Hawaii and All of Oahu Text or Call 808.224.0870 Mainland U.S.A. Text Only for Remote Lessons and Troubleshooting Due to Time Differences

https://mobilecomputersupportoahu.com/

Some of these links are affiliate links which help to support my efforts to bring you information such as this. They cost you nothing extra and absolutely nothing to click on and checkout. Thank you for your support.

Order This 27 inch Computer Monitor for Visually Impaired Computer Users

One of my latest senior citizen in home computer tutoring clients here in Kailua Hawaii on Oahu has trouble seeing both the screen and the keyboard due to macular degeneration.

I recommend this 27 inch Acer computer monitor. QHD screens otherwise known as WQHD, are noticeably sharper than Full HD (FHD) aka 1080p resolution (1920 x 1080) models, which are much more common and also cheaper than QHD displays. This higher resolution also makes going to screens larger than 27 inches without seeing individual pixels more feasible when shopping for a PC monitor. However, with laptops, a QHD screen will eat up more battery than a FHD display. My in home computer tutoring client here on Oahu has a desktop computer so battery length is not a factor.

Acer Predator XB271HU bmiprz 27" WQHD (2560x1440) NVIDIA G-SYNC IPS Monitor, (Display Port & HDMI Port, 144Hz), Black

My in home senior citizen computer tutoring client is also experiencing some dexterity issues. If you know any computer uses with dexterity issues see my article/Google Slideshow on

Senior Computer Users with Dexterity Issues. Here's What to Do....

Contact Dual Certified Teacher and Computer Expert J. Richard Kirkham B.Sc. for in home computer lessons for senior citizens and small business owners. enter image description here

In Home, Onsite and Remote Cell Phone Tablet and Computer Lessons Training and Troubleshooting for Businesses and Senior Citizens For Honolulu Hawaii and All of Oahu Text or Call 808.224.0870 Mainland U.S.A. Text Only for Remote Lessons and Troubleshooting Due to Time Differences

https://mobilecomputersupportoahu.com/

Some of these links are affiliate links which help to support my efforts to bring you information such as this. They cost you nothing extra and absolutely nothing to click on and checkout. Thank you for your support.

Order This PC Keyboard for Visually Impaired Computer Users

One of my latest senior citizen in home computer tutoring clients here in Honolulu Hawaii has trouble seeing both the screen and the keyboard due to macular degeneration.

I recommended this keyboard to her. She was very excited to even know such a keyboard for visually challenged people even existed.

Order this high contrast large lettered keyboard for your friends and relatives who have trouble seeing the keyboard

My in home senior citizen computer tutoring client is also experiencing some dexterity issues. If you know any computer uses with dexterity issues see my article/Google Slideshow on

Senior Computer Users with Dexterity Issues. Here's What to Do....

Contact Dual Certified Teacher and Computer Expert J. Richard Kirkham B.Sc. for in home computer lessons for senior citizens and small business owners.

In Home, Onsite and Remote Cell Phone Tablet and Computer Lessons Training and Troubleshooting for Businesses and Senior Citizens For Honolulu Hawaii and All of Oahu Text or Call 808.224.0870 Mainland U.S.A. Text Only for Remote Lessons and Troubleshooting Due to Time Differences

https://mobilecomputersupportoahu.com/

Some of these links are affiliate links which help to support my efforts to bring you information such as this. They cost you nothing extra and absolutely nothing to click on and checkout. Thank you for your support.