Slashdot Mirror


User: _bernie

_bernie's activity in the archive.

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

Comments · 11

  1. goat-time with wind, pole, dragon inter help? on Ask Slashdot: Do Most Programmers Understand the English Language? · · Score: 1

    > Google translate will do the job well enough for non-English speakers
    Yeah, like in this case. Please apologize for your stupidity :-)

  2. Affects the Thinkpad X220 on Stubborn Intel Graphics Bug Haunts Ubuntu 12.04 · · Score: 1

    I see this bug regularly on my Thinkpad X220 laptop running Ubuntu 12.04. Is there a tracking bug on Launchpad or in the Freedesktop bugzilla?

  3. Reconstruction of the incident on GNU Savannah Site Compromised · · Score: 1

    Free Software Foundation website published a detailed chronology of the incident.

  4. Re:Animated quaternion on "Mandelbulb," a 3D Mandlebrot Construct, Discovered · · Score: 1

    Not to rain on your parade ... but the article's mandelbrot looks a hell of a lot more detailed.

    We're comparing a power 8 version of the generlized Mandelbrot formula (Zn+1=Zn^k + C, with k=8) against a power-2 quaternion Julia.

    In the epilogue, the author admits that there's less variety in the Mandelbulb-8 than even in the classic Mandelbrot.

  5. Animated quaternion on "Mandelbulb," a 3D Mandlebrot Construct, Discovered · · Score: 4, Interesting

    The common Mandelbrot set is really a 2-dimensional slice of a 4-dimensional object identified by both the combination of the complex numbers Z0 and C in the canonical Zn+1 = Zn^2 + C. The mandelbrot set lives in the plane where Z0 = 0 + 0i, while the Julia sets live on infinitely-many-squared orthogonal planes in the remaining two dimensions, each one intersecting Mandelbrot's plane in a single point of complex coordinates C.

    Visualizing this hyperspace monster was made easy by POV-Ray. It took my computer two week of computation to render 80 seconds of animated 3D slices of a the quaternion. Check out the scene source.

    /me looks forward for a real-time Julia4D explorer.

  6. Re:The Sugar Labs home page on $100 Laptop Platform Moves On · · Score: 2, Informative

    Not for myself, but if I had kids, certainly. Sugar is a desktop choice on Fedora and Ubuntu. Not sure about Debian.

  7. The Sugar Labs home page on $100 Laptop Platform Moves On · · Score: 5, Informative

    Surprisingly, nobody posted the URL yet: http://www.sugarlabs.org/ .

  8. Impossible... on Can Microsoft Out-Google Google? · · Score: 1

    ...Microsoft won't ever be able to gather enough Pigeons.

  9. It crashes a lot on Mozilla 0.9.2 Storms Out The Gates · · Score: 1

    Hey, I've just installed this new version and already managed to crash it five or six times viewing very popular pages. Besides, the Java plugin installation still doesn't work for me. I've reported all these incidents with the talkback agent, so perhaps next time it will be better.
    //BernardoInnocenti

  10. Overwriting data with dd does not suffice on The Pentagon Discovers dd · · Score: 4

    Even with old Amiga floppy disks there were ways to retrieve some bits of data after a full format or overwrite. Blocks are separated by small gaps and tracks don't take up the whole 360 degrees of magnetic surface. On the Amiga, the disk controller was optimized for speed so it would not bother waiting for the index signal before starting to rewrite a track. Each time you rewrote a track, it would occupy a different section of the circle, leaving some old data where a clever guy could still retrieve it.
    Today's hard drives are much more sophisticated than this, so they sure leave many more chances open to retrieve old data in original ways.
    //BernardoInnocenti

  11. This stuff is outdated! on The Object Oriented Hype · · Score: 1

    It's already 5 years that OOP design has lost its hype.

    Get some recent books on C++ or general design
    topics and you'll see that the focus has already moved away from classic OOP. Today's hype is mostly for generic programming (which I second) and design patterns (which I don't like that much). There are *lots* of books suggesting *NOT* to abuse inheritance and other OOP techniques of the past. Yes, even simple
    inheritance is bad if it leads to a deep hierarchy.

    //BernardoInnocenti