Search results

  1. Ecko

    Show DevBest I need feedbacks on my first website :)

    This isn't a website, it's a screenshot
  2. Ecko

    How to setup xcache

    Why would you use xcache over APC
  3. Ecko

    Dear iPhone 6 users, welcome to 2012!

    Google gets huge amounts of traffic because its the largest search engine in the world. Apple has nothing to do with that fact. Google is not 'codependent' on Apple whatsoever. If Apple didn't exist, then do you somehow believe that Google wouldn't either? Google's revenue doesn't come from...
  4. Ecko

    Dear iPhone 6 users, welcome to 2012!

    How can the hardware go over its limits? You say Android users can't afford an iPhone, then go and complain about the cheap phones that run an older version of Android. Makes complete sense. If you're gonna compare them, you compare the flagship phones (ie - iPhone vs Nexus). Also, being able to...
  5. Ecko

    Dear iPhone 6 users, welcome to 2012!

    The Nexus 4 (and 5) has wireless charging...
  6. Ecko

    Win a sub!

    Answer
  7. Ecko

    Show DevBest [Python] SMS/Email Bomber

    Don't try to play dumb Not to mention, using 99% of email 'bombers' is ridiculously stupid. You'll end up getting your (or your mail server's) IP address blacklisted and any competent admin can stop them this within minutes.
  8. Ecko

    Show DevBest [Python] SMS/Email Bomber

    Or get the source code from where you took it from: http://code.google.com/p/maxbomber/downloads/list Literally the same variables used.
  9. Ecko

    What to learn next?

    You said you only learned a bit, which leads to the question on why you wouldn't want to extend your knowledge on the language. Perl is always a good language to learn, especially if you want to get into system administration. It also helps to know it when developing in Java/C/C++, as it is...
  10. Ecko

    Allowed memory size error??? I don't know why its doing this ~_~

    Now increase max_execution_time None of these are proper fixes for fixing your script though Using ini_set is not a way to improve portability. Most hosts block you from modifying php.ini settings like that (most should be using suPHP now and allow you to use custom php.ini files on a per...
  11. Ecko

    Allowed memory size error??? I don't know why its doing this ~_~

    Depends on the web environment, but it's always better to change the value in php.ini
  12. Ecko

    Allowed memory size error??? I don't know why its doing this ~_~

    It's trying to use more memory than his PHP configuration is allowing him. Also you don't really know anything so that's not saying much.
  13. Ecko

    Allowed memory size error??? I don't know why its doing this ~_~

    Yeah, write a better script
  14. Ecko

    Allowed memory size error??? I don't know why its doing this ~_~

    Increase memory_limit in php.ini
  15. Ecko

    What to learn next?

    Python can be computer programming.. same with Perl. They don't have to be used exclusively for web development
  16. Ecko

    Speedtest Challange

    Wow su cool to use data center to showoff: If you want, I can have my friend at Level3 show you 3tbps+ speeds
  17. Ecko

    Show DevBest [PHP] Random String Generator

    Or even better: function generateRandomString($length = 10) { return substr(str_shuffle(md5(time())), 0, $length); } echo generateRandomString(); But if you want to make it truly random, use /dev/urandom for Unix based systems
  18. Ecko

    Show DevBest [PHP] Random String Generator

    Adding/removing characters would be done exactly the same... Or can just put it as a function: function generateRandomString($length = 10) { return substr(str_shuffle("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$"), 0, $length); } echo generateRandomString()...
  19. Ecko

    Show DevBest [PHP] Random String Generator

    All it takes is one line: echo substr(str_shuffle('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$'), 0, 10);
  20. Ecko

    Why wont domain change?

    Flush your DNS cache DNS propagation can take up to 48 hours http://leafdns.com/index.cgi?testid=1F1AC294 Does the A record match the IP address in your cPanel?
Top