Slashdot Mirror


User: willy_me

willy_me's activity in the archive.

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

Comments · 1,010

  1. Re:Software freedom matters. on iPod May Not Have The Horsepower For Ogg [updated] · · Score: 1

    Fine, but a simple script can convert the two. So if you want an iPod to play flac, just convert to Apple Lossless, dump it onto the iPod and you're done. Feel free to keep the copy on your computer as flac, that way you preserve all your freedoms. It's not like the lossy formats where converting reduces quality. It may be a slight inconvenience, but if it matters that much then I'm sure you could write a script to simplify things.

  2. Re:Exactly why would Apple add in... on iPod May Not Have The Horsepower For Ogg [updated] · · Score: 1
    iPods/iTunes now support Apple Lossless - very similar to flac. I did a bit of testing and I found that the file sizes of Apple Lossless were slightly smaller then flac, but the difference was negligible. However, the encoding times for Apple Lossless were far better then those for flac. They must have spent a great deal of time optimizing it.

    Because there is no quality loss in converting between Apple Lossless and flac, it really doesn't matter that iPods don't support flac.

  3. Re:Stick shift on a hybrid? on Brew Your Own Auto Fuel For 41 Cents A Gallon · · Score: 1

    I agree, but then weight isn't an issue for rail transport. In fact, rail transport has recently starting switching from running DC motors to AC with variable frequency drives. I guess the newer electronics allow for effective variable frequency drives. The use of AC motors allows for more powerful motors (due to size limitations) and less maintenance (no brushes).

    There is also less wear on the wheels as it is easier to prevent them from slipping on the track. Also, when the wheels are slightly different sizes, the variable frequency drive can equalize the power going to each wheel. This allows one wheel to turn faster then another to compensate for the larger size. Again, this prevents excessive wear of the larger wheel.

    Kind of cool stuff, I actually visited a rail yard to see this stuff in action when I was taking a technical diploma in computer / power electronics.

    PS, You very well might have known all this, I'm writing it mainly for other readers who might find it interesting. What you wrote is quite true.

  4. Remote boot also reduces noise on Solid-State Mini-ITX Linux Recording Studio HOWTO · · Score: 2, Interesting

    And offers far more storage potential. It's also cheaper then flash. And with the dropping price of gig ethernet, performance really shouldn't be an issue. Of course, it requires a server, but then most people wanting a quiet PC for recording will most likely have another desktop PC with more storage.

  5. Re:Stick shift on a hybrid? on Brew Your Own Auto Fuel For 41 Cents A Gallon · · Score: 1
    This may be how it is ideally done, but current hybrid vehicles don't always use this method. For example, Honda has created a hybrid that directly connects the wheels to the gas engine, just like in todays cars, but then has incorporated a generator/electric engine directly into the transmission (or motor). It looks like some real impressive engineering.. I'm not sure which model has this design, but if it has yet to be released, it will be soon.

    My guess is that the reason they don't use the method you've described is that there is too much energy loss in the conversion and too much weight. You would need powerful electric motors and generators to pull it off. If you used efficient components, they would be too heavy. If you used light components, they wouldn't be efficient.

    I trust the guys at Honda know what they're doing. Future fuel cell powered vehicles will most likely use a method similar to what you've described, but current gas hybrid vehicles aren't heading in that direction.

    William

  6. It doesn't matter how much water it can carry, on Using a 747 to Fight Wildfires · · Score: 1
    what matters is how long it takes to refill. This is what is great about the Bombardier solution - you don't have to land to refill the tanks. Just fly over a nearby lake and suck up the water you need.

    The end result is that more water can be dropped in a day. This is what matters.

  7. But you still buy Windows on Microsoft Blames Anti-trust Legal Fees for Price Increases · · Score: 1

    When you purchase VirtualPC. Microsoft still gets their cut.

  8. Why not use an RFID tag in the licence plate on Road Marker Marks You · · Score: 2, Interesting

    If you want to identify who's driving where. Ignoring the obvious privacy concerns, it's not that bad an idea. For example, my uncle got hit biking by a hit-and-run. Shattered pelvis - never able to bike again. At least with RFID tags in the license plates that would have been able to track down the truck that hit him.

  9. Almost right on Intel to Dump Pentium 4 in Favor of Pentium M · · Score: 1

    Size also makes a difference. It's the speed of the tips of the blades that makes the difference. If you have two fans running at the same RPM then the tips of the bigger fan are going to be moving faster then the smaller fan - hence, making more noise.

    But the general tone of your statement is correct. It is generally better to go with a slower, bigger fan then a smaller, faster fan.

  10. Add statistics to the list. on Math And The Computer Science Major · · Score: 1

    and you have what every CompSci major should know.

  11. Depends on board components.. on Positive Reviews For Nvidia' GeForce 6800 Ultra · · Score: 4, Interesting
    The chipsets are all very similar. It's the external components, filters and such, that determine quality. Matrox has a good reputation because they use high quality components. Same with ATI. NVidia has a poor rep because of all the different card makers trying to undercut each other by using cheaper components. Same is true for the clone ATI boards.

    So long as you have a quality graphics card, it really doesn't matter who's chipset is powering it. For example, even though NVidia has a poor rep, there are still high quality cards out there.

  12. Missed the point on Cocoa in a Nutshell · · Score: 1
    I guess I should have elaborated..

    I mentioned the link because it normally isn't possible to do this with an iBook / iMac / eMac - they only support monitor mirroring. The previous link tells of a patch that allows your external display to act as a separate monitor - basically extending your desktop. It turns a cheap iBook into a powerbook, well, almost.

    I'm not saying to not get a book, I personally love books. But the page I liked to will allow a person to extend their desktop for free. A hand utility for anyone with an iBook / iMac.. Just thought some people reading this might like to know about it.

    William

  13. Use an external display at higher resolution... on Cocoa in a Nutshell · · Score: 1

    Check this out.

  14. Won't work if people use powerful cleaners on The Power of Sewage · · Score: 1

    As anyone with a septic tank / field knows, powerful cleaners have a nasty tendency to kill bacteria - like those that this device uses to help generate electricity. So if this is going to work, people will have to stop using a lot of the popular cleaners out there.

    William

  15. Re:Code rewrites going to be needed? on AMD Could Profit from Buffer-Overflow Protection · · Score: 2, Informative

    Self modifying code won't run on most modern architectures. Take PPC for example, there are two separate caches, one for code and one for data. The code can not be changed during runtime. There are of course lots of programming languages that utilize "self modifying" code but they typically run with an interpreter who's code does not change. I'm not sure how gdb gets around this problem but if anyone wants to enlighten me, I'm listening.

    Apps that use self-modifying code probably only run on one architecture - most likely the 8x86. There are far better ways to protect one's code.

    Self-modifying code is prone to bugs, hard to develop, hard to maintain, hardware dependent, and to top it all off - not that effective at providing security.

  16. Autopilot not cheap on New Draganflyer Predator Unmanned Aerial Vehicle · · Score: 3, Informative

    It looks like an additional 5 grand for the 2028 model. Now they might offer a package deal but it still isn't going to be cheap.

  17. Services cheaper in Canada on Canadians Pay Extra For Their Wireless Hardware · · Score: 1
    For example, I pay $16.99CND per month for a DSL line complete with modem. It includes 2 IP addresses and ~150kbit/s download rates.

    Now I can't speek about cell services, but the same company from which I get DSL also provides cell access. I can only imagine that if they charge more for the phones it is because they charge less for service.

    One thing that people must remember is that people have less money in Canada - less expensive plans are more desirable. This gives individuals a cheaper alternative - admittedly with a cheaper cell phone. At least many people that would normally scoff at cell phones because of their high monthly costs will sign up.

  18. Rule of thumb - don't quote fools. on First Ever Nanotube Transistors On A Circuit · · Score: 3, Informative
    You're assuming that a 64bit cpu will use a 64 bit wide address for memory access. Actually, most don't. I belive 42bits is the common size.

    For a RISC cpu, each word contains an instruction. The address is embeded inside that instruction. With 64bits, this leaves you with a 22bit command and a 42 bit address. The maximum memory addressed is then 2^42 bytes - or four terabytes.

    The advantage of doing it this way is that the entire memory space can be addressed in a single instruction - no complex addressing schemes are required. Simple is good.

    You don't belive me - check the literature on the G5, located here. (See page 7)

  19. Transfer rate of 4.5 mB/s on Mini-iPod Mystery Drive Unveiled? · · Score: 1

    If I recall correctly..

  20. They paid full educational prices on Factual 'Big Mac' Results · · Score: 1

    So they still had a discount..

  21. iPod prices in Canadian - Dell in American funds on Microsoft Launches Portable Music Player · · Score: 2, Interesting

    This makes the cost comparison slightly misleading. One American dollar is about 1.50 Canadian.

  22. G4 has a much better FPU on Apple Updates iBook Line With G4 Processor · · Score: 2, Informative

    then the G3. So the Powerbook should still be significantly faster.

  23. Labels would not have allowed it. on Dell Announces New Music Player, Download Service · · Score: 2, Insightful
    Apple squandered an insane amount of positive free press and a killer lead by initially releasing a "Mac Only" service.

    The record labels never would have gone for a Windows service. By limiting it to Mac users they were limiting the scope of the experiment - basically just checking to see if it was a good idea.

  24. Open standards - not open source... on Embarrassing Governments Into Adopting Open Source · · Score: 4, Insightful
    What the Australian government needs to do is to promote open standards for file formats - not open source. Who gives a damn if you have to pay a couple of hundred bucks for an operating system - the cost of an employees time is far greater.

    But requiring files to be in a particular format, an open format, at least gives open source software a chance. If not now, then in the future. Microsoft is famous for trying to lock users into their software and this would prevent that.

    So what I say is require standards, and use the best software for the job.

  25. Where the poor profs go.. on Do Online Schools Provide A Quality Education? · · Score: 1
    I used to work as a tech for a school district that offered "electronic education" from grades 1 to 10. It is a commonly known fact that this program is where the crappy instructors end up. They might be good people that try very hard, but they suck as instructors.

    You see, it's not that easy to fire a crapy instructor - damn unions. So what they tend to do is place them (or at least, strongly recomend) that they work for these on-line schools. Simply put, they do less damage.