Slashdot Mirror


User: Ash-Fox

Ash-Fox's activity in the archive.

Stories
0
Comments
7,748
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 7,748

  1. Re:Allow me to break this down... on iTunes On OS X Finally Has Competition · · Score: 1

    Have you ever looked at what itunes does when you tell it to organize your library for you?

    Yes, it handles classical music very badly. Sorting by composer, year (very important because some composers do the same music at different years), orchestra, original composer etc.

    While I can do this sort of sorting in Amarok, in iTunes it's impossible and screws up the entire directory structure.

  2. Re:Amarok: The undisputed champion on iTunes On OS X Finally Has Competition · · Score: 1

    My Amarok right now has 15,835 tracks queued in the playlist. It states 6 weeks and 5 days of music, and I intend to reach that destination. It's about four days in now, not a single problem.

    It's not the destination, it's the journey that counts!

  3. Re:Amarok: The undisputed champion on iTunes On OS X Finally Has Competition · · Score: 1

    How is Amarok the undisputed champion when it reportedly it can't handle massive playlists? (I haven't tried it myself, but that's what I'm reading.)

    I have 5300 tracks in Amarok currently.

    I'm looking for a linux player that can handle thousands of songs, and ideally would allow me to rate each song as I hear it.

    Amarok does this.

  4. Re:iTunes fanboy troll-story on iTunes On OS X Finally Has Competition · · Score: 1

    1. No auto-cover-fetch for artwork. Amarok has it. So, do quite a few other players. I'm guessing Apple is too chicken-shit to do it because of copyright concerns, but I simply don't care.

    They do have it, but you need a verified (paid) account from Apple to get it.

  5. Re:Average? Average?! Itunes is flat out awful. on iTunes On OS X Finally Has Competition · · Score: 1

    No, you can't skip the registration, you can't do it later, you can lie if you want to but you have to fill these fields out, and if you don't have an internet connection availible it will strongly suggest you register later.

    Use the force quit shortcut keys, it works.

    You get to your desktop, and it's beautiful. You can customize the window decorations, you have the whole choice between 'Aqua' and 'Graphite'. Basically, Graphite is a colorless Aqua

    I don't like it. As for customizations.... Apple is rather primitive, compared to other solutions.

  6. Re:UGH. on iTunes On OS X Finally Has Competition · · Score: 1

    Please, do not start with complaining about iTunes' "lack" of features. Given that BOTH Amarok AND Songbird lack the ability to RIP or BURN music CD's, I don't really wanna hear it.

    Install k3b and Amarok will have the option to launch k3b to do it. Remember, Amarork is part of the KDE desktop and there is no point to replicate functionality that exists in the KDE desktop ten times.

    You know how agrivating it is to try to burn a CD and have it re-direct you to K3B, which then errors out because your audio format, which works fine in Amarok, isn't compatible with IT?

    I don't have that problem, nor can I replicate the issue on fresh installs. Must be just you.

    Batch encoding is a JOKE in Amarok, which is aggrivating given that you realize you're better off settling for converting to MP3 in iTunes using iTunes' crappy MP3 encoder.

    I find iTunes far slower at converting.

    In iTunes, not only is your music added to the player, but so are your playlists, and when you have 10 gigs of music, it's nice to have immediate access to the arrangements of the 20 some odd songs you're enjoying at the moment.

    Amarok adds the playlists too and has done so for as long as I can remember.

    Don't talk shit about Apple's setup 'till you can present an app that's better or at least EQUIVILANT. I'm not talking about compatibility with a handful of devices, I'm talking about actually having that great handful of FEATURES in syncing.

    Personally speaking - I'm not interested in me music player to do more than sync music with my portable devices, but that's me.

  7. Re:Gimme a break on iTunes On OS X Finally Has Competition · · Score: 1

    Oh cool! These will drive my Apple TV, iPod, iPhone

    No.

    let me rip cd's, convert files, stream radio, subscribe to podcasts, drive network speakers, create genius playlists, discover other libraries on the network and allow me to listen to them (at work), and purchase music and video online?

    Yes.

  8. Re:Songbird not for Pre-Intel Macs on iTunes On OS X Finally Has Competition · · Score: 1

    One other thing that Songbird doesn't support is PPC Mac computers.

    I personally don't see the point in porting to a architecture that is incapable of attaining new users and dying quickly.

    Millions of us....

    And you speak for those millions?

  9. Re:Songbird needs music sync support on iTunes On OS X Finally Has Competition · · Score: 1

    Since iTunes won't sync it I was hoping that some open source solution existed. While I was very impressed by how far Songbird has come as a music player, the lack of sync options made me go back to iTunes :(

    You went back to a player that had less features (except for certain Apple lock-in/DRM features), why?

    Additionally, Amarok has full syncing options.

    BUT, since songbird can use fancy plugins, maybe some smart person will realize that we need music sync support for non-ipod devices (and ipods too, I suppose) and write some plugins.

    In my first Google search, I found http://addons.songbirdnest.com/addon/12

    I haven't bothered exploring the other addons.

  10. Re:All well and good but... on iTunes On OS X Finally Has Competition · · Score: 1

    Can it access the iTunes store?

    No.

    Will it sync with my ipod/phone?

    Yes.

    Can I access my iTunes-U account with it?

    I have no idea what that is, so I'll say no.

    They also don't work with Apple DRM.

    So there is no competition really. Sorry to disappoint.

    Indeed, iTunes is the best to use with Apple lock-ins.

  11. Re:Network Transparency? on Wayland, a New X Server For Linux · · Score: 1

    pity standard X over a low bandwidth network sucks balls compared to VNC.

    X actually works fine for me on low bandwith links (high latency GPRS connections - Using X with SSH parameters: -Y -C). VNC however just redraws and redraws and redraws so slowly, and that's with only 256 colours, never mind the full 32bit.

    Additionaly, I can also just run the one specific program I need to run - VNC requires the whole desktop.

  12. Pipe dream! on (Useful) Stupid Unix Tricks? · · Score: 2, Interesting

    Using pipes is one of the most useful things I've found.

    In my signature, a simple HEADER checker:

    echo -e "HEAD / HTTP/1.1\nHost: slashdot.org\n\n" | netcat slashdot.org 80

    Testing your microphone input:

    arecord -f S16_LE -r 3200 | aplay -vv

    Harassing someone by sending your mic input to their soundcard output:

    arecord -f S16_LE -r 3200 | ssh somepersonssystem "sudo aplay -vv"

    Back up something over the network to a file.

    tar --preserve -c -v -z /home/user | ssh address "cat > backup.tar.gz"

    Decompress something that you don't have the space to do on either server or computer, or just don't want to waste time.

    ssh address "cat backup.tar.gz" | tar -xvz

    A few non-pipe related tips:

    Wine prefixes - a method to create unique Wine directories to separate local 'wine' setups.

    WINEPREFIX="~/Steam" wine steam.exe

    If you ever have a game crash, you may have noticed that X doesn't automatically switch back to your default resolution, this can be done with:

    xrandr -s 0 --screen 0

    Hope this was useful to someone.

  13. Re:What *is* the *Actual* Process? on UK ISPs Near Agreement On Illegal File Sharing · · Score: 1

    By having a peer on that torrent that downloads small portions of the file to verify.

  14. Re:Or you can presumably download it from Pirateba on EA Recommends Hilarious Work-Around For RA3 CD-Key · · Score: 1

    The parent isn't trolling, there are many pirated games that are like above. One example is the pirate copy of X3: Terran conflict, requiring you to install disc emulators, mounting disc images, living with the DRM system included which in some cases may require you to actually unplug your real optical drive.

  15. Re:Which OS is Any Other OS ? on Linux Supports More Devices Than Any Other OS · · Score: 1

    it runs on 59 platforms currently (including a toaster).

    Still pretty sure Linux runs on more (considering it runs on devices ranging from mobile phones to supercomputers). Hell, there is even a Linux port for Micro controllers.

    and I can compile the code or get binaries right now for any of them, no crazy patching or anything. and that's for the whole OS (mostly) not just the kernel.

    At least the basic GNU tools have been ported to every platform.

  16. Re:Is there an optout? on Steam Cloud Launches This Week · · Score: 1

    Probably, but I think this is actually fairly common, and Valve doesn't mind because they're actually making enough money to profit anyway.

    If you check out the Steam forums, they make it clear it's a ToS violation whenever someone claims to do it.

    Steam is per user, not per computer.

  17. Re:Which OS is Any Other OS ? on Linux Supports More Devices Than Any Other OS · · Score: 1

    And NetBSD ?

    I honestly don't think NetBSD runs on as many devices as Linux does.

    You don't see homebrew communities working that much on port netbsd either. Just look at the Nintendo DS, Linux there, no NetBSD.

  18. Re:Linux Story on Linux Supports More Devices Than Any Other OS · · Score: 1

    Except when it doesn't. That 'secret sauce' is powerful stuff, but Debian has a rather different approach to package management.

    Indeed! Now if only that person used the distro packages instead of his custom installed ones - How do I know?

    The libraries are in /usr/local/lib/, he said it himself!

  19. Re:Is there an optout? on Steam Cloud Launches This Week · · Score: 1

    If I book came with that ToS it would be laughed out of court.

    You agree the subscriber agreement before doing any kind of purchase. This is different from a book just comming with it. This is the shop dealer telling you the conditions before he allows you to purchase.

  20. Re:Is there an optout? on Steam Cloud Launches This Week · · Score: 1

    I know, but as I pointed out if I couldnt do that then I'm not likely to use steam at all.

    Valve's rules, not yours.

    paid extra to get the steam version of a few games so that we could all share.

    You should of read the subscriber agreement then, you are violating the terms. It's not like they pulled a switch and bait tactic, it's always been that way.

    Otherwise I'd get a used copy from ebay for half the price and the publisher doesnt get a dime from it.

    You were free to do that, but you didn't. Now you're in violation of the terms.

  21. Re:Interesting... on Steam Cloud Launches This Week · · Score: 1

    So who was the Valve employee that literally put the gun to your head?

    The sniper.

  22. Re:Is there an optout? on Steam Cloud Launches This Week · · Score: 1

    I played on his account

    You are violating the ToS.

  23. Re:Canonical on Wayland, a New X Server For Linux · · Score: 1

    It is interactions with and between windows in X that is slow. E.g. without compositing, each windows framebuffer is not stored in memory. That means that when you unminimize a window it has to repaint itself. When you move a window so that a window beneath it becomes visible, that window has to repaint itself. So when you dragged a window on top of a firefox window showing gmail, that would cause huge rendering artifacts and slowdowns everywhere because the gmail gui is constructed using javascript which firefox had to reinterpret.

    I am aware of these facts. Fortunately using a nVidia driver has it's benefits with the few annoyances that plague x.org.

  24. Re:What's wrong with X... on Wayland, a New X Server For Linux · · Score: 1

    Have you ever tried to configure a secure remote X session?

    Yep! Dead easy. I remember when I created dumb terminal clients that just executed "ssh -Y xlogin@host startkde". Worked fantastic.

    The X protocol is verbose, not terribly easy to encrypt, and wasn't designed for it.

    How is "ssh -Y" not easy?

  25. Re:What's wrong with X... on Wayland, a New X Server For Linux · · Score: 1

    Running X apps over an internet link versus a LAN is an extreme case, admittedly - but nevertheless, an old Athena app can do it, while the simplest of GTK or QT apps can have a real problem with it...

    I have ran KDE and Gnome applications over high latency GPRS connections using SSH and X (fixing settings remotely for users)...

    I honestly didn't have any issues.