Part of the radical UI changes that accompanied recent Firefox updates was removing of Windows 10 accent color from the tab and menu bar.
Personally, I was very keen on restoring the rectangular tabs that attach and actually look like tabs. Thankfully, I found a wonderful GitHub project and a helpful reddit comment that combined accomplished that.
However, this still me with this ugly black-on-white-on-gray mess:
If you like contrast and being able to distinguish elements or would ev...
In an article for TheBlaze, Daniel Horowitz claimed on August 25, 2021 that 15 studies indicated that surviving COVID-19 provides better immunity than getting vaccinated does. CDC studies have already directly proven the opposite, but I thought it would be good to still fact-check this claim to show how it's a lie.
It should be noted that the author, Daniel Horowitz, is not an immunologist. Much like me, he is a lawyer. However, I apparently have better readi...
When you right-click a tab, Firefox historically has had two options in the context menu that let you close multiple tabs at once: "Close Tabs to the Right" and "Close Other Tabs". These are self-explanatory and very useful buttons for people who do a lot of browsing and utilize both windows and tabs. However, in Firefox 78, Mozilla has moved these items into a submenu, largely eliminating their time-saving ability.
This was justified by worries that people were closing too many tabs acci...
In the abortion debate, it seems like it's mainly a debate between evangelical Christians and everybody else. The modern Christian political action in support for life largely stems from Baptist pastor Jerry Falwell and his Moral Majority. Falwell pastored at Thomas Road Baptist Church, which eventually joined the Southern Baptist Convention. The Southern Baptist Convention and its members have long been among the strongest opponents of abortion. However, would it surprise you to know that before, in 1971, the Southern Baptist Convention issued a statement in support of abortion?
(tl;dr: Jump to the actual moving)
Scope is an important concept in programming. It allows you to just write small sections of code to do what you need them to do without having to worry about something else in your code using the same name and messing everything up. Declarations (such as of variables or functions) will only be visible to code also in the same scope, usually some block of code.
MDN has a good example of the effects of scope in Javascript:
let x = 1;
if (x === 1) {...