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
| #!/bin/sh | |
| REPORTDIR=$1; | |
| cd /tmp && | |
| mkdir $REPORTDIR && | |
| apt update && | |
| apt install wget sed hdparm -y && | |
| #install geekbench and run it | |
| wget https://cdn.geekbench.com/Geekbench-4.4.4-Linux.tar.gz && |
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
| #!/bin/sh | |
| #install third party repository | |
| sudo apt-get install software-properties-common; | |
| #add ppa repository | |
| sudo add-apt-repository ppa:ondrej/php; | |
| #update | |
| sudo apt update; |
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
| #!/usr/bin/env bash | |
| # | |
| # This script come with NO WARRANTY and absolutely FREE | |
| # Author : Deki (dekiakbar@linuxmail.org) | |
| # Linux kernel : 5.0.0-37-generic | |
| # Ubuntu Version : Bionic Beaver 18.04 | |
| # Driver version : amdgpu-pro-19.30-934563-ubuntu-18.04 (https://drivers.amd.com/drivers/linux/amdgpu-pro-19.30-855429-ubuntu-18.04.tar.xz) | |
| # Profile : FULL_PROFILE | |
| # Version : OpenCL 1.2 AMD-APP (2906.7) | |
| # Board : Sapphire Nitro+ RX580 4GB |
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
| #!/bin/bash | |
| # | |
| # This script come with NO WARRANTY and absolutely FREE | |
| # Author : Deki (dekiakbar@linuxmail.org) | |
| # Linux kernel : 5.0.0-37-generic | |
| # Ubuntu Version : Bionic Beaver 18.04 | |
| # Driver version : amdgpu-pro-19.30-934563-ubuntu-18.04 (https://drivers.amd.com/drivers/linux/amdgpu-pro-19.30-855429-ubuntu-18.04.tar.xz) | |
| # Profile : FULL_PROFILE | |
| # Version : OpenCL 1.2 AMD-APP (2906.7) | |
| # Board : Sapphire Nitro+ RX580 4GB |
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
| #!/bin/bash | |
| # | |
| # This script come with NO WARRANTY and absolutely FREE | |
| # Author : Deki (dekiakbar@linuxmail.org) | |
| # Linux kernel : 5.0.0-37-generic | |
| # Ubuntu Version : Bionic Beaver 18.04 | |
| # Driver version : amdgpu-pro-19.30-934563-ubuntu-18.04 (https://drivers.amd.com/drivers/linux/amdgpu-pro-19.30-855429-ubuntu-18.04.tar.xz) | |
| # Profile : FULL_PROFILE | |
| # Version : OpenCL 1.2 AMD-APP (2906.7) | |
| # Board : Sapphire Nitro+ RX580 4GB |
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
| <?php | |
| function romawi($nomor){ | |
| $n = intval($nomor); | |
| $hasil = ''; | |
| $nomor_romawi = array( | |
| 'M' => 1000, | |
| 'CM' => 900, | |
| 'D' => 500, |