These scripts/plugins are now being stored on the Erisa/RPG-Maker-Scripts repository, check there for the newest versions.
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
| # assuming 4.19.93-v8-9ee95326a181-p4+ / 4.19.93.20200107 | |
| wget https://codeload.github.com/raspberrypi/linux/tar.gz/9ee95326a1811c97f505f00aa7328e81dfdbd01b -O 9ee95326a1811c97f505f00aa7328e81dfdbd01b.tar.gz | |
| tar -xvf 9ee95326a1811c97f505f00aa7328e81dfdbd01b.tar.gz | |
| cd linux-9ee95326a1811c97f505f00aa7328e81dfdbd01b | |
| wget https://raw.githubusercontent.com/sakaki-/bcm2711-kernel/ad799827a051f068a4000c97e914fec07ea644b2/config -O .config | |
| sudo apt-get -y install build-essential flex libssl-dev | |
| make -j4 prepare | |
| make -j4 modules_prepare | |
| sudo ln -s $PWD /lib/modules/4.19.93-v8-9ee95326a181-p4+/build |
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
| set -g symb '▲' | |
| set -g leading_brace 0 | |
| set -g has_launched 0 | |
| function git_info | |
| set -l branch (git rev-parse --abbrev-ref HEAD 2> /dev/null) | |
| printf "%s(%s%s%s)" $c0 $c1 $branch $c0 | |
| set -l changes (git status --porcelain --ignore-submodules 2> /dev/null) |
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
| function prompt { | |
| $lastCmdFailed = !$?; | |
| $asciiSymbols = $true # If your terminal doesn't display unicode properly | |
| # Cause $IsWindows and shit doesn't exist on current Windows Powershell version | |
| $windows = $IsWindows -or $env:OS -eq 'Windows_NT' | |
| if ($windows) { | |
| $admin = [bool](([System.Security.Principal.WindowsIdentity]::GetCurrent()).groups -match 'S-1-5-32-544') | |
| $name = $env:UserName |
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
| # https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-core-on-linux?view=powershell-6#ubuntu-1804 | |
| # Download the Microsoft repository GPG keys | |
| wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb | |
| # Register the Microsoft repository GPG keys | |
| sudo dpkg -i packages-microsoft-prod.deb | |
| rm -v packages-microsoft-prod.deb | |
| # Update the list of products |
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
| // Set this in your worker's environment. wrangler.toml or cloudflare dashboard. | |
| let secret = WORKERLINKS_SECRET; | |
| addEventListener('fetch', event => { | |
| event.respondWith(handleRequest(event.request)); | |
| }) | |
| /** | |
| * Respond to the request | |
| * @param {Request} request |
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
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
| "snapToGridOnResize": false, | |
| "profiles": { | |
| "defaults": { | |
| "fontFace": "Cascadia Code", | |
| "useAcrylic": true, | |
| "padding": "0, 0, 0, 0", | |
| "colorScheme": "One Half Dark", |
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
| if true #Set to false to disable script. | |
| # (C) Copyright Erisa A (Seriel) 2019 | |
| ############################################################################### | |
| # Seriel ~ Dynamic Variables # | |
| # See under this notice for some help. # | |
| #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# | |
| # The code here can be reused for any purpose, with credit given. # | |
| # This includes both Commercial and Non-Commercial use. # | |
| # However, contact is appreciated before Commercial use. # | |
| # Modified versions must give credit, however it must not be implied that the # |
These scripts/plugins are now being stored on the Erisa/RPG-Maker-Scripts repository, check there for the newest versions.
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
| if true #Set to false to disable script. | |
| # Copyright Erisa A. (erisa.uk) 2018 | |
| ############################################################################### | |
| # Seriel ~ Transfer Player on Gameover ~ <3 # | |
| #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# | |
| # The code here can be reused for any purpose, with credit given. # | |
| # This includes both Commercial and Non-Commercial use. # | |
| # However, contact is appreciated before Commercial use. # | |
| #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# | |
| # Contact: | [email protected] # |