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
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] # |
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
print("β-ββββββββββββββββββββββββββββ-β _ ") | |
print("β Procedural Programming Demo β ( ) _ ") | |
print("β With Python! β (_` )_('> ") | |
print("ββββββββββββββββββββββββββββββ-β€ (__,~_)8 ") | |
print("β β _YY_ ") | |
print('""""|""|""^^^|^^^^^^^^^^^"""|""^^^^^^^"""|"^') | |
def procedure_demo(): | |
print("\n\nThis demo is actually a procedure in itself, but lets demo one anyway!") | |
print("(Comments will help here") |