The liberal left has been known for over a decade for trying to make white people feel guilty over racism and it was annoying. Now they’ve taken the level of racism and hatred of white people to such an extreme degree that it seems like they’re actually trying to promote white nationalism by making white people feel like victims. Marxist leaders are actually morally bankrupt enough to fan the flames of racism and have innocent non-whites murdered in racial violence to provoke a counter blow-back. Of course there could just be deep cover white nationalists hiding out in the SJW movements that want to spew as much anti white racism as possible to fuel a sense of white persecution that will turn into a white uprising. This is what makes the regressive left regressive. They’ve been on a hard downward spiral in recent years of becoming more extreme and alienating everyone possible from their movement.
Monthly archives for January, 2018
Use multiple if statements without else if even else
It’s possible to use multiple if statements in a row without chaining them with else if statements or a concluding else statement as the default condition. When you have multiple if conditions without any other control flow, multiple code blocks can be triggered by different conditions. In a normal if, else if, and else control flow, only one action will be triggered by the first condition that is satisfied. This is the most common control flow for simple programs and programming is taught this way because a chain of if blocks can result in multiple condition triggers. Sometimes multiple condition triggers are desirable and this is when you can use multiple if conditions. Since you aren’t limited to keeping the control flow unbroken with only if statements, you can add additional code between the statements, but for readability you should only do this if you need to.