Slashdot Mirror


User: loz

loz's activity in the archive.

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

Comments · 41

  1. Re:Neato! on Harddrive Speakers · · Score: 2, Funny

    hehehe, Afrodot, news for idiots.

    http://www.afrotechmods.com/groovy/takeover/afro do t.jpg

    loz

  2. IPv6 on Analysis of New Internet Wiretap Laws · · Score: 1

    soon we'll have IPv6 where we'll be communicating securely by default. Is the US going to forbid the deployment of IPv6?

  3. Reasons to buy new hardware on When Your Hardware Isn't Obsolete Soon Enough · · Score: 2

    Your PC may be fine, but you are probably going to spend the $2000 dollars every 3 three years nevertheless, only this time on other sorts of hardware:

    - Wireless LAN basestations
    - You'll swap your PC for a faster laptop
    - Multitude of wireless devices (PDA's, WebPad's, internet enabled wristwatches, 3G/4G mobile phones, etc., etc.)
    - Faster modems to connect to the internet (paid per month)

    In essense, the killer app is not some software product, but it's the wireless internet.

    Microsoft has long recognized this, that's why .Net, Hailstorm, Windows CE, and why you see Microsoft is leaving Intel (e.g. no support for HomeRF, nor for USB in Windows XP). Microsoft now rather goes to bed with Sony, Philips, Panasonic, Nokia, etc.

    yo
    loz

  4. Re:satellite competition on Wireless Net Access in Your Car · · Score: 1

    Rereading the article I now think this is not going to hurt the satelitte companies at all. Instead of $50 a month, these companies will ask $10 a month. So you'll get a lot more for a lot less money.

    Loz

  5. satellite competition on Wireless Net Access in Your Car · · Score: 1

    This is certainly going to hurt the billions put into the satellite companies Sirius and XMRS. That is: as long you drive only within the boundaries of a city. As soon as you're driving outside you probably need the signals coming from the satelittes. Loz

  6. I'm willing to buy on Information Doesn't Want To Be Free; People Want It · · Score: 1

    I'm willing to buy commercial music, but I do not have a turntable nor a CD player. I do have a computer. So, record companies out there: are you able to sell me your stuff? No? Oh well, then I guess you leave me other choice than me using Napster. Loz

  7. Re:Stored Procedures On A Database on What Are Good Web Coding Practices? · · Score: 1
    I would rather add another webserver than increase the workload on the database server.

    Loz

  8. Re:ASP and databases on What Are Good Web Coding Practices? · · Score: 2
    Don't use Session variables, ever, they'll kill performance and give you scalability problems.

    I find programming ASP and databases a doddle: what I do is have my own include file inc_ado.asp which contains only the ADO constants I ever use (which is only about 5 to 10% of the original adovbs.inc file), and then add one extra constant which contains the DNS-less connection string to the database, e.g.:

    Const DB_ROOT = "driver={SQL Server};server=db.my-domain.com;uid=myuser;pwd=myp wd;database=mydatabase"

    Make sure that connection pooling is on! (see the links below to find out how to do that.. it's a registry setting, as simple as that).

    Then open the database connection as late as possible, and close as early as possible, and use adOpenForwardOnly whenever possible, because it's by far the fastest cursor (there's only about 5% of the cases where I have to use adOpenStatic in order to be able to jump to the end and walk backwards). E.g.:

    Dim rs
    Set rs = Server.CreateObject("ADODB.Recordset")
    rs.Open query, DB_ROOT, adOpenForwardOnly
    [ ... ] ' do your stuff
    rs.Close
    Set rs = Nothing

    With Windows 2000 / IIS 5 there are also quite a few parameters within the properties of a website that can have dramatic effects on the performance: the most important one is to make sure you've got "Enable client side script debugging" turned OFF. Having it turned on will have your website run in single-thread mode which is extremely crap in a live environment.

    Optimizing ASP: a very good link is here, also worthy to note are here, here, here, here, here and here.

    Loz

  9. Re:Some techniques on What Are Good Web Coding Practices? · · Score: 1
    .. and buffering has to ON.

    In IIS 5 this is now the default.

    Loz

  10. Re:Some techniques on What Are Good Web Coding Practices? · · Score: 1
    re 4th bullet: Witin IIS 5 all ASP scripts can be cached so that they are ready in optimized form. I've not looked closly enough into PHP/Zend, but I'll bet the same is or will be possible with that combination.

    re XHTML: you're hyping this. Anyone who writes HTML which will have a browser re-render the layout several times will probably write it in the same way in XHTML. No difference there. Pages written in XHTML will not be better than pages written in HTML. They are better prepared for future browsers and business applications, that's true.

    loz

  11. Re:.US - now why doesn't anyone use that??? on "TV" TLD Sells For $50 Million · · Score: 1

    and never mind that the real huge boost came out of CERN.

  12. Re:.US - now why doesn't anyone use that??? on "TV" TLD Sells For $50 Million · · Score: 1

    That's not the point is it? Those co-called "inventors" were strangly narrow-minded to begin with.

  13. Re:Within a few years, Europe will pass America! on The Internet is America-centric, But for How Long · · Score: 1

    Freedom in the US? only 2% of the world's population lives in the US, but 25% of the world's prisoners are in US jails. .. the US even can make a buck out of their jail system, that's why they need as many prisoners as they can get. loz

  14. Bill Joy fear of death on Why The Future Doesn't Need Us · · Score: 1
    "My personal experience suggests we tend to overestimate our design abilities." -- Bill Joy

    I'm suprised he didn't take this any further. In order to create intelligent/sentient machines you need to be one hell of a designer. Current neural networks are badly understood and badly performing even on supercomputers. My own estimations say that in 30 years the chances of having sentient machines is an absolute zero.

    A far more plausible route will be that human beings will physically merge with their own technology, with simple machines. Actually, that is already common practice, e.g. pacemakers that keep your heart beating. To be honest I'm awaiting the mobile phone that will be subdermally implanted in my ear (I expect this within 5 years). I also believe in nanobots that will circulate through your bloodveins continuosly scanning for virusses and other "enemies". There are numerous other examples where human beings will merge will their own technology. I'm not afraid of that future. Life is about change.

    Lawrence

  15. Re:What would change everything is ... on UK to get 100kbps+ over cellular phones in June · · Score: 1

    Okay, so how much would the equipment cost me?rough estimate?

  16. Re:It's "Window Manager", not "Windows Manager" on Linux is Window Manager's Product of the Year · · Score: 1

    It's not even a Window Manager. Window Maker is an example of a Window Manager. Linux is "just" an operating system.