Conservatives regularly complain of Silicon Valley's bias against their activities on social media platforms. Some call for regulation of companies like Facebook and Google, insisting that they stifle free speech by regulating political content on their platforms. The complaint sometimes even comes from the left - Congresswoman Tulsi Gabbard, a Democrat, filed a fifty million dollar lawsuit against Google; claiming that they infringed on her First Amendment rights by suspending her advertising on their platform. While the bias is certainly real, is regulation really the answer? I say no.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Delete remnants of last install | |
rm -rf /home/thejerwin/tmp-aur | |
#Clone the repo | |
read -p "Type the package to be installed.. " PACKAGE | |
echo Package $PACKAGE will be installed.. | |
git clone https://aur.archlinux.org/$PACKAGE.git /home/thejerwin/tmp-aur |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Emocore - D.C. emotional hardcore and straight edge | |
https://open.spotify.com/playlist/28igBXgyIZAr78gGapP4Kt?si=ueOYM052Qhy486HN8Jhm6A | |
Rock - Work in progress mainstream rock/metal | |
https://open.spotify.com/playlist/5IeQ0jRSjvyMiL3TGSkc8O?si=FqMfH4RRTC2BQBx-JmNKbg | |
Doomer Music - One of the few playlists not based on a genre. Mostly British Indie and | |
alt or goth rock, i.e. The Smiths and the Cure. | |
https://open.spotify.com/playlist/1Faa5acSRh0PmWC1qfek9C?si=uP9NQjQNSOu49Jmw33zhtA |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nu | |
set nocompatible | |
filetype plugin on | |
set autoindent | |
syntax on | |
set laststatus=2 | |
set t_Co=256 | |
set tabstop=4 | |
highlight LineNr ctermfg=white | |
highlight link htmlTagName htmlTag |