Slashdot Mirror


User: petermgreen

petermgreen's activity in the archive.

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

Comments · 10,783

  1. Re:12V, 5V on A PC Case with External Power Supply? · · Score: 1

    but unlike previous smartphones, this seems to do some USB neogitation before it starts to charge
    in other words they actually followed the USB spec ;)

  2. Re:Or not? on Give Mac Explorer to the People? · · Score: 1

    and worst of all (especially for sites like wikis) it doesn't support unicode editing.

    a relatively mild example of a page getting wrecked by IE mac before mediawiki implemented a workaround. i saw far worse breakage but finding it now is likely to be very tricky.

  3. Re:What's the real lesson here? on Windows XP Flaw 'Extremely Serious' · · Score: 1

    who is in charge of enforcing the bounds checking is not really the programmers concern unless the programmer is doing advanced stuff like sandboxing untrusted java bytecode.

    the java language is always used in the java environment and the java environment provided bounds checking. C (and most other conventional languages) cannot be compiled for use in the java environment without seriously changing the language or using very dirty tricks.

  4. Re:What's the real lesson here? on Windows XP Flaw 'Extremely Serious' · · Score: 1

    To the CPU its all instructions, it doesn't care if its issued by the crt or the java_vm.
    that is indeed true but the vast majority of security holes are caused by programmer screwups. Languages like java simply don't let the programmer write arbitary memory by running off the end of arrays.

    i'm not saying java apps can't be insecure but i am saying there is a whole class of hole thats easy peasy to create in C and virtually impossible to create in languages like java.

  5. Re:What's the real lesson here? on Windows XP Flaw 'Extremely Serious' · · Score: 1

    also opensource actually helps against buffer overflows as apps built on different setups are likely to have different adresses making it very hard to make one exploit that works against all builds.

  6. a little question on cards on Windows XP Flaw 'Extremely Serious' · · Score: 1

    visa/mastercard etc presumablly have branches in different countries. Can say the US branch of visa/mastercard stop payments from us cards to ukranian merchants?

  7. Re:Having Sony on your Side... on Is the Dell/Microsoft Alliance Fracturing? · · Score: 1

    iirc at least in the uk you could digitially copy from CD to minidisk and from a minidisk recorded from analog to another minidisk but not from cd to minidisk to minidisk or analog to minidisk to minidisk to minidisk

    so it was an annoyance but an analog minidisk-minidisk copy was still far higher quality than a tape-tape copy

  8. Re:Linux is Easier to Install on Is the Dell/Microsoft Alliance Fracturing? · · Score: 1

    Last month, I saw a couple of expert techs fail to upgrade a lab to XP SP2 after spending most of a day at it.

    what is your definition of expert here?

    why aren't all the apps running a standard image?

    were they idiotic enough to be trying to upgrade the existing installs along with any shitware students managed to add rather than just re-imaging

    were the issues caused by specialist third party software that wouldn't run on linux in the first place?

  9. Re:Sure on Is the Dell/Microsoft Alliance Fracturing? · · Score: 1

    likely because they have to supply something to meet an agreement they have with ms and freedos was the smallest free thing they could think of.

  10. Re:Microsoft Tax on Is the Dell/Microsoft Alliance Fracturing? · · Score: 1

    what the installation media will install on is irrelevent here what matters is what the XP corporate license they have allows the holder to do.

    i know the standard academic license for windows is upgrade/downgrade only. I belive corporate is the same but i'm not positive and i'm finding it hard to find out from microsofts site.

  11. Re:Hype? on Departure Of The Java Hyper-Enthusiasts? · · Score: 1

    note: this is written by a brit usians should replace "6th form collage" by "last two years of high school" and possiblly "university" by "collage"

    its certainly a possible approach but whilst a cronological approach is a nice idea in some ways i think it would be rather dull to study the same thing every day and would also amke it much easier to get left behind if you were struggling with something.

    once you decide you are going to run modules in paralell then in any subject that requires programming (cs eee etc) you are going to have to teach people programming in a way that gets them reasonablly competent at it fast.

    its just like when you learn maths pre-university you learn quite a bit by rote and even the proofs you do aren't exactly rigourous. Those who go on to study mathematics will learn how to prove it all properly later but at the early levels gaining competance is far more important than learning the why.

  12. Re:6 Minutes on Glimpses of How it's made, 6 Minute Manufacturing · · Score: 1

    when you work in a factory you presumablly see a tiny part of it day in day out.

    with a video they can lead you through the (often reasonablly interesting) process spending only enough time looking at each section to see whats going on. discovery (at least here in the uk) have been doing shows like this under the name (how its made) for ages.

  13. Re:So, what's it like? on Ruby Off the Rails · · Score: 1

    if you don't need to maintain a public interface is there any reason not to just use the fields directly and only change them into getters/setters if you need to add a sideeffect given that modern ides (at least eclipse) make doing that change painless?

  14. Re:mod parent down, please on Learning Java or C# as a Next Language? · · Score: 1

    I believe java owes to a lot more people than just the Sun guys...
    indeed but they control the standard implementation of the standard library which leaves a choice between being at suns mercy and dealing with a buggy/incomplete clone (the hugeness of javas standard library makes life rather hard for the cloners).

  15. Re:Pick what fits your personality on Learning Java or C# as a Next Language? · · Score: 1

    can't they just use something like

    try { //code that can throw exceptions goes here
    } catch (exception e) {
        if (e instanceof RuntimeException) {
            throw (RuntimeException)e;
        } else {
            throw new RuntimeException(e);
        }
    }

  16. Re:C# Is My Choice By Far on Learning Java or C# as a Next Language? · · Score: 1

    doesn't managed C++ have abilities to interact with normal C++ libs that the other .net languages lack? i thought that was the main reason for keeping C++ arround into .net!

  17. Re:Why not meta-moderate? on Wikipedia Semi-Protection Begins · · Score: 1

    trouble is its the immediacy of wikipedia that encourages legitimate editing in the first place.

    whats imo needed long term is a split of "wikipedia stable" and "wikipedia current" this has been talked about for a long time but its a lot of work and they never seem to get round to actually statring doing it.

  18. Re:Java - Duh. on Learning Java or C# as a Next Language? · · Score: 1

    an immutable string is safe to pass arround in the knowlage that some other bit of code won't mutate it behind your back.

    with mutable strings you either need to trust the code that passed it to you (which is generally bad design due to mistakes even if all the code is in some sense trusted) not to touch the string or copy it as soon as you are passed it (which can be expensive).

    however for some stuff mutable strings are nessacery to avoid huge ammounts of copying when actually doing heavy processing on the data.

  19. rar changes a lot on Symantec Confirms AV Library Flaw, Promises Patch · · Score: 1

    and whilst there is official unrar source (under a nasty don't compete with our compressor type license) availible last i checked it was not up to date with current versions of the rar format.

  20. it doesn't really matter. on Learning Java or C# as a Next Language? · · Score: 1

    afaict the differences between them are just in the standard libs and some of the syntaic sugar. So whichever one you learn i'd imagine picking up the other will be pretty easy.

  21. Re:Who gives a shit on Symantec Confirms AV Library Flaw, Promises Patch · · Score: 1

    i've occasionally been sent legitimate files by friends as rars but the truth is the main place where rar is seen is indeed warez.

    who would wan't to release legitimate software in a form that can only be read by a single companies nagware tool when there are free alternatives arround that often give better compression? (pirates don't care because they can just crack winrar itself).

  22. Re:You know what this means - on Symantec Confirms AV Library Flaw, Promises Patch · · Score: 1

    several reasons

    1: avg is free to use for home users (and small buisnesses can probablly get away with using it too even though they aren't supposed to)

    2: most large corps probablly already have an antivirus contract.

    so the only demand would be from users who run windows but don't wan't to use any other closed source software.

    also afaict getting good detection rates accross a wide range of virus types is hard as is hooking into windows to do realtime scanning clam seems to mainly be used as a mailscanner is its virus db really any good for other types of virus?

  23. Re:Hype? on Departure Of The Java Hyper-Enthusiasts? · · Score: 1

    can't say i agree as soon as you wanted to do something even a little unusual with vcl it got in your way, huge ammounts of stuff were declared private often requiring copying huge chunks of vcl code (which would also mean license issues if you planned to release your source) to get what you wanted done.

    the delphi ide was very good for making guis quickly and the language was totally uncrippled but vcl was pretty nasty really.

    and you had to go direct to winapi for stuff as simple as running another application.

  24. Re:What about on How Would You Design a Captcha for the Deaf-Blind? · · Score: 1

    someone has already pointed out the problem of multiple choice but even if you find a way arround that you still have the problem that if you can't autogenerate tests the spammer can just compile a complete test list.

  25. Re:A phone number on How Would You Design a Captcha for the Deaf-Blind? · · Score: 1

    so what happens when spambots start calling that number and trying to convince the operator to give them accounts?