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
PS1="\[\033[1;37m\]┌---\[\033[1;37m\][\[\033[1;31m\]$(whoami)\[\033[1;37m\]@\[\033[1;31m\]$(hostname)\[\033[1;37m\]]-\[\033[1;37m\][\[\033[0;31m\]$(pwd)\[\033[1;37m\]]:\n|\n└---\[\033[1;32m\]$ \[\033[1;36m\]" |
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
clear | |
function prompt{ | |
$user = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name -replace '\\', '@' | |
$path = $(Get-Location) -replace '\\', '/' | |
Write-Host "[$user]" -ForegroundColor Red | |
return "$path$ " | |
} | |
# Outputs: | |
# [DESKTOP-L7RJCOV@Rednexie] |
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
function prompt{ | |
$user = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name -replace '\\', '@' | |
$path = $(Get-Location) -replace '\\', '/' | |
Write-Host "[$user]" -ForegroundColor Red | |
return "$path$ " | |
} |
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
git clone https://github.com/Rednexie/pastecord |
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
const { MongoClient, ServerApiVersion } = require("mongodb") | |
const client = new MongoClient(uri, { | |
serverApi: { | |
version: ServerApiVersion.v1, | |
strict: true, | |
deprecationErrors: true, | |
} | |
}); | |
async function main(){ |
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
const TesseractSharder = require("tesseract-sharder") | |
const shard = new TesseractSharder() | |
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
git clone https://github.com/Rednexie/guilded-template |
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
git clone https://github.com/Rednexie/discord-template |