Slashdot Mirror


User: meonkeys

meonkeys's activity in the archive.

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

Comments · 16

  1. Re:we have it in pdf, but not in epub on New Book Helps You Start Contributing To Open Source · · Score: 1

    Right on, thanks! Looks like they also just officially released epub and mobi versions.

  2. Re:we have it in pdf, but not in epub on New Book Helps You Start Contributing To Open Source · · Score: 1

    Anyone have tips on how to actually produce a decent-looking epub ebook with pandoc or latex2html/Calibre?

    I tried several incantations of pandoc, none of which produced more than gibberish. For example: pandoc -w epub -o Open-Advice.epub -S -s Open-Advice.tex

    latex2html got much further (generated a real HTML book), but it had tons of munged words. I didn't bother trying to munge the mess to epub.

    From what I can tell, the conversion tools can help, but the source text really has to have epub in mind if that is to be a useful build target.

  3. Gobby Slashdotted? on FOSS Multicast Document Sharing? · · Score: 1

    Dang, looks like perhaps the Gobby Web site went down under the load. Anyone have a mirror? I just set up a Gobby server and want my coworkers using Windows and Mac to be able to try it out, if clients exist for those platforms.

  4. Smiley Your Bash Prompt on The Smiley Face Turns 25 :-) · · Score: 1
    It's useful. Really!

    Add the following to your ~/.bashrc or to /etc/bashrc or something like /etc/profile.d/bash_smiley.sh ...

    # ~ the Emotiprompt(TM) ~
    # idea came from: http://linuxgazette.net/122/lg_tips.html#tips.1
    smiley() {
      err=$?
      if [ $err == 0 ]
      then echo ':)'
      else echo ":( $err"
      fi
    }
    PS1="\$(smiley) [\u@\h \W]\\$ "
    If you like it, let me know!
  5. Re:Why is it so good? on Ubuntu 5.10 "Breezy Badger" Released · · Score: 1

    I was quite impressed that after installing a few packages via synaptic I was able to compile and run C# program, something I found not-too-straightforward with Fedora Core.

    Packages to install first, including dependencies: monodevelop, libgdiplus

    Then, compile the code pasted here with mcs or monodevelop

    .
  6. Re:Well, it does work. on Google's Blog Search · · Score: 1

    If what you say is true, the definition on wikipedia is incorrect. -- Adam Monsen http://adammonsen.com/blog/

  7. Re:Biodiesel! on Practical Method for Getting Oil from Oil Shale? · · Score: 1

    I concur, biodiesel is great. It is now cheaper than petroleum diesel in some parts of Seattle, Washington, USA.

    Algae cultivation looks especially promising as a source of fuel oil (biodiesel is made from oil). According to From the Fryer to the Fuel Tank, algal harvesting could potentially yield 4 to 40 times more oil than canola/rapeseed farming per acre.

    If algae was cultivated using 1/60th of the currently fallow cropland, tens of billions of litres of oil could be produced, at a price of about $1.65 per gallon!

  8. Re:GUI frontend for SVN on KDE Switches to Subversion · · Score: 1

    There exists plugins for using subversion within Vim and subversion within emacs.

  9. EmperorLinux Rocks on 3D Linux Laptop Available · · Score: 1

    I just bought the Meteor (Sharp Actius MM20) from EmperorLinux. I highly recommend the laptop and the company. I was able to unpack the box and turn it on the moment it arrived, ready to go! The support is quite helpful as well.

  10. Aforementioned In-Development Plugin on A New Type Of Realtime Blocklist: The SURBL · · Score: 1

    Is spamcopurl the one you're referring to?

  11. other cool articles in this issue on Linux Used To Make "Star Trek, Nemesis" · · Score: 1
    'zero copy', using the sendfile() system call -- this is pretty interesting stuff

    screen -- intro to a kick-ass console-based "window" manager

    quicksort -- understand the classic algorithm using DDD (shameless self-promo)

  12. Re:RPM?!?!? on OpenPKG 1.0 Released · · Score: 1

    THANK YOU. tarballs/bz2balls are much more cross-platform than rpm or deb packages. If you need an rpm or deb package, make it yourself if someone hasn't made it for you.

  13. Re:My take on it. on APT - With Your Favorite Distribution · · Score: 1

    I agree with your main point, if that is that there is no silver bullet for package management. I also agree that the best package management system in the world can't make up for bad packages.

    However, many of your supporting statements are baseless and subjective...
    "Most Debian Developers take care of a *single* package."
    What? How do you know?
    "the Debian packagers *care*"
    Really? More than people who make rpms? How much more do they care? "Debian Developers arn't lazy"
    Thank heavens. Are you inferring that people who make rpms are lazy? "A few dozen? Full-time?"
    Well, I made source and binary rpms for a package called x2vnc, but I don't know how many people use it. Still, anyone is welcome to contribute RPMs to rpmfind.net.

    I'm just being a jerk. I am interested in Debian, but I'm lazy. I'm trying to poke holes in the distribution so I don't have to go through the trouble of switching from RedHat.

  14. Practice what you're preaching, Joel on How To Make Software Projects Fail · · Score: 1

    Joel seems to be a strong advocate of code reuse and understands the stalwart value of "old code". Why then, does his comany, Fog Creek Software implement their own proprietary bug tracking system, "FogBugz" when there are perfectly awesome bug tracking systems out there, like Bugzilla?

  15. Re:Which came first on CEO of RIAA Speaks at P2P Conference · · Score: 1, Informative

    Here's one story

  16. A solid replacement for SQL Navigator on Open Source Software in a Windows Environment? · · Score: 1

    TOra is an awesome database utility that runs on Linux and Windows that could be used to replace SQL Navigator. It can connect to Oracle and MySQL.