Recent content by Xenarchy

  1. X

    Macbooks come with DRM?

    This article was such a sensational piece. No actual content just a fancy title for some traffic.
  2. X

    review my forum

    Some sort of focus perhaps? You have so many freaking topics that there is no way for your userbase to grow. Everyone is going to be so spread out that no one is going to form any real ties to your community. Communities should grow. So start small with just a couple core topics. Make...
  3. X

    Small validation problem (vs. I'm learning xhtml/javascript/css)

    Please do not use capital letters in your html tags IE <IMG SRC="" HEIGHT="" WIDTH="" ALT="" /> as with XHTML these should all be lowercase. Generally accepted way of doing ids and class names is using camel case. thisIsACamelCaseString
  4. X

    Biggest .NET open source project?

    Number of servers/computers/processors/etc.. required to run the code? ;)
  5. X

    mysql on mac

    you could run a dictionary attack or something against your own server.
  6. X

    Hot/Warm Vizio 47" LCD 1080P $1649

    I also have the 37" 1080p vizio ... I love it to death. Works great with my wii at 480p (hd component) and my digital cable (hdmi not idea on the rez, I assume 1080p). If I get an HD dvd player that can do 1080p I'll know for sure, but that wont be for a while now.
  7. X

    Is this site secure? SSL claimed...

    Yeah it doesn't sound too secure. I don't enter any super sensitive information such as my CC number w/o having a valid certificate from a CA i trust.
  8. X

    Is this site secure? SSL claimed...

    i'd throw https in front of the url before I entered any credit card numbers. See if it loads the same page.
  9. X

    Want to learn a new scripting language...

    you obviously haven't ever tried it have you? Support for forms is next to zilch. Sure some apps can run on either. But not consistently.
  10. X

    Want to learn a new scripting language...

    I never asked you to stop. Get off your horse. Secondly c# apps don't run on linux or osx, or any other operating system except windows. So everyone would have to include other operating systems. While I admit that java doesn't alawys run everywhere, it does an ok job.
  11. X

    AJAX compatibility with older browsers?

    I did read your post and I gave you feedback on your problem and potential solution. I'm apologize to you if you didn't like the feedback I gave. I'm sure as you progress you will realize what I said holds water and I wasn't as off base as you think I am.
  12. X

    Want to learn a new scripting language...

    While this last post was uncalled for and the previous one while relevant came across a bit harsh. It still made me laugh to think people post in here just for their post count. Didn't realize this was genmay. Anyway, back to the OP's question. Learning a language really is about problem...
  13. X

    Feedback on our site for Business Professionals of America

    The flash intro almost killed me. I strongly dislike menus with sound. In fact I dislike all sounds that play w/o me telling them to do so. As mentioned above there are a lot of issues with the html. NOTE: Since you are missing your doctype the following errors are only a small set of what...
  14. X

    AJAX compatibility with older browsers?

    While I don't know exactly what problem you are trying to solve. I am gathering that you do not understand enough about javascript to safely implement such a feature. That being said, from my point of view, with as little as i know about your current problem, I would not be using ajax to...
  15. X

    Integrating mile radius into location search

    Or you can do some math :) Since the census data gives you lat and long of each zipcode you can approximate the distance between those two zip codes. R = 3956 miles dlon = lon2 - lon1 dlat = lat2 - lat1 a = (sin(dlat/2))^2 + cos(lat1) * cos(lat2) * (sin(dlon/2))^2 c = 2 * atan2(sqrt(a)...
Back
Top