Recent content by GetTriggerUnit-

  1. GetTriggerUnit-

    How to allow Unity3D to communicate with mySQL

    This is considered deprecated my many php developers. It does the job but it's a very old API. There are much more interesting functions with mysqli or pdo, for instance multi query / stored procedures.
  2. GetTriggerUnit-

    How to allow Unity3D to communicate with mySQL

    Make sure you use mysqli or pdo, because the basic php mysql api is deprecated.
  3. GetTriggerUnit-

    Java String Uppercase

    It's an issue because it depends on the keyboard mapping you're using. For instance, I'm using Canadian French which means shift + 2 gives ". It wouldn't on let's say Canadian English... Anyway, I would use a 2D char array like this: final char[][] MAP = new char...
  4. GetTriggerUnit-

    General More Americans Continue to Accept Creationism Than Evolution

    The percentage of Americans who believe God created humans in their present form within the last 10,000 years is about the same as it was 30 years ago, a new survey indicates. Today, 46 percent of Americans accept this creationist explanation for human existence, a negligible change from the 44...
  5. GetTriggerUnit-

    League of Legends Client?

    If I recall correctly, iLol is recognized by League of Legends. They don't build it but they accept it.
  6. GetTriggerUnit-

    Report Study finds TV can decrease self-esteem in children, except white boys

    As racist as it can seem, there's probably less black, asian or arab people on television than white people. When none of the models you see look like you, to who can you compare? My interpretation.
  7. GetTriggerUnit-

    Tips and Tricks in order to improve!

    Hey, I just felt like I could share some tricks and tips in order to improve to the game. I'm not a pro player, just a regular player that love the game. I learn everyday about the game and I have no doubt that I get better and better everyday. I follow the competitive scene and the community...
  8. GetTriggerUnit-

    Guide - Jungle Nautilus

    Jungle Nautilus - SBSTP Hello! For all your fellow League of Legends amateurs this is my jungle Nautilus guide. Short Intro Right now, I would consider Nautilus as "over powered". This big guy has a ton of crowd control. Firstly, his passive makes it that when Nautilus attacks a target, he...
  9. GetTriggerUnit-

    Wordpress, sub-domains and UNIX file permissions..

    Hum, you might want to ask there, it's like stackoverflow, but for servers. http://serverfault.com/
  10. GetTriggerUnit-

    Wordpress, sub-domains and UNIX file permissions..

    I'm not 100% sure but you should try putting Options +Indexes FollowSymLinks +ExecCGI AllowOverride AuthConfig FileInfo Order allow,deny Allow from all in the .htaccess file in the directory.
  11. GetTriggerUnit-

    Wordpress, sub-domains and UNIX file permissions..

    I would think that this is not a UNIX error but an Apache error. It seems like the configuration for the folder it wrong, this could help you http://www.cyberciti.biz/faq/apache-403-forbidden-error-and-solution/ (the e) point)
  12. GetTriggerUnit-

    C++ Tutorial: Strings and C-Strings

    I'm a bit lost with C-String. You say they must be initialized like an array, isn't there a way to initialize with quotes like char* a = "I like trains.";
  13. GetTriggerUnit-

    C++ Tutorial: Conditions and Loops

    I would be really interested on a tutorial which explains how to handle unicode/utf8 in C/C++.
  14. GetTriggerUnit-

    Mobile Application Architecture - Suggestions and Criticism

    Yes this is true. I forgot you are using a VPS.
  15. GetTriggerUnit-

    Mobile Application Architecture - Suggestions and Criticism

    Personally, I think you should stick with PHP. As you said, its connection with MySQL is alluring and you can get the same performances, and probably better ones with PHP, if used properly (opcode caching, data caching with memcached or files). I also think that on a smaller scale, PHP will take...
Top