0000000 464c457f 00010101 00000000 00000000
0000016 00280002 00000001 8f600000 00000034
0000032 00000000 05000002 00200034 00280004
0000048 00000000 00000000 00000000 00000000
0000064 00000000 000000b4 00000000 07000000
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
sudo su | |
sudo !! | |
clear {clear the console window} | |
apt-get update {updating sources list} |
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
/dts-v1/; | |
/ { | |
#address-cells = <0x2>; | |
#size-cells = <0x2>; | |
model = "Qualcomm Technologies, Inc. MSM8937-PMI8950 QRD SKU1"; | |
compatible = "qcom,msm8937-pmi8950-qrd-sku1", "qcom,msm8937-qrd", "qcom,msm8937", "qcom,qrd"; | |
qcom,msm-id = <0x126 0x0>; | |
interrupt-parent = <0x1>; | |
qcom,board-id = <0x1000b 0x1 0x2000b 0x1>; |
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 | |
urls=$(wget -O- -q https://api.github.com/repos/VSCodium/vscodium/releases/latest | grep browser_download_url | cut -d '"' -f 4 | grep "amd64") | |
# urls=$(wget -O- -q --header="Authorization: token xyzABC" https://api.github.com/repos/VSCodium/vscodium/releases/latest | grep browser_download_url | cut -d '"' -f 4 | grep "amd64") | |
IFS=', ' read -r -a array <<< $urls | |
name=$(echo $array | cut -d '/' -f 9) | |
version=$(echo $name | cut -d "_" -f 2 | cut -d "-" -f 1) | |
IFS='.' read -a sarray <<< $version | |
version=$(echo ${sarray[0]}.${sarray[1]}.${sarray[2]}) |
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
project art/ | |
0f2487027e Snap for 5698743 from 492ed3575e7e7a5878572781937cbab04f27c2d7 to qt-release | |
project bionic/ | |
290c0cb50 Snap for 5716396 from 5cda74e065761bbeccf7ff61d7a3131bdf6490d0 to qt-release | |
project bootable/recovery/ | |
5a6cde8 Merge cherrypicks of [8673593, 8673409, 8673796, 8673797, 8673798, 8673855, 8673151, 8673594, 8673499, 8673799, 8673895, 8673896] into qt-release | |
project build/blueprint/ |
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
project art/ | |
project bionic/ | |
project bootable/recovery/ | |
project build/blueprint/ | |
project build/kati/ |
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
For update manually the Desktop Icons gnome extension: | |
1. Type the following commands below on terminal. | |
> cd /usr/share/gnome-shell/modes | |
> sudo vim ubuntu.json | |
2. Remove the text ', [desktop-icons@csoriano]' | |
3. Save the file with 'wq'. | |
4. Restart the shell with logoff/logon session. |
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
project art/ | |
project bionic/ | |
project bootable/recovery/ | |
project build/blueprint/ | |
project build/kati/ |
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
project external/libaom/ | |
d59a484 cherry-pick 0a0368368 Check the conformance requirements in Sec. 6.8.1. | |
project frameworks/av/ | |
36a66d5 Move an orphaned analytics reference under a mutex | |
project frameworks/base/ | |
5e33750cce Fix storing the wrong value of mLockdown in setting | |
04f285806a [DO NOT MERGE][BACKPORT]Improve location checks in TelephonyRegistry | |
004a29a3ba Make WallpaperMS bind wallpaper component PendingIntent immutable. |
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 | |
url=$(wget -O- -q https://api.github.com/repos/gohugoio/hugo/releases/latest | grep browser_download_url | cut -d '"' -f 4 | grep "linux-amd64.deb" | grep -v "hugo_extended") | |
# url=$(wget -O- -q --header="Authorization: token xyzABC" https://api.github.com/repos/gohugoio/hugo/releases/latest | grep browser_download_url | cut -d '"' -f 4 | grep "linux-amd64.deb" | grep -v "hugo_extended") | |
version=$(echo $url | cut -d '/' -f 8 | cut -d 'v' -f 2) | |
name=$(echo $url | cut -d '/' -f 9) | |
checksums_url="https://github.com/gohugoio/hugo/releases/download/v${version}/hugo_${version}_checksums.txt" | |
installed_ver=$(hugo version | cut -d "v" -f 2 | cut -d "-" -f 1) |
OlderNewer