Sample Professional Voicemail Greeting

I had to setup voicemail greetings on my mobile phone. I use my mobile phone to receive calls from work and from friends and family.

Voice Mail Greeting 1:

Hi. This is _John Doe_. I am currently unable to take your call. Please leave your name, phone number, and a brief message, and I will get back to you as soon as possible. Thank you.

Voice Mail Greeting 2:

Hi, you’ve reached _John Doe_. from __business name__. Sorry, I’m unable to take your call right now. Please leave your name and number and I’ll be in touch as soon as possible.

Voice Mail Greeting 3:

Hi, you have reached_ John Doe_. At the tone please leave your name, phone number and the purpose of your call. I will return your call as soon as possible. Thank you.

Tip from here: Keep your voice mail greeting simple and professional and it will be suitable for anyone including family and friends. Make sure when you record the message you smile while you are talking to change the emotion in your voice making you sound friendly and happy.

Sybase ASE: How to get a list of Database tables & their corresponding space in kb?

select low / 1024 as "databasehost page size (kb)"
from   master..spt_values
where  number = 1
       and type = 'e';

select 'table' = o.name,
       'size (kb)' = convert(int, sum(reserved_pgs(o.id, i.doampg) +
                     reserved_pgs(o.id, i.ioampg)) *
                     2),
       '# rows' = convert(int, sum(rowcnt(i.doampg)))
from   sysobjects o,
       sysindexes i
where  o.id = i.id
       and o.type = 'u'
group  by o.name
order  by 2 desc;

 

How to map a network drive via command line?

Mapping a network drive on a Microsoft based operating system (Windows XP & Windows 7) via commandline.

net use J: \\computer2\backups
net use J: \\computer2\backups /user:<username> <password>
net use J: \\computer2\backups /user:<domain>\<username> <password>

J – is the drive letter

computer2 – is the computername name. You can use the ipaddress of the computer.

backups – is the shared folder in the computer named ‘computer2′

Hello World: My Third Foray Into Blogging

Welcome to Jamzest; a Software Engineer’s notebook.

I’m Jamleck and I’ve been programming since my first line of code in 1999.

This is my third attempt at starting a blog. Unlike before, I’m doing this for myself. Writing things helps me crystalize my thoughts and remember them. My goal is to create a searchable rolodex of programming tips and tricks for my own reference and yours.

Here you’ll find an assortment of all things programming: scripting languages like PHP and AppleScript; Vb.Net & C# code snippets; HTML and CSS markup;client-side scripting including JQuery and YUI; GUI scripting and automation using autohotkey; “legacy” Powerbuilder coding tips; usability in practice; database design; optimization and coding tips and tricks.

Go ahead and leave a comment or contact me at jamleck at jamleck dot com with questions, tips or thoughts about the site.

Thanks for visiting.