Jump to content

Daniel0

Staff Alumni
  • Posts

    11,885
  • Joined

  • Last visited

Everything posted by Daniel0

  1. Booooooo *throws rotten food*
  2. There is also justfuckinggoogleit.com. The other one is better though.
  3. http://lmgtfy.com/?q=%22facebook+connect%22+site%3Afacebook.com&l=1
  4. For example this link http://www.phpfreaks.com/forums/index.php?showtopic=32746&hl= from http://www.phpfreaks.com/forums/index.php/topic,31047.0.html does not work -- goes to forum index That is because that link is from when we ran the old software a long time ago. Before I was admin, and before I was even a member here.
  5. If you have links for really old topics they won't work. The forum software was changed in mid-2006, so the URIs will have changed at that time.
  6. You can watch the output of top and you can use time to see how long it takes for a task to finish.
  7. I would point you to a blog post I once wrote, but yeah, my host is down Short answer: Not going to happen. Mathematically impossible.
  8. Assuming you're going to use an RDBMS like most people do you'll have to learn a dialect of SQL. You'll need to learn a language for the server side like PHP, Python, Ruby, Java, Perl, C#, etc. On the front end you would need to at minimum learn HTML and CSS, but Javascript would be pretty important as well. Knowledge in OOP and OOD would be a benefit, and knowledge in methodological topics such agile programming as well as either or both of TDD or BDD would help you as well.
  9. Intellectual property laws. Still a crap deal though. In fact I think it's somewhat of an insult even asking for that. I bet they wouldn't ask someone to build three houses and then they'll pick whichever they like best.
  10. What kind of skills do you actually have? I assume you're talking about this. Do you have any experience beyond following that course? If not then I think you'll find it very difficult getting someone to pay you $70,000/year.
  11. Well, they already had MSN/Live search which had a market share. That's redirected to Bing.
  12. Define "doesn't work".
  13. It is possible.
  14. You wouldn't want to do that. It makes RFI attacks really easy (Google it).
  15. If you don't want feedback, don't ask for it. Neither do I. He is 23. Says so on his profile. Besides, what does that have to do with anything? It was pretty damn easy submitting the form without agreeing to your ToS, price acceptance, etc. Just remove the onsubmit attribute on the form.
  16. If nobody responds it's because nobody knows or because you phrased your question poorly. Bumping won't fix any of that. Of course it's all explained in our rules, so you already know that
  17. $mins = 133; $hours = (int) ($mins / 60); $minutes = $mins % 60; echo "{$hours} hours, {$minutes} minutes";
  18. That is part of the new design.
  19. I've been running Vista since it was released and I've never had any issues with it. If you're getting viruses or spyware you're just stupid (see CV's post). It's that simple. The other day I decided to install a spyware checker just for fun. It found one so-called "tracking cookie" from Doubleclick.com or whatever it's called. I don't regard the UAC thing as a valid argument because it can be turned off. Moreover, if you constantly get prompted you're doing something wrong. Normal day-to-day usage shouldn't result in a UAC prompt unless the software you use is poorly written. Next we have memory consumption. I don't know about you guys, but I buy my RAM with the intentions of using it. Unused RAM is wasted RAM. The reason why it uses more RAM than XP is that it caches a lot of things, but it gives it back if other programs need it. Vista got some bad reputation because driver and software vendors were too slow to release upgrades, so in the beginning there was some BSOD issues and software compatibility issues. There was also some confusion about the stickers that were put on computers. Basically, Microsoft had a different opinion than the consumers about what constitutes "working" and being "capable". Those two stickers would mean that it can run the core functionality, but without all the bells and whistles. Only the "certified" computers could do that. When you say that "Microsoft products just plain out sucks", what do you base that on? Vista sucks, but you don't use it. Okay. It sucks because some people shouting loud say so and because it's different and I don't want to adapt. Zune is pretty good, Bing is not too bad either and IE is getting much better. There is not even any competition between MS Office and OO.o as far as I'm concerned. I hear people saying that Visual Studio is a great IDE well, and Windows 7 is generally regarded as a very good and stable OS although it's a only a release candidate. Then there are their research groups out of which come interesting products such as Surface. Yeah, I'd say they suck as well.
  20. You also need to call session_start() on the login page.
  21. Because when setting $_SESSION['user'] = $user, the variable $user is never defined thus it'll always evaluate to FALSE. Also, please take a look at this function (though it is unrelated to this particular problem): mysql_real_escape_string
  22. A regular if statement within the loop should do the trick.
  23. Well, then remove them. You were the person who added it... $msg .= "You have transferred <b>" . number_format($Pamount) . "</b> points to <b>$username</b>.<p />";
  24. $msg .= "You have transferred <b>\"" . number_format($Pamount) . "\"</b> points to <b>$username</b>.<p />"; Like that?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.