Slashdot Mirror


User: JoeyRox

JoeyRox's activity in the archive.

Stories
0
Comments
1,851
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,851

  1. Wonder if this would scale to full body on Microsoft's Emma Watch Is a Game-Changer For People With Parkinson's (betanews.com) · · Score: 1

    Perhaps a larger version placed at crucial nerves near the spinal cord would allow tremors to be eliminate for the entire body.

  2. Selective hacks require dumb populace to influence on Hackers Came, But the French Were Prepared (nytimes.com) · · Score: 3, Insightful

    Which explains the varied outcomes of the two most recent elections.

  3. Better that it doesn't compile on Only 36 Percent of Indian Engineers Can Write Compilable Code, Says Study (itwire.com) · · Score: 1

    Because the outcome would be worse if it did.

  4. End to golf1, golf2, golf3...golf486 passwords on NIST's Draft To Remove Periodic Password Change Requirements Gets Vendors' Approval (csoonline.com) · · Score: 2

    Now I can keep golf486 and never have to use golf487.

  5. Re:VR is like 3D on Facebook Closes Its Oculus VR Studio (bbc.com) · · Score: 1

    All that will remain is the vomit from people trying out the VR goggles.

  6. There's another name for a Blackberry review on BlackBerry KeyOne Review By The Verge: Part Productivity, Part Nostalgia (theverge.com) · · Score: 1

    A eulogy.

  7. Uber hasn't learned the right way to do corruption on Justice Department Opens Criminal Probe Into Uber (washingtonpost.com) · · Score: 1

    It's a novice mistake for a corporation to violate criminal law. The right way is to pay off a Congressman to get the law changed, while at the same time making it illegal for your competitor so that the government will raid them with machine guns when they try to engage in the behavior that was made legal for you.

  8. Nightmare on 1 Infinite Loop Street on Splitting Up With Apple is a Chipmaker's Nightmare (engadget.com) · · Score: 2, Funny

    Timmy is back and this time he's angry.

  9. AirPod users satisfied with their purchase, but... on Apple AirPods Customers 'Satisfied' With the Product (techpinions.com) · · Score: 1

    A chicken crossed the road to get to the other side.

  10. Targeting teens to sell healthy living services? on Facebook Lets Advertisers Target Insecure Teens, Says Report (cnet.com) · · Score: 1

    Lock them in jail and throw away the key.

  11. Re:What about files stored in MFT? on Developer Shares A Recoverable Container Format That's File System Agnostic (github.com) · · Score: 0

    Realistically speaking applications aren't going to support the notion of a metaformat like this. If there's demand for this type of redundancy it would be better achieved by implementing it in the filesystem. And most modern file systems log their metadata updates anyway so the likelihood of not being able to reconstruct the file extents is rather low vs the probability of media-level corruption affecting the user data itself. As for the SBX of hashes not being locatable due to metadata corruption, you can avoid that by applying a header to the SBX blocks themselves.

  12. Re:What about files stored in MFT? on Developer Shares A Recoverable Container Format That's File System Agnostic (github.com) · · Score: 1

    For archival perhaps. But then they're denied access to use the original file unless they unpack it first.

  13. Re:What about files stored in MFT? on Developer Shares A Recoverable Container Format That's File System Agnostic (github.com) · · Score: 1

    I think in practical applications users would prefer just storing the hash. It's just over 6% storage overhead vs 103%.

  14. Re:What about files stored in MFT? on Developer Shares A Recoverable Container Format That's File System Agnostic (github.com) · · Score: 1

    Ok, I missed the data layout details at the end of the article. Rather than creating a super-set SBX file that holds all the original user data + 16-byte headers did you consider just storing the SHA-256 of every user block of data and storing that in the SBX file? You can reconstruct the file during your scan by SHA-256 every block read and matching it against the list of hashes in the SBX file.

  15. Re:What about files stored in MFT? on Developer Shares A Recoverable Container Format That's File System Agnostic (github.com) · · Score: 1

    So if I'm understanding you correctly, the first 4K block is meatdata-only (no user data), then each additional block can contain up to 4096 - 16 bytes of user data (first 16 bytes of each block is the header).

  16. Re:What about files stored in MFT? on Developer Shares A Recoverable Container Format That's File System Agnostic (github.com) · · Score: 2

    The MFT limit is closer to 1K. But if your minimum size is 1K that should be fine.

    Next question - for the encoding of the file, you're putting a 16-byte header in front of every blocksize-piece of data, correct? If that's the case, and if you're storing the entire block of original data after that pre-pended header, then how are you assuring that the spill-over piece of data will be on a contiguous block on the disk? For example, say you're encoding a single 4096 byte file using a 4K blocksize. The SBX-equivalent size would be 4,112 bytes; how are you assuring the final 16 bytes of data are on a contiguous disk block to the first 4K?

  17. What about files stored in MFT? on Developer Shares A Recoverable Container Format That's File System Agnostic (github.com) · · Score: 1

    I did a quick read of the code and see that it relies on a magic cookie in the first four bytes of every physical sector to identify a block. This may not work for files small enough to fit entirely within the MFT on NTFS since that data isn't guaranteed to be aligned on a physical sector. There are other filesystems that store small file segments in the metadata structures as well.

  18. Let's just make it illegal to hire all foreign workers so that every one of our tech companies moves entirely overseas and takes every American tech job with it. Wait, making competition illegal isn't the solution then?

  19. Re:How does it "eat up CPU cycles"? on Windows is Bloated, Thanks to Adobe's Extensible Metadata Platform (bit.ly) · · Score: 1

    Windows doesn't display the XMP data from executables, at least not without prompting from the user or a Win32 app.

  20. Re:5MB in total - Nothing to see here. on Windows is Bloated, Thanks to Adobe's Extensible Metadata Platform (bit.ly) · · Score: 2

    Agreed, but just for a fun comparative reference, the size of an entire Windows 3.1 installation was less than 15 MB :)

  21. Re:How does it "eat up CPU cycles"? on Windows is Bloated, Thanks to Adobe's Extensible Metadata Platform (bit.ly) · · Score: 1

    CPU caches are set-associative so having sparse data doesn't hurt CPU performance, esp when the area occupied in memory by XMP would be a single large contiguous block.

  22. Re:How does it "eat up CPU cycles"? on Windows is Bloated, Thanks to Adobe's Extensible Metadata Platform (bit.ly) · · Score: 1

    There is an asymmetric relationship between the time it takes to access data and the time it takes to read, even with fast SSDs with low command overhead. So the additional transfer time of 5MB over a large set of files will be a rounding error relative to the total time spent issuing the I/Os.

  23. Re:How does it "eat up CPU cycles"? on Windows is Bloated, Thanks to Adobe's Extensible Metadata Platform (bit.ly) · · Score: 1

    They don't need to parse it - it's described as separate sections within the executable.

  24. How does it "eat up CPU cycles"? on Windows is Bloated, Thanks to Adobe's Extensible Metadata Platform (bit.ly) · · Score: 4, Insightful

    The Windows executable loader doesn't look at this extraneous XMP data so why would it consume CPU cycles?

  25. How is Holmes not indicted yet? on Theranos Used Shell Company To Secretly Buy Outside Lab Equipment, Says Report (arstechnica.com) · · Score: 1

    The Feds have been investigating her and her company for a long time and here are details of obvious illegal activity (fraud) discovered by a civil investigation during the course of an investor lawsuit.