Slashdot Mirror


User: bogolisk

bogolisk's activity in the archive.

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

Comments · 39

  1. comment at the source on Spain's New S-80 Class Submarines Sink, But Won't Float · · Score: 5, Insightful
    http://www.huffingtonpost.com/social/J_D_Exposito/spain-submarine-s-81-isaac-peral-cant-float_n_3328683_256066767.html

    These are very biased news and in fact they are wrong. For starters, only the first submarine has a floatability problem. The other submarines in the series are larger, therefore they have no problem. Now, why has the fist submarine (the original design) a floatability problem? Because the Navy asked for more equipment (electronic equipment, weapons, etc) and more comfortable cabins for the sailors than originally planned. It is not a design problem but a modifications problem and this is very very very frequent in large projects, especially if military. The changes have been taken into account in the design for the second and subsequent submarines (S81, S82, etc). The first submarine (S80) will be fixed by making it a bit longer and adding some floating aids. Source: I work in this project. Next time you want to say stupid things about very serious projects, please warn us you are drunk.

    J D Exposito

  2. Re:It's not for bare NAND on Samsung Creates New File System F2Fs For Linux & Android · · Score: 1

    If this is the case, then I don't see the point. Filesystems already in use support TRIM.

    Just because you send TRIM down it doesn't mean that the device can erase the block. The erase block size in NAND is usually 256KB or larger. Using 256KB as IO block is just crazy, drivers use something like 16KB or 32KB. The filesystem has to be aware of the erase block size so it can send down TRIM command for an aligned and contiguous 256KB block, then the device can go on and erase it.

  3. Re:SSD Drives on Samsung Creates New File System F2Fs For Linux & Android · · Score: 3, Insightful

    SSDs are NAND, but they are not bare NAND. They have control circuitry which manages the problems with NAND (e.g. bad blocks), and presents the drive as a contiguous block of good storage.

    These filesystems are all for bare NAND, not SSDs, which include NAND, but are not bare NAND.

    How can this be "Informative", it's plain wrong. f2fs works on top of block devices.

  4. It's not for bare NAND on Samsung Creates New File System F2Fs For Linux & Android · · Score: 5, Informative

    No. SSDs present themselves to the OS as contiguous block devices. Filesystems intended for bare NAND flash like jffs(2), yaffs, and this new F2Fs would be totally useless for SSDs. They're intended for bare NAND, which SSDs are not.

    You're wrong

    f2fs work on top of block devices. f2fs sends TRIM (ATA command) down to the device. Bare NAND flash doesn't grok ATA commands.

  5. Re:what the on Asus Unveils Quad-Core Transformer Prime Tablet · · Score: 1

    So the OP means: "Get an iPad so you can look like your grandmother" ! hmmm.

  6. Re:Intruiged on Asus Unveils Quad-Core Transformer Prime Tablet · · Score: 1

    Does your notebook last 12h, 16h or 18h? An out-of-battery notebook cannot do anything.

  7. Re:Challenge for tablet makers on Asus Unveils Quad-Core Transformer Prime Tablet · · Score: 1

    at 21", it would be a tabletop and not a tablet.

  8. Re:Questions about this device on Asus Unveils Quad-Core Transformer Prime Tablet · · Score: 1

    1. It has the best (claimed) battery life (when used with the dock) 18h. Kal-El, with 40Mbps video capacity, should (in theory) handle any kind of HD video including BR rips. NEON+quadcore should be good for games (NEON wasn't supported in Tegra-2).

    2. The 4+1 is transparent to the OS, according to Nvidia.

    3. Linux kernel will scale and spread tasks among avail cores. whether a game will spread intensive jobs to multi-threads? well it depends on the game...

    4. Do you play games all the time? well get a console then.

  9. Re:C++ programming cultists? on Paid Developers Power the Linux Kernel · · Score: 3, Funny

    make xconfig!!!!

    Then you probably can claim that Linux is written partly in bourne shell.

  10. it's simply ignorance! on Linus On Branching Practices · · Score: 2, Interesting

    The kernel devs don't do development on master! However, git's fast-forward-merge will, by default, push development/intermediate commits onto master. Those intermediate commits are extremely useful for code-inspection/code-review and bisect-based debugging. They're are not meant for starting a new dev branch and that why they're not tagged! There's nothing new or interesting in that article other than a bunch stupid comments at the bottom. The whole thing smells like a disguised advertising for PlasticSCM

  11. some info about ipex on NewEgg Confirms Shipping Fake Core i7s · · Score: 1
  12. Re:They didn't account for administration on Ubuntu: Best Linux Desktop for Business? · · Score: 1
    Why don't you read the article?
    ...the very corporate Red Hat Desktop 4, could prove a sensible option for companies with large numbers of desktops.
    ...Our Editor's Choice for the small business, however, is the solid, well integrated and free Ubuntu Linux 5.1.
  13. Re:Java-trolls are clueless, as usual... on More Effective Use of Shared Memory on Linux · · Score: 1

    first you claimed "synchronized" methods can sync across JVM boundary. once, proven to be wrong, you came up with java.nio. Now, please enlight us how java.nio can do inter-JVMs mutual exclusion?

    And how is it better than pthread mutex (with NPTL), which is very fast (on non-contention path, it's only dozen instructions no syscall) and provides inter-PROCESS mutual-exclusion.

    We not talking about thread here, the article is abound inter-PROCESS communication.

  14. Re:Fanboy mods... on More Effective Use of Shared Memory on Linux · · Score: 2, Informative

    you forgot xxxBSD and Gentoo.

  15. Re:There are better ways on More Effective Use of Shared Memory on Linux · · Score: 2, Interesting

    1) shm_open(2) is already mentioned in the 2nd post.

    2) dont u know that NPTL is already doing this for u? On fast-path, NPTL's posix mutex just do atomic operations and avoid doing syscall. Stick to the standard API and let the platform guys (libc, kernel, ...) do the optimization. They're smarter than u.

    3) u dont want to do this, seriously! if futex is that consummable by the public, then why did the glibc guy write a looooooong paper describing howto use futex.

  16. Java-trolls are clueless, as usual... on More Effective Use of Shared Memory on Linux · · Score: 2, Insightful

    The article is about shared-mem and synchronization accross process boundary! In Java that would mean: object that are shared between VMs; methods are are serialized across VM boundary.

  17. SysV IPC is obsolete on More Effective Use of Shared Memory on Linux · · Score: 4, Informative

    some1 should tell the authors to rtfm.

    $ man shm_open

  18. Re:Most polar? on Interview with Tom Lord of Arch Revision System · · Score: 1
    The one thing that ClearCase got it right is when you uncheckout a file. In most modern CMSes, when foo.c is unchecked out, it would become older.
    • clearmake would rebuild the foo.o because it detected foo.c has changed.
    • make would not rebuild foo.o because foo.o is still older than foo.c
  19. Re:All that and he doesn't explain... on Interview with Tom Lord of Arch Revision System · · Score: 1
    I think he explained it before on the list, for him a CMS is:
    • a system to manage and manipulate changesets. i.e. from the (atomic) unit of change is the changeset and not the file version.
    • history-sensitive merge and multi-strategy merge.

    I've never used arch but the two CMS that I used, prcs and UCM/ClearCase, both exhibit the above properties. I really like prcs especially for small local (over nfs) projects.

  20. google's getupdates on Top Ten Linux Configuration Tools? · · Score: 1

    http://www.computerworld.com.au/index.php/id;13062 81842;fp;16;fpid;0

    it's good for google's giant farm, it should be good for any lab.

  21. Re:Alliances... on Japan, China, S Korea Agree To Standardize Linux · · Score: 1
    % cat /proc/cpuinfo

    processor : 0
    vendor_id : GenuineIntel
    cpu family : 15
    model : 1
    model name : Intel(R) Pentium(R) 4 CPU 1.80GHz
    stepping : 2
    cpu MHz : 1794.715
    cache size : 256 KB
    fdiv_bug : no
    hlt_bug : no
    f00f_bug : no
    coma_bug : no
    fpu : yes
    fpu_exception : yes
    cpuid level : 2
    wp : yes
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm
    bogomips : 3567.44
    --
  22. All dynamic languages are LISP wanna-bes on Java Evangelist Leaves Sun After MS Settlement · · Score: 2, Interesting
    Perl6 is already in the middle of its mutation into a Lispish language. Just read the Perl6 apocalypses:
    • Lexical Closures
    • Continuation and Continuation Passing function call. I'm not sure if Perl6 has (or will have) call/cc or not.
    • Syntax-based macros.

    It might be mistaken as a description of Scheme's features.

    --
  23. Re:Alliances... on Japan, China, S Korea Agree To Standardize Linux · · Score: 3, Funny
    my-box% time emacs21 --no-site-file -q -f kill-emacs

    emacs21 --no-site-file -q -f kill-emacs 0.15s user 0.05s system 56% cpu 0.351 total
  24. Re:It's not about our rights, its about the copyri on Music Industry Loses In Canadian Downloading Case · · Score: 1
    Very correct, quote from the Globe-and-Mail:
    According to the judge, placing files on a shared directory does not amount to distribution of the files. Before it constitutes distribution, he said, there must be a positive act by the owner of the shared directory, such as sending out copies of the files or advertising that they are available for downloading. "I cannot see a real difference between a library that places a photocopy machine in a room full of copyrighted material and a computer user that places a personal copy on a shared directory linked to a P2P service," he wrote. "In either case the preconditions to copying and infringement are set up but the element of authorization is missing."
  25. Re:Stop whining about QT licence... on Novell Desktop To Standardize On Qt [updated] · · Score: 1
    Please specify a single popular commercial app that uses GTK...
    VMWare 4.x
    % ldd /usr/lib/vmware/bin/vmware

    libdl.so.2 => /lib/libdl.so.2 (0x4002a000)
    libm.so.6 => /lib/libm.so.6 (0x4002d000)
    libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x4004f000)
    libXext.so.6 => /usr/X11R6/lib/libXext.so.6 (0x40117000)
    libXi.so.6 => /usr/X11R6/lib/libXi.so.6 (0x40125000)
    libgdk_pixbuf.so.2 => /usr/lib/libgdk_pixbuf.so.2 (0x4012d000)
    libglib-1.2.so.0 => /usr/lib/libglib-1.2.so.0 (0x40142000)
    libgmodule-1.2.so.0 => /usr/lib/libgmodule-1.2.so.0 (0x40163000)
    libgdk-1.2.so.0 => /usr/lib/libgdk-1.2.so.0 (0x40166000)
    libgtk-1.2.so.0 => /usr/lib/libgtk-1.2.so.0 (0x4019a000)
    libc.so.6 => /lib/libc.so.6 (0x402b8000)
    /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)