Slashdot Mirror


User: thinkwaitfast

thinkwaitfast's activity in the archive.

Stories
0
Comments
4,077
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 4,077

  1. Re:UBI will reach 100% of tax on The Case Against a Universal Basic Income (vox.com) · · Score: 1

    And if China gets 4x more for the same amount of money.

  2. Re:Do the math on The Case Against a Universal Basic Income (vox.com) · · Score: 1

    $1million x 200million people = 200trillion dollars. That's about four times the total amount of money on Earth

  3. Re:That huge cost on The Case Against a Universal Basic Income (vox.com) · · Score: 1

    What happens to someone with an income of $20k/year but owns a million dollars of assets. Do they get confiscated?

  4. Re:Kinds of work? Ekronomics strikes again on The Case Against a Universal Basic Income (vox.com) · · Score: 1

    I've never been forced to work for Robert Greenstein.

  5. Re:Soros? on The Case Against a Universal Basic Income (vox.com) · · Score: 1

    $10,000 wouldn't cover any of those things listed. And I agree with the increasing poverty thing and already have ideas how to make money from it should it ever be implemented, so don't care if it is or isn't.

  6. Who the fuck complains about a company not letting some random outsiders touch their property?

    About twenty years ago, I was visiting Seattle and told my friends I wanted to get a picture in front of Microsoft. We were met by three cars of security guards with flashy lights and asked to leave. I got my picture just before they showed up.

  7. Re:This would be really bad for actual birds on Bird-Shaped Drone Symbolizes New Forms Of Covert Surveillance To Come (mirror.co.uk) · · Score: 1
  8. Re:This is why you can't use solar/wind for base l on Energy Prices Skyrocket in South Australia (yahoo.com) · · Score: 1

    Ask any child of five. And they could have told you this was going to be a problem. I had one of these when I was five and learned a lot about solar.

  9. Re: Uhhh... on Energy Prices Skyrocket in South Australia (yahoo.com) · · Score: 1

    Same here in Arizona. I only need the generator for pumping water or occasional heavy power tool. Maybe 4L/month.

  10. I raise turkeys. The heritage breeds can fly, but they are much smaller and lighter than the kind you eat for Thanksgiving. And by fly, I mean flap their wings enough to jump over a 2m fence.

  11. Re:So race problems always means black right? on Facebook Makes Little Progress in Race and Gender Diversity (theguardian.com) · · Score: 1

    But Asians are counted as white, only sometimes as asian, depending on the point you are trying to make.

  12. Re:wrong premise on Facebook Makes Little Progress in Race and Gender Diversity (theguardian.com) · · Score: 1

    50% of the population has an IQ less than 100. When are these companies going to start hiring more dumb people?

  13. people and animals are squishy bugs

    I believe the appropriate description is

    ugly bags of mostly water

  14. Re:units on New Dwarf Planet Discovered In Outer Solar System (seeker.com) · · Score: 2

    I do astronomy as a hobby and am very familiar with large numbers, math and all things sciency and it's still still all abstract to me. The only other reasonable comparison is how many times further Pluto is than Neptune (and I don't know). Unless you are an astronomer, what would a Earth or Pluto distance reference do for you exactly other than trying to impress people. And if this is all that you're going for, just make up numbers. No one is going to check or even remember what you said. Pluto is 112,765,532,001,875,993 times as far from me right now as the grocery store. There, now you still know nothing but can look smarter to people who are impressed by such things.

  15. Re:units on New Dwarf Planet Discovered In Outer Solar System (seeker.com) · · Score: 1

    No, but it is SI. And pedanticism is what it's all about, not usefulness or practicality.

  16. Re:What's a mile? on New Dwarf Planet Discovered In Outer Solar System (seeker.com) · · Score: 1

    AFAIK, we don't have to tell the government our weight in the US. Dr's always record it in Kg for personal use.

  17. Re:What's a mile? on New Dwarf Planet Discovered In Outer Solar System (seeker.com) · · Score: 1
    I got a GPS for my car ten years ago and haven't looked at a road mileage sign in a decade. What would be the point of renumbering all the road signs if we're all going to have self driving cars next year. Other than being a jobs program?

    The biggest problem is that cities are laid out in mile grids, so saying 'go 4 miles' is the same as saying go four stop lights. Same goes for freeway ramps. Seven miles - take the 7th offramp. Saying get off in 11.2km would be very confusing for most people and necessarily pointless.

  18. Re:Pretty sure I know why these are on the decline on A Medical Mystery of the Best Kind: Major Diseases Are In Decline (nytimes.com) · · Score: 2

    processed foods have provably been harmful to our health

    Maybe. But uncooked rice sucks.

  19. Re:good code too on Assembly Code That Took America to the Moon Now Published On GitHub (qz.com) · · Score: 2

    I worked on a system with about a dozen different angle formats, depending on who was using the data...SAF8, SAF11, SAF13,...

  20. Re:good code too on Assembly Code That Took America to the Moon Now Published On GitHub (qz.com) · · Score: 2

    It's commonly called scaled integer. Except with angles, then it's SAF, for scaled angle format. Wraparound @360 is handled very cleanly.

  21. Re:good code too on Assembly Code That Took America to the Moon Now Published On GitHub (qz.com) · · Score: 1

    Scaled integer math is still very common. I still use it regularly, especially with angle formats. My favorite job ever was writing a 56bit integer math package. Had to keep the precision of a 429bus after numerous operations. I never checked, but it was probably higher precision than IEEE754. Since the range of the numbers was known, some of the mantissa bits could be used for the characteristic part and it was very fast, even on low end hardware.

  22. Re:Idiots. Idiots everywhere. on Assembly Code That Took America to the Moon Now Published On GitHub (qz.com) · · Score: 1

    Not really. You need a lot of altitude. Acceleration from gravity is about 60% that on the surface as far out as geosynchronous orbit.

  23. Re:Idiots. Idiots everywhere. on Assembly Code That Took America to the Moon Now Published On GitHub (qz.com) · · Score: 2

    This code has been available for a long time. I downloaded it and got it to run in the simulator about ten years ago. I think I probably even read about it first here on slashdot. It was on some guy's website. He even built a copy of the original hardware.

  24. Re:development environment? on Assembly Code That Took America to the Moon Now Published On GitHub (qz.com) · · Score: 2
    It's not always about 1% more performance. For a lot of specialized MCU's, there is no other language. Assembly is not that difficult and for control systems, I've never seen complex code. It's always:

    start: ;; start of frame

    if overrun == 1 ; check for frame overrun

    goto frame_err

    overrun = 1

    read value1 ; read all data at start of 10ms frame

    read value 2

    ...

    read valuen

    output1 = 2*value1

    ...

    outputn = 4.17*valuen

    write output1, output2, ..., outputn

    wait for interrupt

    read radaltswitch

    if radaltswitch == 1

    call procradalt

    overrun = 0 ; clear frame dirty bit

    for(;;) ; wait for interrupt to return to start:

    Not much optimization to be done. Not a difficult piece of software, even in assembly

  25. Re:Switch? on Ask Slashdot: How Often Do You Switch Programming Languages? · · Score: 1

    Reminds me of the old days..

    That's the only reason I do computers anymore. The new stuff is not so fun, even with arduino and rpi. I recently (re)started with my old atari computer. Still works after 36 years. Reading the retro sites, I never realized how much it was targeted toward gaming.