• 46 Posts
  • 49 Comments
Joined 5 months ago
cake
Cake day: May 6th, 2024

help-circle
  • Doctors in the US never ever prescribe herbs or supplements. On rare occasions when you have a legitimate vitamin deficiency, verified by blood work, they will prescribe medical grade vitamin tablets, from a pharmacy that has actually tested the vitamin content of the product. Vitamin D deficiency is quite common, and while rare, scurvy (vitamin C deficiency) can happen if someone is malnourished.

    My doctor has told me on more that one occasion that herbal supplements are completely unregulated, many don’t contain even a bit of the claimed herb, and sometimes have legitimately harmful plants mixed in, as if someone just gathered a bunch of weeds, dried and ground them up.





  • Here’s what I’m reading:

    startup-script line 27 threw the error.

    I’m reading this and interpreting that line 27 of that script is

    sudo echo "# FYI quotes(") must be escaped with \ like \"

    I am confused why there is no trailing double quote, the last 3 chars should be \"" so perhaps this is a bad assumption but the best I can do with the available information.

    So the fix here is to change startup-script line 27 so that you’re not echoing things that might contain characters that might be interpreted by echo or your shell.

    Now if startup-script is provided by your distro, there may be a reason that it’s using echo, but I will tell you now whatever dipshit reason they provide they’re fucking wrong because EXHIBIT A: # " fucks the script and rule 0 of linux is “don’t break userspace”.

    Everything else allows any printable char after the # in a comment, that script is not special, comments are not to be interpreted by the program. That is a show-stopping bug in startup-script and must be fixed.

    EOF



  • i think the real error was that you started the echo with a double quote and ended with a single quote. had you properly wrapped it with single quotes it would have worked. even if you had escaped the double quote, there still would have been an error because you’d have a multi-line string with no ending " (the 2nd double quote was properly escaped so that would not have terminated your string)

    Also, you didn’t escape your slashes.

    Either it should have looked like this:

    echo '# FYI quotes(") must be escaped with \ like \"'

    or this:

    echo "# FYI quotes(\") must be escaped with \\ like \\\""












  • Here’s the list of states and electoral college votes:

    https://www.archives.gov/electoral-college/allocation

    Just don’t think about the popular vote. It has no bearing on who wins the Presidency in the US.

    You can argue that it should but just accept that under the current rules it does not.

    As far as your question “If Kamala wins the popular vote, how much does she have to win by to flip the electoral college to her side?” the only answer is “it depends”

    It depends because as amazingly stupid as this sounds, one vote for a candidate counts either more or less depending on which state it came from.

    Example of California (most people) and Wyoming (least people)

        California:
            Electoral Votes: 55
            Population: 39,500,000
            Weight:  0.00000139
    
        Wyoming:
            Electoral Votes: 3
            Population: 580,000
            Weight:  0.00000517
    

    A vote in Wyoming (0.00000517) affects the outcome of the electoral college much more than a vote in California (0.00000139).

    Another way of looking at it is that one electoral college vote in California represents the will of a little over 718,000 residents, while in Wyoming it represents the will of a little over 193,000 people.

    Things get even trickier when you factor in the fact that some states split the EC votes based on popular vote or district, and other states are a winner-take-all (whichever candidate takes the state takes all the EC votes.)

    It’s a giant complex mess and it cannot be easily related to the popular vote.