This file contains 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
import Vex from 'vexflow'; | |
import React, {Component} from 'react'; | |
const { | |
Accidental, | |
Formatter, | |
Stave, | |
StaveNote, | |
Renderer, |
This file contains 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
" Excerpted from ~/.vim/after/ftplugin/tex.vim, | |
" which is sourced (executed) right after loading any TeX file | |
" (more precisely, any file with filetype=tex). | |
" | |
" These commands set up concealing for some math characters | |
" in addition to those defined throughout /usr/share/vim/vim74/syntax/tex.vim. | |
" See ':help conceal' for more information about concealment, | |
" and add 'set concealllevel=1' to your .vimrc to enable concealing. | |
" | |
" Test Plan: |
This file contains 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
let g:airline_section_gutter = "%{MyStatuslineFunction()}%=" | |
function! MyStatuslineFunction() | |
if &l:ft != "haskell" | |
return "nope" | |
else | |
let l:file = expand("%") | |
if l:file == '' | |
return "" | |
endif | |
if !filereadable(l:file) |
This file contains 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
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.HashMap; | |
import java.util.Iterator; | |
import java.util.LinkedList; | |
import java.util.List; | |
import java.util.Map; | |
import java.util.function.Supplier; | |
public class ListsBenchmark { |
This file contains 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{tikz} | |
\usepackage[siunitx,americanvoltages]{circuitikz} | |
\usepackage{geometry} | |
\pagenumbering{gobble} | |
\begin{document} |
This file contains 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{tikz} | |
\usetikzlibrary{automata,positioning} | |
\newcommand{\mtsym}{\sqcup} | |
\pagestyle{empty} | |
\begin{document} |
This file contains 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
:coberturaReport UP-TO-DATE | |
:compileJava UP-TO-DATE | |
:processResources UP-TO-DATE | |
:classes UP-TO-DATE | |
:instrument UP-TO-DATE | |
:copyCoberturaDatafile | |
:compileTestJava UP-TO-DATE | |
:processTestResources UP-TO-DATE | |
:testClasses UP-TO-DATE | |
:test UP-TO-DATE |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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[tikz,border=24pt]{standalone} | |
\usetikzlibrary{patterns,calc,decorations.markings,arrows} | |
\usepackage{tkz-euclide} | |
\usetkzobj{all} | |
\tikzset{ | |
ray/.style={ | |
dashed, | |
}, | |
ray segment/.style={ |