Choose this method ONLY if you have a full jailbreak (R/W on /
).
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
# SPDX-License-Identifier: LGPL-2.1-or-later | |
# | |
# This file is part of systemd. | |
# | |
# systemd is free software; you can redistribute it and/or modify it | |
# under the terms of the GNU Lesser General Public License as published by | |
# the Free Software Foundation; either version 2.1 of the License, or | |
# (at your option) any later version. |
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
. | |
bin | |
conf | |
conf/arch.conf | |
conf/conf.d | |
conf/initramfs.conf | |
etc | |
etc/fstab | |
etc/ld.so.cache | |
etc/ld.so.conf |
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
<?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:
- 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:
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
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>; |
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
#!/bin/bash | |
nodeVersion="v5.7.0" | |
nvm install "$nodeVersion" | |
nvm alias default "$nodeVersion" |
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
#!/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 |
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
#!/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 |