Slashdot Mirror


User: Philip_the_physicist

Philip_the_physicist's activity in the archive.

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

Comments · 556

  1. Re:There's got to be a better way... on Finland To Legalize Use of Unsecured Wi-Fi · · Score: 1

    I'd say a better analogy is trespassing: If you have a garden with no fence and I decide to walk across it, that's perfectly allowed unless you see me and tell me to leave, or put up a keep out sign. If you put up a fence, even if it is one I can just jump over (WEP), then I'm not allowed to wander around, and I'm not allowed to do any damage even if there is no fence.

    (IANAL, and I'm not from .US)

  2. Re:Somebody fill me in here on Australian Gov't Seeks To Record Citizens' Web Histories · · Score: 2, Informative

    He's got some facts, mixed up with a lot of bull. Adelaide does have a few important marginals, but the Family First Party (Protestant right, Australia's version of the Christian lobby) are most popular in safe Labor seats, where they are still far less popular than the Liberals (centre-right to almost FFP, with a very few classical liberals), and the Greens (centre-left to far-left, although the parliamentary party is more moderate than the members) are more popular than the FFP, and tend to get a significant protest vote.

    Also, the worst Senator of them all, Sen. Fielding, is a Victorian FFP senator, who has long been in favour f the filter

  3. Re:Okay... on Australian Gov't Seeks To Record Citizens' Web Histories · · Score: 1

    A 5-way security indicator would be good:

    1. HTTPS with an EV certificate - maybe dark green?
    2. HTTPS with an ordinary CA certificate - light green
    3. HTTPS with a self-signed cert, possibly also a CA certificate for a higher level domain but not valid for that domain (just example.com, not *.example.com) or a CA cert which is expired - yellow
    4. HTTP - white
    5. HTTPS with a completely invalid key, or a self-signed key which has changed since the last access to that site (perhaps with an exception when the old cert expired) - red, with a warning

    (of course, the colours should actually be taken from the OS theme and preferences colours, if there any appropriate colours)

  4. Re:Okay... on Australian Gov't Seeks To Record Citizens' Web Histories · · Score: 1

    As for Conroy, this is an election year and it's looking like it could be a relatively close contest, so he could be gone in as little as six months. We live in hope.

    He's unlikely to go, unless his state branch and his faction decide to drop their support of him, since he was fairly high up the Labor list (for foreigners: the Senate uses PR to elect the Senators for each state). However, there is a fair chance that Labor will lose the next election, although even if Andrew Bolt's (a right-wing columnist) comment that all Labor have to spin on is pointing at Abbot (the opposition leader) and going "look at him" is correct, that's still a pretty sound argument in their favour. As one piece of doggerel that I've seen scrawled on many walls around the place ends:

    Take them away, both in a hearse,
    Rudd's bad, but Abbott's worse

    which seems to be a fairly popular opinion.

  5. Re:Okay... on Australian Gov't Seeks To Record Citizens' Web Histories · · Score: 1

    There was a rumour going around a couple of months back that he had suggested that the Great Barrier Filter should MITM HTTPS traffic. I expect he was told that the banks would be very unhappy if he banned encryption, and someone explained the idea of MITMing secure traffic, and then he forgot the part where they told him that that was almost as bad and the banks wouldn't like that either.

    I never managed to find a source for that, but it is unfortunately rather plausible,

  6. Re:Depends... on New LLVM Debugger Subproject Already Faster Than GDB · · Score: 1

    There is a project called FatELF: http://icculus.org/fatelf/
    LLVM IR wouldn't be a valid internal format, but only because it hasn't got an ELF machine type (AFAIK, anyway), and the loader would probably need to be patched to run it in the appropriate VM if there is no native version available, but that shouldn't be too hard.

    Another useful, although far more difficult, project would be a VM which uses (a probably modified version of) LLVM IR, combined with a security wrapper around POSIX library calls, to produce an alternative to Mono/CLR, JVM, and so on, but usable with virtually all languages.

  7. Re:Broken? More like fixed. on J. P. Barlow — Internet Has Broken the Political System · · Score: 1

    A state would be able to secede, but allow all US citizens to freely enter, settle in, and then vote in thier new country. However, as soon as they have done this, the US constitution no longer applies to them, so 5 minutes later they can change their constitution removing those parts.

    I think the way to do it would be

    1. amend the state's constitution so that it can re-define what it is to be a citizen of that state, but not actually change the definition in any way. This is legal because it doesn't change the privileges or immunities of citizens of the United States, but it cannot yet be applied in a way which would do so. The state may also need to amend the rules for amending its constitution.
    2. secede, ensuring that all US laws are carried over (this is the hardest part), including the 14th amendment. This is legal, because secession is allowed provided the 14th amendment isn't violated.
    3. amend the new country's constitution to remove the 14th amendment. This is allowed because any amendment can be removed with another amendment.
    4. change the citizenship laws using the powers granted in step 1, which is now legal because the 14th amendment is gone.
  8. Re:Broken? More like fixed. on J. P. Barlow — Internet Has Broken the Political System · · Score: 3, Insightful

    The states had the right to secede (whether they still do is an interesting but irrelevant argument), and the Confederate states did so legally. The primary reason was not slavery, but protectionist laws which benefited the industrial north but which made farming (especially of cotton, but also other products) far less profitable (incidentally harming European interests, especially the British cotton industry).

    The slavery issue was mainly raised to make Anglo-French military involvement more politically difficult (and it succeeded), but slaves in the north were not freed until later (the Emancipation Proclamation only applied to secessionist states).

    Now, you can argue that Lincoln could declare war on the CSA as with any other war, and even that the war was a good thing, but using military force to prevent a state seceding was definitely anti-Constitutional, as was arresting the Maryland state legislature so they could not secede.

  9. Re:Seems odd... on GCC Moving To Use C++ Instead of C · · Score: 1

    I think we might be talking at cross purposes here: AIUI, GGP suggested that a C++ to C translator could be written in a macro language, which would require a front-end (C++ -> C -> internal tree -> asm -> binary). For basic C++ this would be fairly straightforward, but doing things like template expansion robustly would be slightly tricky at best (although C++'s rules about space around the angle brackets would make this far easier to do than with, say, java's rules).

    If I were trying to translate a C++ program to C, I would use one void* per thread (for the object being thrown) and then setjump at the start of the try block, and if it is the first execution, enter the try block. When an exception is thrown, we can assign the thrown object to the pointer, and longjump. The second time we arrive at the start of our try block, we are sent to the catch block.

  10. Re:Seems odd... on GCC Moving To Use C++ Instead of C · · Score: 3, Interesting

    If they used an early enough variant of C++, they would be relatively straightforward, since that has already been done once (cfront), but templates would probably make things somewhat harder, and would probably require a decent macro language. If they want some of teh nicer-sounding features of C++0a, things might start getting very horrible quite quickly.

  11. Re:free but not cheap on Where Do You Go When Google Locks You Out? · · Score: 1

    I would assume they do, to reduce the problems anti-deeplinking scripts cause, especially for images where using them is more common..

  12. Re:Feel empathy for the students and their debt on Students Show a Dramatic Drop In Empathy · · Score: 1

    I think he means you can turn up and study without enrolling for the first half, not that you don't have to turn up. Of course, a lot of places (I don't know about German universities) don't require you to turn up to lectures, or sometimes even tutorials, although not doing so is of course rather foolish.

    This is pretty much equivalent to being able to drop our without penalty or record for the first half of the course.

  13. Re:How about... on Ofcom Unveils Anti-Piracy Policy For UK ISPs · · Score: 1

    No, the actual damage to the rights-holder is far less than the MSRP, because that's adding in the retailer's mark-up, the wholesaler's mark-up, and the rights-holder's marginal production costs (if the band holds the rights for music, that would probably be $0), not just the marginal profit and the proportion of the fixed costs which would have been paid by that copy. It might even be possible to argue that the actual damages were less, because you would not have bought it if you could not pirate it (I know that's true in some cases, but it would be hard (and probably pointless) to argue), which brings the actual damages down to quite a small amount per copy (for an MP3 rip of a song, the damages would be considerably less than $1 per song, since the iTunes price is obviously profitable). Then there is the fact that unless you had a very large collection, the damages would be less than the limit for the small claims court, so they would not be able to bury you in legal fees either.

    This is the situation in Australia, (although Sen. Conroy has said he wants to change the law) and there are still plenty of record shops (my local mall has I think two record shops, and the nearest big one has 3 record shops and 2 DVD retailers, as well as 2 big retailers), so piracy can't be doing that much harm to the recording industry.

  14. Re:Piracy clarification on Ofcom Unveils Anti-Piracy Policy For UK ISPs · · Score: 1

    Yeah, that's a tactic which has worked very well for everyone who has tried it.

  15. Re:don't say you weren't warned: on Breakthroughs In HTML Audio Via Manipulation With JavaScript · · Score: 1

    Python already has a DOM manipulation library (in fact, I think it has 2 or 3 which could be used in the normal distribution), the problem is browser support. If browsers don't use it, then web devs can't use it.

  16. Re:Bidirectional text (5:erocS) on Sony Unveils Flexible OLED Thinner Than a Hair · · Score: 1

    They could just append a LRO character to each post, which is a relatively small overhead, especially as it could be added as the page is generated, so they won't even have to store it.

  17. Re:80m? Quite a hair. on Sony Unveils Flexible OLED Thinner Than a Hair · · Score: 1

    Well, if they juts wanted to fix the sillyness which has been blamed for the introduction of unicode-mangling, they could just add a left-to-right override at the end of each post. That way, people would still be able to, for example, post arabic quotes, but they wouldn't be able to break anyone else's comments.

    I suspect there are other "fun" things one can do with unicode, but they probably wouldn't be much harder to fix.

  18. Re:Even Windows for free would have replaced Solar on Bill Joy On Sun, Microsoft, Open Source, and Creativity · · Score: 1

    He didn't say they didn't come from commercial research, after all, anyone in a CS-related field would know of the contributions from Bell Labs and Xerox PARC. After all, there are probably millions of CRUD apps in use, but almost none of them can be described as particularly innovative, but the underlying technology (produced in either commercial or academic research labs, largely by people with PhDs), is. Certainly there are innovations which pop up in non-research software departments, or elsewhere (the Web, for example), but there is less innovation there.

  19. Re:Examples not transferable - TM violate = jailti on The Fashion Industry As a Model For IP Reform · · Score: 1

    I think his idea was that companies which use a steam-like UI to provide software in a manner which would have previously been considered piracy (possibly for a price, possibly with malware or just ads in the download system's gui). I suspect he's right, but people would still see the benefit of buying what we think of as legitimate copies (especially with the sort of marketing power organisations like the BSA have). How many do I don't know, but I suspect a large proportion of the home users who buy legitimate software do so because it is safer and because you get patches, not because they are afraid of being sued. Also, abolishing copyright wouldn't prevent companies using DRM to make it hard to use copies which did not come from them.

    Businesses would be more affected by abolishing copyright, since they are generally interested in using many copies of the same software, but a site-licence could still be implemented using either a pre-sale contract, or by making use of the reason no one ever got fired for buying IBM: support and buck-passing. If you are using "pirate" copies, you lose that, and have to handle any DRM they chose to throw at you, and probably get no patches, so your system is likely to be very insecure after a short time.

  20. Re:Don't care about Copyright? on The Fashion Industry As a Model For IP Reform · · Score: 1

    You could probably replace most consumer EULAs with sale-time contracts, where the purchaser is required to sign a contract before they get the software. The contract could probably be somewhat similar to an NDA, except with usage restrictions on the software as well. The only difficulty I see is where software is bought by one person for another.

  21. Re:I didn't know Nero AG had time for this on Nero Files Antitrust Complaint Against MPEG-LA · · Score: 1

    Some friends of mine were looking into selling USB drives embedded in silicone wristbands for a university club, and they found they could make a small profit if they sold 4GB ones at US$8.50 (converted from money), bought in a pack of 200 from the manufacturer. USB thumb drives aren't as cheap as the ancestor thinks, but there would be room for a pretty good discount on a large purchase.

  22. Re:Ass Monkies on Large Irish ISP To Enact "Three Strikes" Rule For Copyright Violation · · Score: 1

    If they're trying to encourage corporate growth, they might even be going about it the wrong way. IIRC, in about 1999, a Liberal-aligned (for the rest of the world, this means conservative) think-tank released a report which showed that, ignoring the sanctions which would probably be imposed, Australia would, as a whole, have a better balance of trade and higher economic growth if they abandoned copyright altogether(and other countries did so reciprocally). Their conclusion was essentially that the only economic reason for having copyright in Australia was that they would be punished by the US if they didn't.

  23. Re:Chemistry teaching in Britain on In UK, First "Anarchist's Cookbook" Downloaders' Convictions · · Score: 1

    This really deserves to get modded up. Kids these days, they just have no culture. Exterminate! the lot of them, I say!

  24. Re:What's the problem? on Spam Causes Microsoft To Kill Newsgroups · · Score: 1

    It would be relatively simple to tack onto Usenet the ability to send replies which contain up- or down-votes and a description (although newsreader support would be an issue, obviously), and a moderation bot (the Scary Devil Monastery uses one, this can be a more complex version) could ignore any moderation posts to the /. groups which are not from current mods. THis would be tricky to do with a public group, but if each article were a group hosted on /.s own server. Thus this article might be slashdot.tech.spam-causes-microsoft-to-kill-newsgroups, and /. could ignore karma and prevent moderation from anyone not logged in to their server via ssl.

    Of course, this is just hypothetical, although I would use it if they offered it, I don't really expect anyone to.

  25. Re:Content UN Aware FIll on GIMP Resynth vs. Photoshop Content Aware · · Score: 1

    It does a reasonable job of guessing the content based on a single image. For better results, you'd want one of the tools which uses scene descriptors formed from image derivatives to find matching segments in a huge library of images and paste them together, using some sort of Poisson blurring to mix the edges in. I have seen this demonstrated, but I forget the name of the tool which was used. I do recall that it used a library of 2.3M images of northern Mediterranean towns for its example data set, and returned a selection of about 20 images so that a human can solve the rather tricky problem of checking for silly mistakes of scale or orientation in the pasted material (one of the suggestions produced by the example I saw put a giant footprint on a beach, for example). Whilst this requires an awful lot of images, and does take quite a while to run, it only needs help at the beginning (to mark what is to be removed) and end (to check the result) of the process.