Posts for: #Stupidity

Musk and Vivek Called You Retards

We’ve reached a new peak in the class war. Elon Musk and Vivek Ramaswamy have thrown down and stated that they “need” H-1B visas because Americans are just retarded. Not my words. Theirs. Damn near verbatim.

Here’s my problem with this. They’re liars. They’re enormous fucking liars, and the reason they are compelled to hire H-1B visa holders is because they not only pay their salaries, but the H-1B visa holder has extra incentive to obey because they’ll be shipped back to their home country if they don’t play ball. Great way to prevent whole groups from unionizing. This is the modern equivalent to the Chicago Stockyards. There will be violence, and I don’t know if Musk is quite ready for that. There was violence then, too. It was the reason things changed. The violence ended corporate hegemony (such as scrip and corporate housing) and ushered in a new era of labor relations(unions and labor protections).

[]

Insomnia Redux (Or my Excuse to Post my Vim Init)

I can’t sleep and can’t think of anything good to blog about, so I’m going to throw up my Vim startup script. This is what works for me, and I’m using it with gvim as well as a slightly modified version for vim. Without further ado, the startup script that makes the world’s best text editor even more useful to me:

colors desert
syntax on
set gfn=PragmataPro:h12,Arial\ Unicode\ MS:h12
set backspace=2
set shm+=I
set ls=2
set ruler

"UTF-8 Shizzle
if has("multi_byte")
  if &termencoding == ""
    let &termencoding = &encoding
  endif
  set encoding=utf-8
  setglobal fileencoding=utf-8
  "setglobal bomb
  set fileencodings=ucs-bom,utf-8,latin1
endif

"Begin custom function for search
highlight found gui=undercurl guibg=#121212 guifg=#6458f0 guisp=#6767ff

function Supafind()
  let farg = input("Search Regex: ")
  call matchadd("found",farg)
  echo ""
endfunction

map <F2> :call Supafind()<CR>
map <F3> :call clearmatches()<CR>:echo "Cleared Matches"<CR>
[]