Slashdot Mirror


User: Wardie

Wardie's activity in the archive.

Stories
0
Comments
10
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 10

  1. Good marketing on Nintendo Revolution Renamed 'Wii' · · Score: 1

    There are thousands of users talking about "Wii" here, job done for the Nintendo marketing team....

  2. Re:Absolutely not on Are National ID Cards a Good Idea? · · Score: 0

    After reading this guys posts, I realise now how foolish I've been. He says: "It's also scary because, since it will be used for EVERYTHING" How could I have been so blind to this evil, yet convinient ploy. But seriously, why does everyone think that having an ID automatically means the state is tracking your every movement? Surely the reasonble use of it will be when you need to prove your identity, when flying, when opening bank accounts etc. It just seems that everyone is getting carried away with paranoia even though they have no previous example to go on. People seem to be making scenarios up and using that as fact. Hate to break it to you folks, the state(s) have a lot of info on your already, from drivers license databases, to tax databases, to birth records, to hospital records - why is this going to be any different? Also, this guys post seems to link the shooting of the Menzezes guy in London to information tracking. The truth of it was that someone fucked up by taking a piss when they were meant to be watching a door and hastilly mistook him for the suspected terrorist who lived in his building. Not sure what the hell that has to do with ID cards...

  3. Death of an industry on RIAA: Ripping CDs to iPod not 'Fair Use' · · Score: 2, Insightful

    I really do think the age of the record company is coming to an end, I would think in 10 years time the concept of buying a small disk with music on it will seem a little bizzare. Musicians will suddenly realise that publishing an album purely on the net means a record company is redundant and thus more $$$ directly for them. I think sites like iTunes will eventually turn into music brokers, dealing directly with the artists. For the bigger artists, promotional activities will just be down to a marketing company, not a record company as such. Anyway, thats my 2 cents, what do i know....

  4. Re:Yeah, right... on Google Adds Chat To Gmail · · Score: 1

    It's a worrying trend that more and more people want to block all ads on sites and web services, as people seem to think they have some right to get stuff for free. Hate to break it to you, but without the ads, great free services like GMail will cease to exist - companies are there to make money, at the point when they are no longer making money off web advertising they will either pull the product or start charging a service fee for it. I know which I would rather have....

  5. Re:"Drive-by"? on Paramount Sues Ohio Man For $100,000 · · Score: 1

    802.11g runs at 54Mbps (theoretically), 802.11b runs at 11. And DSL uploads have nothing to do with as we're talking about copying files from within a wireless LAN, not over the net...

  6. Re:"Drive-by"? on Paramount Sues Ohio Man For $100,000 · · Score: 1

    Last time I checked, a full length DivX encoded movie is about 700-800 MBs, so that should take about 20-30 mins max. Even a full DVD rip is what, about 3 Gigs, that wouldn't take more than 2 Hours to copy across a wireless LAN, where does 12 hours come from?

  7. Re:Decide what you really need on AJAX Applications vs Server Load? · · Score: 1

    Don't use an AJAX call where someone might expect a page refresh.

    Why not?

    I expect to fail a course and die a smelly virgin, but if I pass the final and get laid, I won't complain.


    How about the fact that it breaks the back/forward buttons and means you cannot add the page to favourites/bookmarks. Small issues for some, but could be damn irritating for people who bookmark a page for the bookmark just to resolve back to the original page.

    With that said, it's best to try to cache frequently accessed items in memory (regardless of whether you're doing AJAX calls). ASP.NET does a good job of this

    Sorry, I don't think that's where you should be focussing. Cache frequently accessed items in client memory. In the javascript. Oh, and he's probably not using ASP.NET if he's using MySQL.


    I think you missed his point, Caching would normally be used for application wide data, to save a round-trip to the database if a previous request has fulfilled a similar query. If you store data on the client, you've still got to get the data from somewhere, so it's useful to get it from a server-side cache.

  8. Re:That's the last Sony CD I ever buy on Sony Music CD's Contain Mac DRM Software Too · · Score: 2, Insightful

    I'm amazed at moves like this from Sony, because as this DRM chaos goes on, it's actually EASIER to download music illegally than to buy it on CD. Sony are just alienating their paying customers and pushing them to piracy. Idiots.

  9. Re:Cool! on .Net Framework and Visual Studio Now Available · · Score: 1

    Don't like ViewState? Why don't you just avoid using it?

    Page.EnableViewState = False - not hard dude

    No one forces you, the options there if you want. I think viewstate is a pretty inventive feature.

  10. Re:Should have used XML + XSLT... on Designer on Slashdot Overhaul Plans · · Score: 1

    I think using XML + XSLT is quite an elegant way of seperating content from presentation, but I wouldn't expect my users browser to be able to do XSLT transforms (mobile devices, old browsers etc), so why not just do the transform server side to product XHTML for them?