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
| # Custom pacman | |
| nano /etc/pacman.conf | |
| #Color -> Color | |
| ILoveCandy | |
| ParallelDownloads = 15 | |
| # Install yay | |
| su | |
| pacman -Syu base-devel nano git sudo go zsh htop | |
| exit |
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
| Refs: | |
| 1. http://os.archlinuxarm.org/os/ArchLinuxARM-aarch64-latest.tar.gz | |
| 2. https://dl-cdn.alpinelinux.org/alpine/v3.13/releases/aarch64/alpine-virt-3.13.5-aarch64.iso | |
| 3. https://wiki.alpinelinux.org/wiki/Replacing_non-Alpine_Linux_with_Alpine_remotely | |
| 4. https://wiki.archlinux.org/index.php/installation_guide#Configure_the_system | |
| 5. https://archlinuxarm.org/platforms/armv8/generic | |
| Requirement: | |
| Console access. | |
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
| let getToken = true; | |
| if (pm.collectionVariables.get('accessTokenExpiry') > (new Date()).getTime()){ | |
| getToken = false; | |
| } | |
| if (getToken) { | |
| const echoPostRequest = { | |
| url: pm.collectionVariables.get('accessTokenURL'), | |
| method: 'POST', |
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
| # Florian SAVOURÉ | |
| # 12/12/2021 | |
| # | |
| # This is an old script I wrote for my NAS | |
| # I have an old fan hooked up to the PWM fan header | |
| # This script aims to control the airflow in the case when needed | |
| # It kicks up the fan when 45⁰C is reached and increment the speed according to the CPU temp | |
| # | |
| # I do not guarantee that it will work on other SoC (because of the path) | |
| # But it will on this board with Armbian 21 at least. |
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
| # | |
| # Florian SAVOURÉ | |
| # 02/06/2020 | |
| # | |
| # This little code can translate ascii opcodes | |
| # like D8 58 A0 7F 8C 12 D0 A9 into a binary file | |
| # that can be used in the Apple I. | |
| # You can use it for whatever you want idc, | |
| # I made it in 10 minutes so if I can save someone's 10 minutes, | |
| # copy this code and execute it. |