Skip to main content

I found this on IPhone forums MTN voicemail setting

I found this here: http://iphoneza.co.za/showthread.php?1129-Voicemail-on-MTN

 Essentially to set the timeout before it goes to voicemail

Dial:
*61*XXX1483XXXXXXX*11*20# 

e.g. if your number is 083-1111111
then dial *61*08314831111111*11*30#

Very usefull 30 seems to be the max.

Comments

Popular posts from this blog

Bitcoin / Cryptocurrency – what is it and how can I benefit

What is it I started investigating Bitcoin when it was worth just over $1000 a bitcoin. I was interested in what it was and how it worked. A lot of people are saying we missed the boat, but I believe that everyone should at least try put a little money in now, or at least use a faucet (see below) to make a little micro-currency. You can read a Wiki article about bitcoin and its history etc. But what you need to know is that it is a currency, that is independent of country. No one really knows who invented the concept of a cryptocurrency since the person who published the paper used a nom de plume. All new cryptocurrencies work more or less the same way as Bitcoin. So as I explain below I interchange these terms. Bitcoin is the original cryptocurrency. How Bitcoin works The currency releases a coin based on a mathematical formula. There will never be more than 21 million bitcoins (other cryptocurrencies do not work like this). Each bitcoin can have divided into one hundred mil

The doomed perpetual quest for happiness and consciousness

We are made so The quest for happiness is doomed. If we are not happy we want to be happy. If we are happy we want to stay happy which is impossible, since you cannot be in that state of happiness forever. Happiness moment are brief. This is the Dukkha of life that the Buddha spoke about. Sometime translated as suffering it is more unsatisfactoriness. In Robert Wrights book “ Why Buddhism is True: The Science and Philosophy of Enlightenment ” he makes a case for the fact that if you wanted to create a system for a being to pursue pleasure the best way to design that being is to make pleasure transient. So the joy of eating a great meal must only last for a short while otherwise we would starve. This means we can only have transient happiness, otherwise we would always be happy. That is why each goal we achieve is only important if we do not achieve it, and once achieved its significance fades, so we can pursue the next goal and pleasure. The problem is that we need to realise

Server.Response vs Request.Redirect

  I have always wondered what the difference was, and finally found out (see below – cut and paste) that the one is recommended for internal pages, the other for external.   I found this at: http://forums.asp.net/p/1456267/3335046.aspx If you read a lot of industry magazines and ASP.NET code samples, you may find that, although the majority use Response.Redirect  to send the user to another page, some seem to prefer the rather mysterious-sounding Server.Transfer . So, what's the difference? Well,  Response.Redirect  simply sends a message down to the browser, telling it to move to another page. So, you may run code like: Response.Redirect("WebForm2.aspx") or Response.Redirect("http://www.quaffee.com/") to send the user to another page. Server.Transfer  is similar in that it sends the user to another page with a statement such as Server.Transfer("WebForm2.aspx") . However, the statement has a number of distinct advantages and disadvantages. Firstly,