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
| <!DOCTYPE html> | |
| <html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ lang="$lang$" xml:lang="$lang$"$endif$> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
| <meta name="generator" content="pandoc" /> |
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
| %% | |
| %% This file contains the code that is common to the Tufte-LaTeX document classes. | |
| %% | |
| \ProvidesFile{tufte-common.def}[2011/06/18 v3.5.2 Common code for the Tufte-LaTeX styles] | |
| %% | |
| % The `xkeyval' package simplifies the user interface for the document class options | |
| \RequirePackage{xkeyval} |
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
| hi Normal background: #121112; color:#D0CFD0; | |
| hi CmdLine background: #121112; color:#D0CFD0; | |
| hi CompGroup background: #121112; color:#D0CFD0; | |
| hi CompTitle background: #1c1b1c; font-weight: bold; | |
| hi CompTitle>* color: #D0CFD0; padding: 1px 0.5ex; | |
| hi CompItem background:#121112; color:#D0CFD0; | |
| hi CompItem[selected] color: #77438F; background: #262426; | |
| hi CompDesc width: 500px; max-width: 500px; color: #465457; | |
| hi CompMsg margin-left: 16px; | |
| hi ErrorMsg background: #D7005F; color: #D0CFD0; font-weight: bold; |
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
| "===[ Settings ]======================================================== | |
| set complete=sl | |
| set wildmode='list:full' | |
| set noerrorbells | |
| set! javascript.options.jit.chrome=true | |
| set hintchars=theuigjkdsal | |
| set defsearch=google | |
| set gui=none |
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
| #main-window .tab-close-button { display:none!important; } | |
| #tabbrowser-tabs ~ #alltabs-button { display:none!important; } | |
| .tabbrowser-tabs[treestyletab-mode="vertical"] | |
| .tabbrowser-arrowscrollbox > scrollbox { | |
| overflow-y: hidden !important; | |
| } | |
| /*.tabbrowser-tabs[treestyletab-mode="vertical"] | |
| .tabbrowser-tab { |
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
| function gists() { | |
| /usr/local/bin/gist $1 | sed s/gist.github/rawgit/ | sed s/.com/.com\\\/dfeng/ | sed -e "s/$/\\/raw\/$1/" | |
| } |
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
| @namespace url(http://www.w3.org/1999/xhtml); | |
| @-moz-document domain('reddit.com') { | |
| body{ | |
| background:#1a1a1a; | |
| color:#ddd | |
| } | |
| .comment .usertext .md p>a:visited,.md a,.res.res-nightmode .tagline a,a,h2 a:visited{ | |
| color:#3498db; |
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
| \documentclass{article} | |
| \usepackage[pdftex,active,tightpage]{preview} | |
| \setlength\PreviewBorder{2mm} | |
| \usepackage{tikz} | |
| \usetikzlibrary{positioning, calc} | |
| % \usepackage[minionint, loosequotes, swash]{MinionPro} | |
| % \usepackage{lmodern} | |
| \renewcommand{\familydefault}{\sfdefault} | |
| \begin{document} |
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
| # Start R Grading Helper | |
| # ========================== | |
| # === Global Variables === | |
| # ========================== | |
| folder <- "/Users/dfeng/Downloads/Grading" | |
| roster_filename <- "ml_roster.csv" | |
| grade_filename <- "ml_hw.csv" |