Slashdot Mirror


User: EETech1

EETech1's activity in the archive.

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

Comments · 777

  1. Re:Losing Allard was a real loss to MS on The Story Behind the Demise of the Microsoft Courier Tablet · · Score: 1

    With all those smart people, they should be able to create a virtual leader that uses solid reasoning when developing new product strategies, and multiple kinects to provide the vision!

  2. Re:This just in on Things That Turbo Pascal Is Smaller Than · · Score: 1

    Oh to have 128 bytes of RAM... Just think of the Variables!!!

    I had inherited a project that needed to add logging capabilities, and the current micro was full so they could not add the code to interface to the dataflash. I rewrote the 16Kb application to fit in 3Kb, and wrote a 1Kb booloader to allow reprogramming, and used it to store the Variables in the newly freed 12Kb left of the chip. I was able to give them all the features they wanted to add to the base code as well as add and improve the logging feature, and implement it as a software change instead of a compete hardware and software redesign.

    All the functionality in the existing 16Kb of code fit easily in 1.5Kb, and it no longer randomly missed messages from spending 20% CPU on saving and restoring a bunch of registers that were never used by the functions that were being called over 200,000 times a second. Not knowing what the code looks like coming from your compiler can be very dangerous! They had spent quite some time optimizing the application too, but never looked at the assembly they were generating as a result of those changes, or followed the code while it was executing to see what was really happening!

    Cheers!

  3. Re:Pascal v/s C on Things That Turbo Pascal Is Smaller Than · · Score: 1

    My cat loving tree hugging not a technical bone (:besides mine:) in her body ex-girlfriend took Pascal programming her junior year of high school in 1990. I still remember helping her get the hang of the whole thing and trying to grasp how the Hell it all worked and what it all meant. She did get the hang of it, and wrote pretty good code on her own after a while, but never really saw the importance of it, or cared that much about computers to continue on after that semester.

    We still get together every once in a while, and laugh about her learning Pascal. Just like we did in high school...

  4. Re:This just in on Things That Turbo Pascal Is Smaller Than · · Score: 1

    I did some programs for the Atmel Tiny15, and it has no RAM at all (you could use a hardware location if not using the hardware, ie if not using SPI you could use the data register to store a byte) just the 32 registers for the CPU, and room for 512 instructions in flash total! That's plenty to read and filter a few ADCs, perform table lookups with interpolation, run a task scheduler, update discrete and PWM outputs, watch for faults and program errors, save adapted data to EEPROM, and have 4 different 32 point lookup tables, and different program logic and filter coefficients for 4 different automatically selected operating configurations. I still had a couple hundred instructions left!
    It's amazing what you can do for free in assembly with proper program design, and layout!

    I also adapted one of these modules, and had it running my Lawn-Boy EFI for quite a while with a hobby airplane servo providing ETC control for the governor as part of an ultra-low cost EFI solution I was pimping for a while! It had cold start enrichment tables, PID control for the RPM, overspeed, digital throttle up / down buttons that could also change the fueling on the fly, as well as an LCD screen (backpack on the LCD did the control) for displaying almost everything at once when calibrating or just mowing. It never missed a beat, had plenty of CPU time left @ 8 MIPS and that still had about 100 instructions left.

  5. Re:Not provably secure on OpenBSD 5.0 Unleashed On the World · · Score: 1

    Wouldn't the ideal OS prohibit any application from doing anything malicious to the rest of the system?

    Don't we somewhat measure OS security as a function of how hard it is to compromise, and the damage that can be done by the various exploits? Example, a buffer overflow. One OS might detect the out of bounds condition and terminate the application, while another OS might happily execute whatever you put there.

    I agree that a buggy application could be the starting point to compromise any OS, but I think the damage that can be done is largely a byproduct of the design and security features employed by the OS.

    Cheers!

  6. Re:Not provably secure on OpenBSD 5.0 Unleashed On the World · · Score: 1

    I admit I didn't remember which one it was and was too lazy to go back and look.

    Do the FreeBSD folks not proclaim their OS as having any of the inherent security of the Other BSDs? In my ignorance I thought they would all make similar claims of a more secure than most nature.

    At least you got a laugh at my expense! I hope I made your day a little bit brighter! You are well on your way to my learn something new every day!

    Cheers!

  7. Re:Euros? on Hobby Inspired Electric Multicopter Makes Manned Flight · · Score: 1

    My friend lost power in a storm a few months ago, and I rigged up a male to male extension cord, and plugged my inverter into his wall outlet, and we backfed power into his house to keep a few things going. I was charging group 31 deep cycle batteries on my commute to work, and I measured that they held almost exactly 1 KwH of energy each. Depending on the type of charge it took anywhere from 1.3X to 2.0X to charge them.

    It is definitely interesting trying to live on 1 - 2 KwH a day and keep stuff going. Thank goodness for the kill-a-watt, gas hot water heaters, and city water pressure!

  8. Re:Not provably secure on OpenBSD 5.0 Unleashed On the World · · Score: 1

    The kiddie porn sites that anonymous took over were BSD. I had to laugh again when I saw that!

    Cheers!

  9. Re:One of many causes of problem on Student Loans In America: the Next Big Credit Bubble · · Score: 1

    or give them 25% of the money up front, and the rest after the student graduates. base the final % of that pay on a standardized exit exam for their particular area of study. this way the school can't just give them the diploma, and perspective students also get an idea of the quality of graduates from the school as well.

    I'd bet that the for profit schools would harass the students to get back to class harder than the collection agency would harass them for the late payments!

  10. Re:What is the big deal? on Quiet Cellular Antenna Tech To Boost S. African SKA Bid · · Score: 1

    Somebody Please!

    calculate how far away (skyward) the SKA could actually hear a GSM phone!

    Probably way past the moon, but I could be guessing...

    Thanks!

  11. Re:Rossi is not a scientist on 1 MW Cold Fusion Plant Supposedly To Come Online · · Score: 1

    in the newly released video, they come straight from a big ass generator! of course it was only used to preheat the devices, but ran throughout the test due to safety reasons!

  12. Re:Classic trick on How To Rob a Bank: One Social Engineer's Story · · Score: 1

    where I man???

    Was it you?:)

  13. Re:Show me your work! on Android ICS Will Require 16GB RAM To Compile · · Score: 1

    Thanks for the reply. I guess I was going off the assumption that 1 hour of wall time == 1 hour of 1 CPUs time @ 100% utilization. While hyperthreading may allow the CPU to achieve higher throughput than without it, it seems odd that it could allow for 130% utilization.

    Is that 1.3X factor commonly used when converting CPU time to wall time on a hyperthreading setup?

    Will the CPU time calculations in your system monitor of choice reflect this difference when compared on similar CPUs with and without hyperthreading?

    With everything else that is going on behind the scenes to shuffle data around, and keep the system running (OS) it is amazing that every single computing resource available would spend 130% of its time compiling! Does the CPU time calculation assume (or calculate) some overhead for the OS and everything else (task switches, IO, waiting) it has to do so that CPU time is more an approximation of what should be left available for applications instead of the raw percentage of the actual clock cycles used?

    Thanks again!

  14. Show me your work! on Android ICS Will Require 16GB RAM To Compile · · Score: 1

    Can I see the math? Even rounding up to 30 minutes wall time on 8 CPUs would only get you a maximum of 4 hours CPU time. Unless I'm missing something?

  15. Re:16 Gigabytes RAM costs $100 on Android ICS Will Require 16GB RAM To Compile · · Score: 1

    maybe he meant the productivity increase due to the time saved from the ram upgrade, even through it was the more expensive ecc type ram.

  16. Re:Stability is NOT achieved that way. on Hobby Humanoid Robot KHR3HV Rides Bike At 10k/h · · Score: 1

    Changing wheel speed gives you rotation in the air Sir Newton!

  17. Re:Stability is NOT achieved that way. on Hobby Humanoid Robot KHR3HV Rides Bike At 10k/h · · Score: 1

    I remember reading about The Wheelie King about 25 years ago and this dude could ride wheelies literally forever, but he had to have an electric motor on the front wheel to keep it spinning for balance. You would think if anyone could ride successfully without the front wheel spinning, The Wheelie King could.

  18. Re:is there a helium shortage? on Canadian Company Plans Solar-Powered Heavier-Than-Air Airships · · Score: 1

    I guess space is not a total vacuum then as well!

  19. Re:is there a helium shortage? on Canadian Company Plans Solar-Powered Heavier-Than-Air Airships · · Score: 1

    I thought it escaped into space? Have I been misled? Where does it go?

  20. Re:Lego, Lego Lego !!! on DARPA Proposes Ripping Up Dead Satellites To Make New Ones · · Score: 1

    I remember reading this on the back of every Lego instruction booklet when I was a kid. These are Lego bricks, or Lego blocks, please do not call them Legos as this is not the trademarked name. Funny what sticks in your mind after 30+ years! I remember reading that over and over and pondering the difference, and why on earth it would matter!

    Cheers

  21. Re:Queue the negative comments on Feds Take USAjobs.gov Back From Monster, Performance Tanks · · Score: 1

    shampoo owns your post!
    and this one too!

    Cheers!

  22. Re:How long until... on OCZ Releases First 1TB Laptop SSD · · Score: 1

    I just love booting my pc in 6 seconds and going to my photo manager and before you can blink an eye... Scrolling through thousands of photos as thumbnails, and seeing every one no matter how fast I scroll, or what size the pics are, and changing zoom is instantaneous! I have sold 5 SSDs now to friends just based on that!

    I never see an IOWait anymore. Truly magical!

  23. Re:Word of warning on Will Apple Let Siri and Apps Connect? · · Score: 1

    That could prove troublesome if you have a lot of texts with oooo mama you looked good last night. Perhaps defining that relationship might save some embarrassment!

  24. Re:Nice distro but they messed up the desktop on Ubuntu Turns 7 · · Score: 1

    Check out Bodhi Linux and E17. Exactly what you are asking for, and more!

  25. Re:Yeah... on Actress Sues IMDb For Revealing Her Age · · Score: 1

    December 29, 2001...
    A day I will never forget!!!
    POP...