Slashdot Mirror


User: flargleblarg

flargleblarg's activity in the archive.

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

Comments · 688

  1. 13 million members... on Genome Hacker Uncovers 13-Million-Member Family Tree · · Score: 1

    ...Tee hee hee hee hee

  2. Re:Ewoks getting Force-choked? on Lost Star Wars Footage Found On LaserDisc · · Score: 1

    Yeah, you know, just like in the garbage compactor scene.

  3. Re:I donâ(TM)t suppose... on Feds Confiscate Investigative Reporter's Confidential Files During Raid · · Score: 1

    Well, if you did it on purpose as a joke, and that joke wooshed over my head, then ... ok, my bad ... if the joke was obvious and I am just stupid.

  4. Re:I want my games to have all the pixels! on 4K Ultra HD Likely To Repeat the Failure of 3D Television · · Score: 1

    Jeebus. Well, evidently the GGP was not smoking crack after all. Cool. I stand corrected, and offer apologies.

  5. Re:I donâ(TM)t suppose... on Feds Confiscate Investigative Reporter's Confidential Files During Raid · · Score: 1

    But now you know the correct words to use.

  6. Re:Ewoks getting Force-choked? on Lost Star Wars Footage Found On LaserDisc · · Score: 1

    Nope, it was the original sequence in which Han shot first, missed, and the laser bolt richocheted off the wall behind Greedo, then richocheted off the wall behind Han, and then blasted poor Greedo in the face.

  7. Re:Apple done fucked up good on Mac OS 10.9's Mail App — Infinity Times Your Spam · · Score: 1

    As OS X users finally get the power to unintentionally resize their terminal emulator windows when trying to select text that goes right up to the margin, just as other UN*X users have had for ages. :-)

    This does not actually happen on OS X... But now I'm curious... how on earth does that happen on other UN*Xs?

  8. Re:I donâ(TM)t suppose... on Feds Confiscate Investigative Reporter's Confidential Files During Raid · · Score: 1

    Untill this is on mass, they are still afraid of you!

    Until this is en masse , they are still afraid of you!

    FTFY.

  9. Re:Real surfer here on Torvalds: Free OS X Is No Threat To Linux · · Score: 2

    Interesting... See #18 here:
    https://geonames.usgs.gov/domestic/faqs.htm

  10. Re:I want my games to have all the pixels! on 4K Ultra HD Likely To Repeat the Failure of 3D Television · · Score: 1

    50" 4K TVs go for under $1000, how much cheaper do you think they're going to get?

    Are you smoking crack? Show me even one 50" 4K TV for under $1000. I think you mean 50" 1080p TV for under $1000.

  11. Re:Good effort on 5-Year Mission Continues After 45-Year Hiatus · · Score: 2

    Are you kidding?? Nimoy was amazing. Still amazing in those.

  12. Re:She wasn't just the first woman programmer on The Curious Mind of Ada Lovelace · · Score: 1

    640k strands out to be enough for anybody.

  13. Re:Apple's actions say they won't on Shuttleworth: Apple Will Merge Mac and iPhone · · Score: 1

    Really? God help us if they merge the iOS7 interface into MacOS. Frankly I feel they have lost direction with the passing of Jobs. They do really stupid things now, like emulate the look, and behavior, of Android.

    Agreed 100%.
    iOS 7 looks like the Mille Bornes card game.

  14. Re:Why did they not roll this out anyway? on Shuttleworth: Apple Will Merge Mac and iPhone · · Score: 2

    Look folks its REALLY simple, the PC and laptop are vertical non touch screen high res systems and the phone and tablet are.....wait for it....horizontal touch screen oriented low res systems.

    Just replying to point out that you have this backwards.

    PCs and laptops have horizontal (e.g., landscape orientation) displays, and the phone and tablet ... well, the tablet can be either way, but the phone is primarily a vertical (e.g., portrait orientation) display.

  15. Re:Then where will we fix everything?!?!?!!! on LucasFilm Combines Video Games and Movies To Eliminate Post-Production · · Score: 1

    This will never work. ;)

    Why didn't you say so before? ;)

  16. Re:Wha? on Is HTML5 the Future of Book Authorship? · · Score: 1

    SO how did chm work out? You see many books in that.

    CHM??? chm is a piece of utter garbage by Microsoft, intended as Compiled HTML Help.

    HTML5, on the other hand, is actually rather decent.

  17. Re:all i want is BP-rewrite on OpenZFS Project Launches, Uniting ZFS Developers · · Score: 1

    If you move a de-duped block to defragment file X, then the same block referenced by file Y is now not in order.

    That's fine. Seriously, when do you ever have a block in common between two files that are not identical copies of the whole file? Certainly not in the middle of a giant file. By nature, giant files (music, video) are compressed and essentially random. Maybe as the very last block in a file, or in a very small file, in which case out-of-order is a non-issue.

    If it is in memory cache the whole concept is moot anyhow - whether it is fragmented on disk or not is irrelevant.

    The hash mapping between block ID and disk location should be kept in memory. The actual data doesn't need to be.

    Given that with de-dup, we are dealing with BLOCKS and not complete files, what order do you propose they are sorted in? Or are you talking about just "Defragmenting" by consolidating them all at the start of the disk, which would make more sense?

    First, sorted in order of first known occurrence in a file. Then, consolodated at the start of the disk (if the data is largely static). Defragmenting free space is more important often than defragmenting files.

  18. Re:all i want is BP-rewrite on OpenZFS Project Launches, Uniting ZFS Developers · · Score: 1

    No no no no no. No.
    When you want to read the actual data pointed to by the lookup table, the disk head goes to the location where the data is now, not where it was originally. Where it was originally is never stored — and never needs to be. All block IDs are looked up and converted to disk locations on-the-fly at read time, using an in-memory-cache that is mutexed to prevent corruption during background operations. And moves can be done in the background without delaying foreground tasks by copying first and then updating the table pointers.

  19. Re:all i want is BP-rewrite on OpenZFS Project Launches, Uniting ZFS Developers · · Score: 1

    ZFS can have up to 18,446,744,073,709,551,616 snapshots, and if you change the location of a block of data, you need to update it's block pointer in all of those snapshots, assuming each one points to it.

    That's an incredibly naive implementation then. It would be far superior to store the ID of the block, rather than the location of the block. Then you look the location up in a table, given the ID. Then blocks can move around as needed, as a background process, without harming any data structures. This is exactly how virtual memory paging tables work. Why can't disks do this?

  20. Re:all i want is BP-rewrite on OpenZFS Project Launches, Uniting ZFS Developers · · Score: 1

    That said, defragmentation is intrinsically incompatible with deduplication, as it is not possible to have multiple files that all refer to some of same blocks all being contiguous on disk.

    Nonsense.
    You don't store the address or location of a block, you store the ID of the block's unique data. When/if you need to know the location of the block, you look it up an ID-to-address table. There's absolutely nothing intrinsically incompatible between defragmentation and deduplication.

  21. Re:um on Ars Test Drives the "Netflix For Books" · · Score: 1

    Agreed 100%. Also — and this is most important for me — the iPad has a way higher resolution (in terms of pixels per inch density) than my laptop screen has. The iPad is simply gorgeous for reading things. (iPad 3 and iPad 4)

  22. iPad Mini is too small and low resolution on Students At Lynn University Get iPad Minis Instead of Textbooks · · Score: 1, Insightful

    iPad Mini is a very foolish choice. It's only 768x1024. Should be a retina iPad instead, which is 1536x2048.

    The 1536x2048 resolution of the iPad 3/4 is miles better than the 768x1024 resolution of the old iPad and the iPad Mini. Frankly, 768x1024 is insufficient for reading anything but pure text like novels. You need 1536x2048 for technical material or anything serious at all.

  23. Re:Smart Criminals on Three Banks Lose Millions After Wire Transfer Switches Hacked · · Score: 2

    I immediately thought of Daniel Ocean when I read TFS.

  24. $ perl -e 'printf "%.3f DeLoreans\n", 5.1e12 / 1.21e9'
    4214.876 DeLoreans

  25. Re:BS on so many levels on The Cryonics Institute Offers a Chance at Immortality (Video) · · Score: 1

    Imagine someone from the 1500s waking up now. Hey, welcome to the future. All of your morals are horribly outdated,...

    Welcome to the future. All of your morals are belong to us!