• 0 Posts
  • 17 Comments
Joined 1 year ago
cake
Cake day: June 3rd, 2023

help-circle

  • This is unrelated to this topic exactly, but I don’t know what OpenTofu is nor what it is for, so I looked at the FAQ.

    What is OpenTofu?

    OpenTofu is a Terraform fork, created as an initiative of Gruntwork, Spacelift, Harness, Env0, Scalr, and others, in response to HashiCorp’s switch from an open-source license to the BUSL. The initiative has many supporters, all of whom are listed here.

    This is practically a meme…I have no idea what all of these are (coming from my area of expertise).




  • All of those opposition parties banned have explicitly been in favor of Russia annexing Ukraine. Literally every one.

    Not only that, you make it sound like he did this by himself. There has been a ton of parliamentary agreement and has also been upheld in numerous appeals (incl by judges not having any associations with Zelensky).

    I’m by no means a “Zelensky-stan” and have my own criticisms, but either you are seriously being misled or are being malicious/spreading misinformation.

    Not only that, Ukraine runs a parliamentary government. There is no “opposition party”. Americans for some reason always view foreign government political parties through the lens of American politics. This is not like the government banning Republicans. This is like banning the “Socialists for the release of Alaska to Russia” party.











  • The reason is because a programmer at some point decide that & should indicate the start of a special symbol in HTML. In programming parlance this is a means of “escaping” characters which are reserved.

    For example, in HTML, things look something like this:

    <p>Hello, World!</p>
    

    The p in the less than and greater symbol symbols means “paragraph” where the ending version with the slash means “the paragraph is done”.

    However, there’s a problem. What if you wanted to actually type out <p> to the end-user and have it not be treated as HTML? You use the ampersand syntax to write &lt; by using &lt; and > by using >.

    </p><p>&lt;p></p>
    

    Yet another problem: If we use &amp; as a special character in HTML, we also need a way to display it—the answer is &amp;