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
β Total Stars: 2 | |
β Total Commits: 1.7k | |
π Total PRs: 68 | |
π© Total Issues: 36 | |
π¦ Contributed to: 8 |
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
π Morning 1 commits βββββββββββββββββββββ 6.7% | |
π Daytime 4 commits βββββββββββββββββββββ 26.7% | |
π Evening 8 commits βββββββββββββββββββββ 53.3% | |
π Night 2 commits βββββββββββββββββββββ 13.3% |
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
#![feature(test)] | |
extern crate test; | |
#[cfg(test)] | |
mod benchs { | |
use crate::parser; | |
use std::{fs::File, io::Read}; | |
use test::Bencher; | |
macro_rules! bench_source { |
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
set nocompatible | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" let Vundle manage Vundle, required | |
Plugin 'VundleVim/Vundle.vim' | |
Plugin 'vim-airline/vim-airline' |