Programmer, Gamer

  • 0 Posts
  • 10 Comments
Joined 2 years ago
cake
Cake day: August 11th, 2023

help-circle
  • While many sources of fructose naturally and no reason to think they behave differently than HFCS, high fructose corn syrup to my knowledge uses enzymes to convert glucose to fructose to raise the percentage. (And then re-add corn syrup to adjust the fructose/glucose to a desired ratio)

    How much healthier a simple syrup (sugar split into a 50% glucose and 50% fructose) vs a 60/40 fructose/glucose HFCS is very debatable…

    Really just hates it when you buy something without sugar/HFCS and find it had artificial sweeteners instead… When I wanted no additional sweeteners. looks at canned fruit in cabinet





  • Anything you can do in Jujitsu you can do in git… The big difference is a paradime change:

    -instead of a working directory that has pending changes you need to add than commit, all changes are in a commit that is lacking metadata.

    The system has better “editing” of local history to set that meta data. But once you push to a shared repo you run the usual risks of force pushing.

    I’m not sold, rather git not do anything until asked and just run git status constantly but I don’t have first hand experience… I would theory it would be more likely to add a file you didn’t mean to… Unlike those who use windows guis for git and forget to add new files.


  • Funny those are commands I avoid… They all have to do with editing history which I know there is a vocal group here that loves “clean” history but that isn’t what happened.

    sure merge full features so you can roll back a feature… And if something is really off I might start from a snapshot commit and cherry pick/merge a bunch in but usually history is histoy… If submitting to a public project I may make a new branch with the cleaned version but why edit in line. That is risking issues.


  • EzTerry@lemmy.ziptoLemmy Shitpost@lemmy.worldWe gonna fight
    link
    fedilink
    English
    arrow-up
    2
    ·
    6 months ago

    It’s better not to equate the two parties of the USA to the parties in a parliamentary system it’s a different beast.

    The Democrats are the coalition of the left of center interest groups of the current time, and Republicans the coalition of the right of center interest groups of the current time.

    These groups are more the parties of the parliamentary system and run candidates in the primaries of their respective parties, and possibly as independent from time to time (particularly when they feel a bit pushed out of the main parties). Also they push these candidates at all levels (local, state, congress ect)

    I would love some sort of rank choice/instant runoff ballots to make more choices easier in the voting lineup, however those who are pushing for third parties without trying to run local politicians or promoting policies ect will likely not succeed in that system either.


  • First realize what is being talked about is the generally agreed upon open source definition https://opensource.org/osd

    While it seems they have simplified the license removing some reasons it’s not to be considered open source, it’s still restricting commercial uses in the following two restrictions:

    "You may distribute the software or provide it to others only if you do so free of charge for non-commercial purposes.

    Notwithstanding the above, you may not remove or obscure any functionality in the software related to payment to the Licensor in any copy you distribute to others."

    In short open source would only require the software be distributed with source under the same licensed as recieved, thus can’t restrict it to non-commercial, nor prevent the changing of payment details.

    Obviously it’s a reasonably permissive license, and possibly won’t impact you from using it as an end user. It’s just has some restrictions for the creators to request payment, and to prevent third parties profiting off the product. Think Creative Commons, share alike, non-commercial for software. (While most will consider this fair its not quite fully open)

    One reason they went this route was to prevent third parties form distributing their software with ads and using it in systems they are actively attempting to provide alternatives for (ie software that may spy on your system useage/and call home) the non-commercial clause has more teeth than say MIT where it would be relicensed, or GPL that while the software source would need to be provided might still be embedded in a ecosystem.