Slashdot Mirror


User: Arlet

Arlet's activity in the archive.

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

Comments · 1,333

  1. Re:Dont take notes on Should Colleges Ban Classroom Laptop Use? · · Score: 1

    My thoughts exactly.

    I find that taking notes takes away some of the focus that's required to actually understand what's being said. Everything worth writing down should already be in the textbook, or in supplementary materials provided by the teacher.

  2. taking notes on Should Colleges Ban Classroom Laptop Use? · · Score: 2

    I never understood why students need to take notes. When I was in college I never took notes, instead I tried to listen and understand what was being said. The rest of the required information I got from the course material that was prepared by the teacher.

  3. Re:Gross misunderstanding on German Kindergartens Ordered To Pay Copyright For Songs · · Score: 1

    For the little amount of sheet music that gets distributed to preschoolers, they could have turned a blind eye.

  4. Re:Why not use dogs? on Auditors Question TSA's Tech Spending, Security Solutions · · Score: 1

    Knives and small firearms are no serious threat on a plane, when the cabin doors are locked. Bigger firearms and/or ammo can be detected with a metal detector.

  5. Re:Fireworks! on Indian Launch Vehicle Explodes After Lift-Off · · Score: 2

    It is Rocket Science.

    That's not exactly brain surgery, is it ?

    http://www.youtube.com/watch?v=THNPmhBl-8I

  6. Re:Switches? on Make Your Own DHS Threat Level Display At Home · · Score: 1

    You might as well print out the levels on several pieces of paper, stack them all up, and put the correct one on top.

  7. Re:Trivial if you want to go the extra mile on Carrier Trick To Save IPv4 Could Help Spammers · · Score: 2

    Google Groups is a major source of Usenet spam.

    And Google has shown no willingness to filter Groups spam. I used to read Usenet through Google Groups, but it's now totally unusable.

  8. Re:My thoughts exactly on All-Analog DIY Segway Project · · Score: 1

    Passive components have always been shown to last longer than active ones

    A lot of PC motherboards fail because the electrolytic caps wear out, not because the CPU dies.

  9. Re:My thoughts exactly on All-Analog DIY Segway Project · · Score: 1

    It's not harder if you know electronics. A PID op amp needs only 4 op amps, 9 resistors and 2 capacitors. No need to debug

    Obviously, for someone experienced in electronics, a PID op amp circuits is easy, and needs no debugging.

    For someone experienced in microcontroller based digital control, a firmware PID control is easy too, and has no need for debugging either.

    Also, this project isn't just a simple PID controller. They also have filters, mixing of accelerometer and gyroscope data, steering, and PWM motor control.

  10. Re:My thoughts exactly on All-Analog DIY Segway Project · · Score: 1

    True, you can't model a realistic RC filter in one line of code, but you can model a perfect one, which is exactly what you'd want in this case.

  11. Re:My thoughts exactly on All-Analog DIY Segway Project · · Score: 1

    I'd add a second (or even third) gyroscope and accelerometer, and have the controller compare the inputs. If they are too far apart, the controller goes into "failure mode" where it will cut power to the motor. When they are consistent, you can average the values for lower noise.

    Even on the existing design, you can compare the gyroscope and accelerometer.

  12. Re:My thoughts exactly on All-Analog DIY Segway Project · · Score: 2

    The higher part count is surely on the side of the digital controller. Just look at the diagrams offered: analog means direct processing of signals, no A/D. Just some op-amps, pwm, done.

    How does adding some op-amps and discrete PWM reduce part count ? Have you counted all the resistors and capacitors for the filtering ?

    With a digital controller, you can implement the A/D, filtering, control loops, and the motor PWM all inside the same device. You can even avoid some of the A/D stuff by using a accelerometers and gyroscopes with a digital interface.

    and filters are implemented easier with some RCs around an op-amp

    An RC filter can be implemented in a single line of code on a controller.

  13. I get it... on All-Analog DIY Segway Project · · Score: 1

    Instead of spaghetti code, we now have spaghetti hardware :)

    http://www.etotheipiplusone.net/pics/seg/seg_102.jpg

  14. Re:TIME TO BRING BACK CORE !! on Samsung '3D' Memory Coming, 50% Denser · · Score: 2

    With core memory, a read is destructive, so it's not truly static.

  15. Re:Pointer typedefs on Programming Mistakes To Avoid · · Score: 1

    My pet peeve is the unnecessary use of the underscore in struct _FOO. I prefer this:

    typedef struct foo { int blah; } foo;

    I hate caps too, except for constants.

  16. Re:Ugh on Medical Researcher Rediscovers Integration · · Score: 1

    Not exactly. I was talking about fitting a smooth curve through the points, like a higher order polynomial, and integrating that.

    Anyway, once you put the data points in a computer, it's fairly trivial to use any number of methods to get good results. It's amazing that anybody would use inferior techniques.

  17. Re:Ugh on Medical Researcher Rediscovers Integration · · Score: 1

    The curve that the paper is talking about is an experimental result, not a formula.

    Just fit a curve through the data points (or several piecewise connected curves if necessary), and integrate the results the standard way.

  18. Re:Curious... on SanDisk, Nikon and Sony Develop 500MB/sec 2TB Flash Card · · Score: 1

    A 2TB spec is plenty for the next 10-15 years

    Depends on what you use it for, for a portable camera, 2TB is quite large. But some other manufacturer may decide these cards are perfect to replace that noisy hard drive in a PVR, and then the 2TB may fill up fairly quickly.

  19. Re:Curious... on SanDisk, Nikon and Sony Develop 500MB/sec 2TB Flash Card · · Score: 1

    So sending the full address block for each 512 byte sector requested would slow all storage transfers down by about half a percent

    At these high bit rates, the round trip latency for a single sector request is going to be dominating anyway. The obvious solution is to transfer multiple blocks in long bursts whenever possible.

  20. Re:Copyrights Gone Wild!!! on Greg Bear, Others Cry Foul on Project Gutenberg Copyright Call · · Score: 1

    Of course, the Linux kernel code is different because it has been modified and expanded in the last 20 years, and every change to the code has a new copyright. This is different than redistributing the exact same material in different forms.

  21. Re:555 vs MCU on DIY Sound-Activated High-Speed Photography · · Score: 1

    Of course, it all depends, and I've not seen your design, so it could be that a 555 is simpler. In other cases, a microcontroller may be simpler. What's cheaper also depends on the circumstances. Price at digi-key for a NE555 from TI is 29 cents, while their cheapest microcontroller (PIC10F200) is only 34 cents (both @ 100 pieces). The microcontroller also comes in SOT23-6, so it takes up less board space, not even including the C and Rs. And maybe the microcontroller, in the same circuit, can also replace some other functions as well.

  22. Re:I saw this done in the 70's! on DIY Sound-Activated High-Speed Photography · · Score: 1

    Whatever happened to K.I.S.S

    If you already have microcontroller, and know how to use it, it may be simpler than a 555. With most microcontrollers you won't need any external parts, and you can easily adjust the timing.

  23. Re:Much as I love Linux .... on GNU/Linux and Enlightenment Running On a Fridge · · Score: 1

    wouldn't it be handy to leave a roast in the oven and turn it on an hour before you head home from work?

    I'm not really in the mood to prep a roast in the morning before I leave for work. I'll just make one in the weekend.

  24. Re:Possible uses... on GNU/Linux and Enlightenment Running On a Fridge · · Score: 1

    Sounds like a lot of work, even when it works perfectly. I just scan articles with my nose whenever I doubt the freshness.

  25. Re:Put an ARM in the FPGA on Intel Launches Atom CPU With Integrated FPGA · · Score: 1

    I highly doubt Intel is interested in competing in the low-volume, low-performance markets.