Skip to content

Instantly share code, notes, and snippets.

@ebidel
ebidel / coverage.js
Last active April 27, 2024 04:13
CSS/JS code coverage during lifecycle of page load
Moved to https://github.com/ebidel/puppeteer-examples
set-option -g default-shell "/usr/local/bin/fish" │Type help for instructions on how to use fish
unbind /
bind / last-window
unbind %
bind - split-window -v
unbind '"'
bind \ split-window -h
set nocompatible " be iMproved:, required
filetype off " required
set shell=bash
set number
set incsearch
set relativenumber
" Map nerdmap toggle the sidebar
map <C-n> :NERDTreeToggle<CR>
@KhaledMohamedP
KhaledMohamedP / BootstrapReference.md
Last active August 29, 2015 14:06
This is a list of all the classes in bootstrap framework.me

Setup HTML

Local Files

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
package ca.uwo.csd.cs2212.USERNAME;
public class BankAccount {
private double balance;
public BankAccount(double balance) {
this.balance = balance;
}