Slashdot Mirror


User: UnknownSoldier

UnknownSoldier's activity in the archive.

Stories
0
Comments
7,910
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 7,910

  1. Obviously you've _never_ worked on any games. Art, Music, Levels, Previous Executables, etc. are all valid things to keep in a repo.

    Stop using shitty source repositories that don't know how to handle binary blobs.

    Scientists should have been doing this all along so they can get independent confirmation.

  2. That would require Google actually having some balls.

    The pussification will continue until everything is offensive (to someone.)

    --
    Hate Speech IS censorship.

  3. Re:They were distributing modified game files on EA Shuts Down Fan-Run Servers For Older Battlefield Games (arstechnica.com) · · Score: 1

    Yeah that is rather strange.

    One reason might be that the original .exe's are no longer available?

    Does anyone know if EA is still selling any of the effected games?

  4. > I haven't ever heard of someone manipulating the bits in a floating point number.

    That's because you lack experience. A classic trick is to use an union:


    union int_float_t
    {
            uint32_t i;
            float f;
    };

    If you actually understood the IEEE754 32-bit and 64-bit format you wouldn't be so naive.

    https://en.wikipedia.org/wiki/...

    Sign bit: 1 bit
    Exponent width: 8 bits
    Significand precision: 24 bits (23 explicitly stored)

    https://en.wikipedia.org/wiki/...

    Sign bit: 1 bit
    Exponent: 11 bits
    Significand precision: 53 bits (52 explicitly stored)

  5. That missing step 2 has been found ! on British Company Adds the Word 'Blockchain' to Its Name, Sees Its Shares Surge 394% (bloomberg.com) · · Score: 1

    1. Change name to include Blockchain
    2. ???
    3. Profit !

    So apparently the missing step 2 has been found:

    2. Wait for morons to over-value your stock

  6. More Apple shenanigans with OSX 10.10.5 Calculator app:

    99.99
    [+/-]
    = -99.98999999999999 (WTF?)

    -0.01
    = -99.99999999999999 (WTF!?)

    Apple Logic: 99.99 [+/-] - 0.01 = -99.99. ** double facepalm **

    /oblg. Picard: WTF is this shit?

  7. Because they are morons. i.e. OSX 10.10.5's Calculator app:

    Enter: 88.02

    Press: +/-
    Will show: -88.02000000000001

    Press: +/-
    Will show: 88.02000000000004

    This isn't rocket science just basic Computer Science. Apparently these morons haven't figured out what a sign bit is. Maybe they should talk to their iOS division ...

    --
    WhereTF is the default Calculator App on iPad??? You shipped one with iOS.

  8. Re: More cliche's about happiness on Einstein's Note On Happiness, Given To Bellboy In 1922, Fetches $1.6 Million (theguardian.com) · · Score: 1

    You are doing it wrong.

    Why do you even have a gold digger in the first place??? Find someone who treats you with respect.

  9. Re:The cliche's might be right on Einstein's Note On Happiness, Given To Bellboy In 1922, Fetches $1.6 Million (theguardian.com) · · Score: 1

    > This research confirms a lot of the old cliches; the strongest contributing factors to happiness are meaningful relationships with family and friends,

    Agreed.

    Simon Sinek on Millennials in the Workplace

  10. More cliche's about happiness on Einstein's Note On Happiness, Given To Bellboy In 1922, Fetches $1.6 Million (theguardian.com) · · Score: 1

    Happy Wife, Happy Life

    Secret to Happiness in 3 words: Remove false expectations.

    /Cynical I guess wasting frivolous amounts of money on a dead guy's note made someone happy. Namely the seller.

  11. /cynical I'm shocked, shocked I tell you, that yet-another-corporation lied about their stats.

  12. Other good geometry games on The Geometry of Islamic Art Becomes a Treasure of a Game (arstechnica.com) · · Score: 1

    Other good puzzle games include:

    * Pythagorea, iOS, Android
    * Pythagorea 60 iOS, Android
    * The Witness
    * The Talos Principle
     

  13. Re:We Already Knew That the Universe Shouldn't Exi on CERN Scientists Conclude that the Universe Should Not Exist (ign.com) · · Score: 2, Insightful

    > What if the universe always existed, and always will?

    Considering that the 1st Law of Thermodynamics says that:

    Energy can be neither created nor destroyed.

    I would tend to agree with you.

    Either

    a) The universe has always existed, or
    b) God has always existed.

    Either way you end up with the atheist's F word: Faith.

  14. Re:Not the best fit since it's schizophrenic on Oracle Engineer Talks of ZFS File System Possibly Still Being Upstreamed On Linux (phoronix.com) · · Score: 1

    > Because Linux normally lets you use your choice of file system on top of your choice of volume manager,

    The problem is: btrfs, exfat, ext3, ext4, fat, jfs, reisderfs, and xfs ALL SUCK -- they all propagated write errors


    FS / read / write /silent
    btrfs.. | prop prop prop
    exfat.. | prop prop ignore
    ext3... | prop prop ignore
    ext4... | prop prop ignore
    fat.... | prop prop ignore
    jfs.... | prop ignore ignore
    reiserfs | prop prop ignore
    xfs.... | prop prop ignore

  15. > Only two months ago I had an aged Dell RAID array let me down. I have no idea what actually happened, but it appears some error crept in one of the drives and it got faithfully spread across the array and there was just no recovering it. If I didn't have good backups that would have been about 12 years of the company's IP up in smoke. I just thought I'd share.

    It may have been the RAID write hole ?

    See Page 17

  16. Re:Not the best fit since it's schizophrenic on Oracle Engineer Talks of ZFS File System Possibly Still Being Upstreamed On Linux (phoronix.com) · · Score: 5, Insightful

    > Because Linux normally lets you use your choice of file system on top of your choice of volume manager, on top of whichever RAID implementation you choose, with your choice of IO scheduling options, ZFS isn't exactly the best fit. ZFS mashes all those different things into one big blob. That's not really how Linux is designed.

    Criticizing ZFS for "rampant layering violation" has been discussed to death before

    "Dumb" API's, such as the ones implemented in Linux, have a STRICT layered approach like this:

    * Volume Management
    * File Management
    * Block (RAID)

    Problems start when each layer needs information at the layer above it. This is epitomized with the design flaw in hardware RAID via the write-hole. Link to English version

    In contradistinction ZFS takes a holistic, unified approach:

    * Volument Management <--> File Management <--> Block

    e.g.
    The original RAIDZ implementation was written in 599 lines of code in vdev_raidz.c -- less code equals less bugs.
    https://github.com/illumos/ill...

    > That's the same issue as systemd

    No it doesn't. You are comparing apples to oranges. ZFS works because it intentionally "Flattened the stack" -- Yes, this runs counter to the layered Unix approach -- but sometimes that is NOT the best design decision.

    Meanwhile Oracle keeps flailing about with Btrfs.

  17. Re:Same guy causing the problems in first place on Bitcoin Pioneer Says New Coin To Work on Many Blockchains (bloomberg.com) · · Score: 2

    > In the Land of More Dough where the Shadows lie.

    FTFY. :-)

  18. Re:whatever on Star Trek: Discovery Is Returning For a Second Season (engadget.com) · · Score: 2

    I'm not a Seth fan. Family is OK but the jokes drag on _far_ too long.

    I initially wrote-off The Orville pre-judging it to be just another dumb Star Trek spoof. I couldn't have been more wrong. I have loved the first 4 episodes! It is basically an updated TNG.

    Jonathan Frakes (Riker) will direct episodes in both series! So them watch'em, and you be the judge. Who knows, you might end up like both. ST:D for being too serious, and The Orville for being too light.

    The Orville (TV Series) (1 episode)
    - Pria (2017)

    ST:D -- not yet announced

  19. Re:whatever on Star Trek: Discovery Is Returning For a Second Season (engadget.com) · · Score: 2

    > It's a solid show

    That's debatable. The Orville is more Star Trek then ST:D

    > but this pay channel crap screws everything up.

    (Almost) Everyone bitches about wanting TV "a la carte" -- this is what it looks like. Price Gouging on BOTH sides.

  20. Re:Says a guy doesn't understand the technology on Wolf of Wall Street: Cryptocurrency ICOs Are 'the Biggest Scam Ever' (betanews.com) · · Score: 2

    ^^ THIS.

    Main St. built America.
    Wall St. robbed it.

  21. Re:Strange days indeed.... on US Preparing to Put Nuclear Bombers On 24-Hour Alert (defenseone.com) · · Score: 1

    And zero fucks were given about some bullshit "Rule"

    The real issue is why are you blind to the narcissistic tendencies of both leaders and feel the need to defend them when WW3 is _much_ bigger issue??

  22. Re:Strange days indeed.... on US Preparing to Put Nuclear Bombers On 24-Hour Alert (defenseone.com) · · Score: 3, Insightful

    > Even North Korea must know that internally.

    You have a dumb-ass histrionic narcissistic "supreme leader" vs a impulsive narcissistic moron world leader.

    North Korea is dumb enough to nuke the USA.
    The USA is dumb enough to wipe North Korea off the face of the earth.

    You do the math. Stupid people do stupid things.

    Intelligent people will occasionally act stupid.
    Stupid people act stupid all the time.

    There is no hope for these two.
    --
    Judaism is the source of Christian indulgences: Murdering an innocent animals for heaven insurance.

  23. Re:Kill... on Could Cryptocurrency Mining Kill Online Advertising? (linkedin.com) · · Score: 1

    Sure you could.

    Make advertising illegal.

    The problem is 99% of people are fucking morons. They have no self respect so they let others waste their time, money, space, and bandwidth instead of thinking for themselves.

    --
    If "blocking ads is unethical" then by the same retarded logic ads are immoral. You can't have one without the other.

  24. > If itâ(TM)s okay to violate Hollywood movie company copyrights (as is the prevailing view here)

    Apples to Oranges comparison.

    While I don't entirely buy it the point of the argument is this:

    * No-one is price-gouging with Linux
    * Sticking it to "The Man" is 1 of two tactics for over-priced regurgitated movies. (The other is to abstain.)

    With Linux you _already_ have pretty generous terms.

    If Hollywood accepted a "Pay-What-You-Want" model I think more people would respect their copyright. But instead we end up with Bullshit that making a backup _requires_ one to break DRM --- that tells me they are greedy fucks. Why would someone respect their copyright again?

    CD prices were supposed to drop too, but we're still waiting for _that_ to happen ...

  25. > I almost always sign them with a circle, square and triangle. N

    I always sign with an X.

    Between the two of use we have the entire PlayStation button symbols. :-)

    > No one in the US ever check.

    Yup, that's my experience as well -- no one cares. Hell 99% of the time they don't even check ID. *facepalm*