Keybase proof
I hereby claim:
- I am artakvg on github.
- I am artakvg (https://keybase.io/artakvg) on keybase.
- I have a public key ASAonCOSrVeMWCMH50qdx_HZHdqBLm3zoWyh585Qg_Q2mAo
To claim this, I am signing this object:
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE score-partwise PUBLIC "-//Recordare//DTD MusicXML 3.1 Partwise//EN" "http://www.musicxml.org/dtds/partwise.dtd"> | |
<score-partwise version="3.1"> | |
<identification> | |
<encoding> | |
<software>MuseScore 2.2.1</software> | |
<encoding-date>2018-04-22</encoding-date> | |
<supports element="accidental" type="yes"/> | |
<supports element="beam" type="yes"/> | |
<supports element="print" attribute="new-page" type="yes" value="yes"/> |
I hereby claim:
To claim this, I am signing this object:
type Diff<T, U> = T extends U ? never : T; | |
type OptionalExceptFor<T, TRequired extends keyof T> = Partial<T> & Pick<T, TRequired>; | |
type RequiredExceptFor<T, TOptional extends keyof T> = Pick<T, Diff<keyof T, TOptional>> & Partial<T>; |
#!/bin/bash | |
nodeVersion="v5.7.0" | |
nvm install "$nodeVersion" | |
nvm alias default "$nodeVersion" |
#!/bin/bash | |
nodeVersion="v4.0.0" | |
## install libs | |
sudo apt-get -y update | |
sudo apt-get -y install build-essential | |
sudo apt-get -y install libssl-dev | |
sudo apt-get -y install libkrb5-dev | |
sudo apt-get -y install git |
#!/bin/bash | |
# you can use "v4.0.0" for node 4.0.0 version | |
nodeVersion="v0.12.7" | |
## install libs | |
sudo apt-get -y update | |
sudo apt-get -y install build-essential | |
sudo apt-get -y install libssl-dev | |
sudo apt-get -y install libkrb5-dev |