Slashdot Mirror


User: lokedhs

lokedhs's activity in the archive.

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

Comments · 661

  1. Re:Security and IPv6 on North America Runs Out of IPv4 Addresses · · Score: 2
    That security is provided by RFC 4941 (Privacy Extensions for Stateless Address Autoconfiguration in IPv6).

    It's even better than IPv4 with NAT since it will actually rotate in new random IP addresses every so often (every hour or so). That means that your source IP will change over time which makes tracking harder.

  2. Re:So that means it's free to everyone on Windows 10 Will Be Free To Users Who Test It · · Score: 1

    I tried, but SCO didn't want to listen.

  3. Re:Must be getting old. on WWDC 2015 Roundup · · Score: 1

    I agree, but which was the last version of OSX that was stunning?

  4. Re:Yay meaningless prattle on unreadable hipster s on Does a Black Hole Have a Shape? · · Score: 1

    Her qualifications say: 'PhD in astrophysics, currently working at the University of Sussex". Say what you will about the content, but she does seem like a real astrophysicist.

  5. Re:The answer has been clear on Why the Journey To IPv6 Is Still the Road Less Traveled · · Score: 1

    I'm sorry. I wasn't clear it seems. I mean I had that problem until I stopped blocking ICMPv6. Once I fixed that, IPv6 was as fast or faster than IPv4.

  6. Re:How about basic security? on Why the Journey To IPv6 Is Still the Road Less Traveled · · Score: 1

    If you are stupid enough to be running without a firewall, sure they your entire address space can be scanned. I hope they have lots of time though since even the smallest allocation gives you an address space of 18446744073709551616 addresses. That'll take a while to scan.

  7. Re:The answer has been clear on Why the Journey To IPv6 Is Still the Road Less Traveled · · Score: 1

    Oh yes, the ICMPv6 issue is real. I made the same mistake when I configured my IPv6 firewall. It's subtle because things seem to work at first but connections just hang. And the behaviour from the client side is that "accessing Google is slow but other sites work". Of course, accessing any IPv6 site is slow, but the browsers won't tell you that.

  8. Re:And it's already fixed in 1.8.4 on Exploit For Crashing Minecraft Servers Made Public · · Score: 1

    Right, but everything is still on 1.7.0 because most mods don't work on 1.8.

  9. Re:Bye_bye, Blackberry on Blackberry CEO: Net Neutrality Means Mandating Cross-Platform Apps · · Score: 1

    Not trying to defend Apple here (much), but the Blackbook had a faster CPU if I remember correctly.

  10. Re:Missing the point on Anthropomorphism and Object Oriented Programming · · Score: 1
    I've been consistent all along. you're the one who keeps moving the goal posts.

    Let's pretend I'm stupid (which should be easy for you since you either seem to be convinced I'm intellectually inferior to you, or you are just being a condescending arse) and explain to me what part of method dispatch is done statically (in a "non-message-passing system" vs. dynamically in a "message-passing system").

    Since you are arguing that these methods are so fundamentally different, I would expect to be able to see functionality in the latter that just can't be achieved in the former.

    I argue that, once you strip out the terminology and look at what these systems actually do, there is not real difference.

  11. Re:Missing the point on Anthropomorphism and Object Oriented Programming · · Score: 1
    Saying something several times doesn't make it true. There is nothing in the behaviour of message passing that would prevent it from being compiled into a vtable call behind the scenes.

    Of course, in highly dynamic systems you need to recompile method calls on the fly, but that is true for languages like Java as well, which also needs to do this.

    Finally, CLOS has the most flexible method calling in existence. You can write your own methods that chooses the appropriate method to call (look up define-method-combination for the gritty details). Amazingly enough, it still manages to compile the method invocations into direct calls.

    That said, the actual underlying implementation of the compiler is completely irrelevant in this case. The actual provided functionality available to the programmer, is. And from the point of view of the programmer, the difference between message passing and nay other calling style is minimal, at best.

  12. Re:Missing the point on Anthropomorphism and Object Oriented Programming · · Score: 1

    My point is, in a nutshell, that a "message passing" system can (and often will) compile down into exactly the same code as the other kind of calls.

  13. Re:Missing the point on Anthropomorphism and Object Oriented Programming · · Score: 1
    Clearly you never used CLOS. In CLOS, a generic function is called just like any function (in fact, you can compile a code that calls a generic function before that function has even been defined). Defining a GF means that the dispatcher function is created that allowed you to define methods on it.

    The actual dynamic behaviour that you talk about has nothing to do with the object orientation at all. The "invokeMethod" that you talk of is simply the FUNCALL or APPLY functions that simply calls a function.

    At the end of the day, regardless of how you choose to think about object orientation conceptually, all that really happens is that some code is called based on some property of the arguments that you pass in. The most common form is simply the choice of implementation based on the runtime datatype of the first argument.

    Here's the important point: If I were to give the following statement: "Java uses message passing", it's actually very hard to contradict that. Every single feature and behaviour of message passing systems you mentioned above with the exception of having a fallback implementation can be replicated in Java with just a bit of reflection. If the designers of Java had really wanted (and IMHO, they should have) they could have added the necessary extra syntactic sugar to achieve that.

    Whether or not an "actual" message object is constructed that is passed as an argument to a dispatcher, or if the compiler creates a vtable is really an implementation detail and as a programmer you very rarely, if ever, see the difference. You seem to have confused the difference between static and dynamic languages with that of object orientation style.

    If you still feel the desire to reply, then I really would like to know how you categorise generic functions (in particular, the CLOS kind) in terms of message passing vs. something else.

  14. Re:Missing the point on Anthropomorphism and Object Oriented Programming · · Score: 1
    I'd argue that the difference is largely academic. They do refer to two distinctly different ways of thinking about it, but if you look at how method calls/message passing is actually implemented there is little difference. In both cases you request the invocation of a method, and there is a dispatcher that chooses at run time which actual implementation will be called.

    Having the actual method implementation tied to a class (as is the case in most languages, including Java and C++) is again an implementation detail, albeit one that can limit the flexibility available to the programmer.

    Extrapolating this further brings us to generic functions which are just plain functions which is a dispatcher to multiple implementations. I'm sure one can argue for hours whether or not that is message passing or not.

  15. Re:Missing the point on Anthropomorphism and Object Oriented Programming · · Score: 1

    Which system provided that? I know that CLOS was built on previous work, although I haven't heard of any MD system in Lisp that did not also provide objects.

  16. Re:Missing the point on Anthropomorphism and Object Oriented Programming · · Score: 1
    Except in good object orientation systems, functions does not go with the data. That's a limitation introduced by Simula 67, which started a trend that survives till today, with Java, Ruby and all the other single-dispatch languages.

    Far too many programmers these days seems to believe that object orientation is equivalent to the limited form available in languages like Java and C++. They would be helped by learning a language that has multiple dispatch before commenting on that object orientation is.

  17. Re:No single company on Football Concussion Lawsuits Start To Hit High Schools · · Score: 1
    The budgets might be low, but they'd have to be ridiculously low not to be able to afford a few of these stickers every day:

    http://www.shockwatch.com/moni...

  18. Re:Netflix Time Now? on Babylon 5 May Finally Get a Big-Screen Debut · · Score: 0

    You mean "the rest of the US" I presume? I'm constantly amazed that people are not aware of the fact that Netflix is not available outside the US (and with few exceptions, most countries have no streaming video services at all).

  19. Re: One switch to rule them all? on Windows 9 To Win Over Windows 7 Users, Disables Start Screen For Desktop · · Score: 1

    A real programmer runs away at the thought of having to parse the Office file format. Have you looked at it? The fact that the document itself is 90 MB (zipped) should tell you something.

  20. Re: Jigsaw on Java 8 Officially Released · · Score: 1

    Right, and while one might think that that would be an easy and logical thing to do, it turns out that there are very few (if any) situations where raising the -mx to that of available RAM is the right thing to do. That said, I admit that the the defaults today are somewhat messed up too, but raising the default limit to the total RAM is an even worse idea.

  21. Re: Jigsaw on Java 8 Officially Released · · Score: 1

    You realise that that is exactly how the JVM works already? The upper limit you asked for is, in fact, the max heap size that you specify using -mx. The -ms flag specifies the initial heap size. If you never allocate more than that, the VM will not request more memory from the operating system.

  22. Re:Nothing does on Join COBOL's Next Generation · · Score: 1

    Pretty much, although it's probably even more accurate so say it's been replaced by Excel.

  23. Re:Who cares? on Apple Leaves Journalists Jonesing · · Score: 1

    The stock price was set based on those same third-party analysts analysis, so once the real numbers come out, the stock price adjusts. This is economy 101, and it'd be good to look it up before randomly commenting (I know, I know. This is Slashdot and I shouldn't expect that).

  24. Re:Need Clarity on Debian GNU/Hurd 2013 Released · · Score: 1

    Clearly you never experienced the 70's...

  25. Re:A quote from the authors on Groklaw Turns Ten · · Score: 1

    Actually, it's technically not even over yet. The case is still there.