Adsense

p[lacehoder
placehoolder
Showing posts with label microsoft. Show all posts
Showing posts with label microsoft. Show all posts

Monday, January 10, 2011

How to Get Free Internet on Your iPhone

    There has been loophole that enables you to get free Edge internet acess on your iphone.  please note that this requires a t-mobile sim card.  this has been tested on prepaid and a monthly plan card.  this ONLY enables you to surf the internet, it does not allow external apps like cyadia, google maps,  tom-tom etc, google earth and etc to access the internet.   this only allows you to browse the world wide web.


step 1a) to do this, navigate to settings->general->network->cellular data network. turn on cellular data, then lick "APN" and type in "wap.voicestream.com".  

step 2a) turn on safari or any other browser you have and DO NOT accept the data plan page pops up, instead type in the  address bar "ifailhard.com/tmobile/iphone".  with this site, you can use send free sms text messages or use the proxy to surf any site.

if  you want a quicker and better surfing Experience, then read this:
  You may find that it is annoying to have the data plan page pop up each time and you may also find that the proxy does not load some webpages properly (i.e images not loading correctly or text alignment being messed  up), then use this following method.

step 1b)  download this hacked opera mini browser from here (enjoy the song :D):
http://www.fileserve.com/file/Xvv6bUU

step 2b) extract the rar file, install the opera ipa file (you need Appsync to do this).  first, we will need the internet  for first time time because we need to configure the browser, so turn on wifi and open the app.  go to settings (wrench icon) -> scroll down to advanced ->protocol, change it from socket to http. close the app and turn off the internet,

step 3b) do step 1a above, turn on cellular data, turn on opera browser and you should not longer be bothered by the data plan page and moreover,  you can have a full web surfing experience and won't need to use the proxy site above.

that's it.

The Most Common Mistake in C++ Programming

                After programming c++ for several years, i still make common mistakes that costs alot of time and stress.  Nevertheless, due to my experience, it is easy for me to figure out what this problem is most of the time.   For others who are just beginning c++, they can not afford of luxury of experience, thus they struggle for hours or days to try to find out the error.   Based on my days as a new programmer and on the experiences of several other beginner programmers, the most common but most catastrophic error is not having a return value for non-void functions.

                Most often, people will write functions that have a return value or int or string but in their code body, they do not return anything or sometimes just type “return”:

i.e
int me()
{…….
Return;
}
                This is fatal because even if you do not specify a return value, c++ will automatically and randomly return something of the specified return type.   Now, many people do this and with returns types like ints or floats, errors rarely occur, however, if you specify a function that returns a string and you do not return anything, you will get a lot of undefined errors or most of the time, you will get a seg fault.
http://en.wikipedia.org/wiki/Segmentation_fault
The reason is that a string is basically a array of character, one points to the next, and they take up a chunk of space of main memory.  Now, since you did not specify what string to return, the compiler will automatically return a string of arbitrary size and from and arbitrary location, now due to this randomized event, the compiler might choose a part in memory that is currently being allocated to another program, or event worse, a vital system service.  Thus, the OS intervenes, stops your program, and you get a seg fault.

                So the main theme here is to always return something, have a return value.  If you want your int function to return nothing, then type:
return 0;
if you want your string function to return nothing, then type :
return  “”;

this returns an empty string.   IF YOUR FUNCTIONS HAS A RETURN TYPE, THEN GIVE IT A RETURN VALUE, OTHERWISE  JUST WRITE A VOID FUNCTION!!
Returning values is a habit that you must get into, especially If you are writing large programs and want to minimize headaches.

Video Games are Now a Sport

The Evolution of Competitive Gaming
If you have not been living in a cave for the past 10 years, you will realized that video gaming is serious business nowadays.   It is a serious business that generates serious money.   Much like in real sports, there are stars and heroes whom are looked upon by others with admiration.  Even though, Gaming as sport is still not as popular in the United States (even though it's growing as we speak), in other countries, it has become a huge phenomenon .  In Korea, Thousands of people gather to watch gamers play a game called Starcraft.  These games are broadcast live on TV. Such players get paid $200k plus USD per year.  Most players range from age 16-24.  Though the money is great, the expected career  length of a Korean starcraft player is not very long, nevertheless, if you’re 16  and getting paid more than 100k to play some you love, I’d it is not a bad deal.   Moreover, most of these players are sponsored by big company and some are even recruited as stockbrokers  by companies after their starcraft careers end.


Creating Stars
In the United States, Sport Gaming is rising but has still not reach the point where it is mainstream, nonetheless,  players can still earn up to $100k per tournament.   The big prizes come from big tournaments that hosts FPS games such as Halo and counterstrike.   Fighting game Tournaments on the other hand offer much less cash prizes since these tournaments tend to be more low-key/underground in what seems to be an already underground sport.  However, Fighting games  tourney is more globalized, players all over the world compete in these tourneys and many epic rivalries are formed.  The biggest fighting game tournament in the United States if not the world is “EVO”, which has produced  the most exciting fighting game megastars  and match-ups over the years.  Players  like Daigo and Justin Wong are common names amongst fighting game fans nowadays, Just look at all this video and you, like myself, will believe that all this hype is justified:




The Future of Competitive Gaming
Now many still question if gaming can be considered as sport, since it is just video games.  Others will laugh at it and look down upon it.  Well I offer you this question, before any of the “sports” today are called a sport, what were they?  That’s right, they were just games.  They became a sport when people found out  that they could drive competition to make money.  Look at poker, it is now considered a sport, which shows on ESPN and NBC.  The gist of it is if something has a competitive nature, where one man or team walks out a winner and the other a loser;  where one can make money off of it and others can make money by betting on it, then in my opinion, it has all the rights to become a sport.  Also, it is not like playing a fighting game is easy, it takes coordination, practice and mind games.  If you still think that gaming as a sport is a joke and that’s it’s easy, then I dare you to challenge a professional  Street fighter player and let’s see if you still think the same afterwards.

Marvel vs. Capcom - Cheapest Combo Ever!!!!

     
We all know marvel vs capcom is a broken game, one infinite excuted perfectly and it's all over marvel vs capcom is less a mind game but rather a game of mouse and cat, who will catch someone else with an infinite first? almost every character is able to do an infinite and winning a pro match is a matter of your ability to perfectly excute an infinite or not.  this game is so broken it's not even funny.  Below i have posted a video of what i think is the easiest and cheapest combo in the whole game.




THIS HAS GOT TO BE THE EASIEST AND CHEAPEST COMBO EVER!!
in order to excuted it, press dash+low kick and then mp.  keep repeating until the opponent is dead!
Related Posts Plugin for WordPress, Blogger...