I hereby claim:
- I am xanderjakeq on github.
- I am xanderjakeq (https://keybase.io/xanderjakeq) on keybase.
- I have a public key ASCI4b4R-ZGYSARdmy88kmzJ1qUKFUZeJSYkH_XK_V0Bdwo
To claim this, I am signing this object:
| "autocmd VimEnter * if &filetype !=# 'gitcommit' | NERDTree | endif "Will not Open NERDTree if vim used in git commit | |
| "autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif | |
| nnoremap gf :vertical wincmd f<CR> | |
| " set space to <leader> key | |
| nnoremap <SPACE> <Nop> | |
| let mapleader = " " | |
| set nobackup |
I hereby claim:
To claim this, I am signing this object:
| [](https://www.youtube.com/watch?v=VIDEO_ID) |
| Verifying my Blockstack ID is secured with the address 1Db9BXRQgDpu6scBLiLypmyPuKoDvbgbgz https://explorer.blockstack.org/address/1Db9BXRQgDpu6scBLiLypmyPuKoDvbgbgz |
(filename prepended with a's so it will be the first one seen)
I actually don't know... I did a thing and it just worked. Just follow the vundle installation instructions.
Follow this short tutorial. It just works
| int fizzbuzz(int n) | |
| { | |
| char fizz[] = "fizz"; | |
| char buzz[] = "buzz"; | |
| int counter = 0; | |
| for (int i = 0; i < n; i ++){ | |
| char output[10] = ""; | |
| if (i%3 == 0){ | |
| strcat(output, fizz); |
| height: 600 | |
| license: mit |
| // say if you want 2 compositions | |
| // FirstComp => H1 | |
| // SecondComp => H2 | |
| // ThirdComp => H3 | |
| // we have this HOC | |
| const withComposition = Comp1 => Comp2 => props => { | |
| return( | |
| <> | |
| <Comp1/> |
| const Username = (props) => { | |
| return <input name = "username" value={props.value} onChange = {props.onChange}/> | |
| } | |
| const Password = (props) => { | |
| return <input name = "password" value={props.value} onChange = {props.onChange}/> | |
| } | |
| const InputHOC = (Input) => class extends React.Component{ | |
| state = { |
| import java.util.Scanner; | |
| /** | |
| * Project One: Breast Cancer Classification | |
| * GROUP MEMBER NAMES: | |
| * 1) | |
| * 2) | |
| * 3) | |
| * | |
| * BreastCancerClassify contains the core implementation of the |