Slashdot Mirror


User: jeremyp

jeremyp's activity in the archive.

Stories
0
Comments
2,700
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2,700

  1. Re:No price move on Bitstamp Bitcoin Exchange Suspended Due To "Compromised Wallet" · · Score: 1

    According to http://www.preev.com/ Bitcoin is trading at around 280 USD. Last time I looked a couple of weeks ago, it was at 313 USD. The needle has moved, whether it was this story or not, I don't know.

  2. Re:They're assholes. on Why Lizard Squad Took Down PSN and Xbox Live On Christmas Day · · Score: 1

    And yet my nephew knew how to configure the NAT/router in his parents' house so that he could run a Minecraft server for his friends when he was ten.

  3. Re:Unrelated to Github on Critical Git Security Vulnerability Announced · · Score: 2

    No it isn't.

    Both NTFS and HFS+ are file systems that are case insensitive and case preserving (by default). They work as designed. They have always worked that way as the people who ported git to those platforms should have known.

    Just because you don't like the way NTFSD and HFS+ work and it makes the programmer's job a little harder doesn't mean there is a bug.

  4. Re:Glad we're in agreement... on Who's To Blame For Rules That Block Tesla Sales In Most US States? · · Score: 1

    I think it's a minimum, not a maximum.

  5. Re:currency on Amazon UK Glitch Sells Thousands of Products For a Penny · · Score: 1

    To my knowledge there is no other country in the world to use the exact word 'penny' or 'pennies' to refer to their smallest denomination.

    We do in the UK and we thought of it first.

  6. Re:Sigh. on Amazon UK Glitch Sells Thousands of Products For a Penny · · Score: 1

    I wouldn't be surprised if that was exactly the bug.

  7. Re:class act on Julian Assange Trying To Raise Nearly $200k For a Statue of Himself · · Score: 1

    But when a prosecution can't even be bothered to determine that someone is one

    The issue of whether Julian Assange is a rapist or not would have been settled years ago if he had not skipped bail. He would have been taken to Sweden and interviewed about the accusations. Maybe as a result of that, there would have been a trial and hopefully he would have been found guilty if and only if he did rape somebody.

    Right now, he's a fugitive from justice, which makes me think that he is not confident that he would be acquitted of the rape allegations. You can talk about the danger of extradition to the USA, but he was in the UK for a while before he ran away and the USA made no move to extradite him. I don't think that is a real danger.

  8. Re:You don't know C++ properly until you know C on How Relevant is C in 2014? · · Score: 3, Informative

    " don't really seem to understand the difference between pointers and C arrays"

    Well, because there isn't one at the language level. The array syntax using square brackets is only a syntactic sugar for pointer arithmetic, nothing more.

    There is a difference between an array and a pointer.

    char a[100];
    char* b;

    b = a; // Fine
    a = b; // Not fine.

    If you read the standard, the language used is that, in an expression, an array "decays" to a pointer with the rule being that you get a pointer to the array's first element. The "array is not a pointer" rule is further demonstrated by passing an array to sizeof (as viol8 points out).

  9. Re:An unidentified drone on Heathrow Plane In Near Miss With Drone · · Score: 3, Funny

    somebody else would talk about 1.8 gigawatts.

    Don't be silly, they'd talk about One point twenty one jiggawatts. Then there would be a flamewar on the correct pronunciation of "giga" and whether a lightning strike can deliver 1.21Gw.

  10. Re:Good reasons for Swift and Go on Why Apple, Google, and FB Have Their Own Programming Languages · · Score: 2

    The only substantial way of improving on string concatenation in Objective-C would be to introduce custom operators, and that brings its own set of issues. The other alternatives sacrifice consistency.

    Actually, you could quite easily bring custom operators to Objective-C by adopting the Smalltalk approach. Simply allow symbols to be messages e.g.

            [@"foo" stringByAppendingString: @"bar];

    could be written as

            [@"foo" +: @"bar];

    Smalltalk allows you to drop the colon with binary operators so you could even have

          [@"foo" + @"bar];

  11. Re:Hmmm.. on Fraudulent Apps Found In Apple's Store · · Score: 1

    Money going into my account? No, never noticed any... ... what's that you say? Yes, it is a nice new car. We're off to the Seychelles next week too. It's paid for by a bequest from Aunt Mildred's goldfish.

  12. What about money? on Ask Slashdot: Non-Coders, Why Aren't You Contributing To Open Source? · · Score: 2

    There are a number of people on this thread who are saying "I don't contribute because I don't have time". Well, why don't you contribute money instead then? If a piece of software has value to you, either because it helps you do your job, entertains you or saves you some time, then it surely has monetary value.

    The advantage of contributing money apart from it taking only about five minutes is that you don't have to deal with the arrogant arseholes that all successful open source projects are staffed by (if many of the anecdotes above are correct).

    Full disclosure: I am in this group of people, unless you count the very occasional bug report.

  13. Re:Mac user... no manual? on Ask Slashdot: Non-Coders, Why Aren't You Contributing To Open Source? · · Score: 1

    He wasn't talking about the Mac itself but the software applications that run on it.

  14. Re:Montana used to have no speed limit at all... on Montana Lawmakers Propose 85 Mph Speed Limit On Interstates · · Score: 1

    The reason I ask is that here in the UK the official speed limit on motorways is 70mph, but police can't pull you unless you're doing 10% + 2mph over the limit, so 79mph on a 70mph limit road.

    This is not true. The 10% + 2 rule is a discretionary guideline that the police tend to use. In principle they can prosecute at any speed over the speed limit.

    http://www.acpo.police.uk/docu...

    Section 9 is the relevant part.

  15. Re:Federal Funding is not contingent on speed limi on Montana Lawmakers Propose 85 Mph Speed Limit On Interstates · · Score: 1

    That was an idiot driver in Belgium moving into a lane where he had no visibility.

    and judging by the fact that the video was taken from a lorry and the vehicle in front was a lorry and the car wasn't travelling much faster, it is unlikely that anybody was doing much more than 65mph

  16. Re:Objective-C on Ask Slashdot: Objective C Vs. Swift For a New iOS Developer? · · Score: 1

    Objective-C is a preprocessor, not a real language,

    From which we can deduce you know very little about Objective-C.

  17. Re:Keys to the kingdom ... on Cameron Accuses Internet Companies Of Giving Terrorists Safe Haven · · Score: 1

    I'd agree with you if it weren't for the fact that measures put in place to combat terrorism have been abused before.

  18. Re:Easiest way... on Ask Slashdot: Workaday Software For BSD On the Desktop? · · Score: 1

    OS X is no more heavily controlled than any Linux in the sense of putting what software you like on it. The only downside to it is that you have to buy your hardware from Apple.

  19. Re:I'm quite surprised it wasn't on What Would Have Happened If Philae Were Nuclear Powered? · · Score: 1

    ESA is mainly a French driven organisation. In France, 75% of electricity is generated by nuclear power stations.

    Never let the truth get in the way of a good stereotype.

  20. Re:I'm quite surprised it wasn't on What Would Have Happened If Philae Were Nuclear Powered? · · Score: 1

    I wouldn't have thought there was enough light that far out even without the shadows.

    Could you post your calculations that lead you to that conclusion. Do you think that the engineers who designed the space craft forgot to make the same calculation?

    Sure it's an assumption but it's not baseless,

    Yes it is unless you did the calculations to show that there is not enough energy out there for the specific solar cells on this craft.

    previous deep space probes such as Cassini, pioneer, and voyager are all nuclear powered.

    They were all designed to go much further than Rosetta.

  21. Re:The TripAdvisor URL on UK Hotel Adds Hefty Charge For Bad Reviews Online · · Score: 1

    147 terrible reviews, I think the £100 charge must be part of their business model.

  22. Re:Or, to put it another way... on The Effect of Programming Language On Software Quality · · Score: 1

    You can create an interface in C. Just typedef a struct with a bunch of function pointers. People implement the interface by creating an instance of the struct and filling in the function pointers.

    It's actually a fairly common pattern. For example there are several described here

  23. Re:Terrible on Russia Takes Down Steve Jobs Memorial After Apple's Tim Cook Comes Out · · Score: 4, Insightful

    You're overthinking it.

    I'm heterosexual. I cannot choose to be sexually attracted to other men, I'm just not attracted to them. Whether this is caused by psychological reasons, the chemical environment in my mother's womb, or genetic factors is irrelevant. I cannot choose.

    It should be pointed out that the choice thing is really a red herring. If homosexuality were a choice, that would still be no reason to persecute gay people.

  24. Re:Then how did the pilot die? on SpaceShipTwo's Rocket Engine Did Not Cause Fatal Crash · · Score: 3, Insightful

    Ha! Rather than merely point out that you have confused the names "Columbia" and "Challenger" everybody has decided you needed a new arsehole tearing.

  25. Re:I'll take that bait on Ask Slashdot: Where Do You Stand on Daylight Saving Time? · · Score: 1

    It would be a pain if it were true. Most of the shops in my part of the UK stay open till six and often later.