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

help-circle




  • 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;







  • The best way to learn is by doing. Nobody knows all the answers. And doing courses/learning for the sake of learning only gets you to the surface.

    I’ve been a software engineer for 15+ years at this point and I still end up googling/stack overflowing issues that I’ve encountered. Not suggesting I’m copy-pasting code, but more of a “oh, I can do that!” type of thing.

    So start making something that interests you (with the full expectation that you won’t make money/benefit anyone). You hit a roadblock? Great! Time to learn how to fix that problem. Repeat. You hit a point where your code is spaghetti? Learn how to avoid that—look up design patterns. Etc etc.