Skip to content

Instantly share code, notes, and snippets.

@annguyenwasd
annguyenwasd / minimal.vim
Created April 2, 2020 07:38 — forked from benmccormick/minimal.vim
A minimal vimrc for new vim users
" A minimal vimrc for new vim users to start with.
"
" Referenced here: http://vimuniversity.com/samples/your-first-vimrc-should-be-nearly-empty
"
" Original Author: Bram Moolenaar <[email protected]>
" Made more minimal by: Ben Orenstein
" Modified by : Ben McCormick
" Last change: 2014 June 8
"
" To use it, copy it to
(function() {
const hasCode = location.pathname.indexOf('/folder/') > -1;
if (!hasCode) {
alert('Not a Fshare folder, Please navigate to FShare folder');
return;
}
let code = location.pathname.replace('/folder/', '');
const blacklist = [
'Brianna',
'Lexi',
'Sophia',
'Violet',
'Emily'
];
function like() {
const buttons = document.querySelectorAll("button.button");