Skip to content

Instantly share code, notes, and snippets.

# Enable git prompt functionality
source /usr/share/git-core/contrib/completion/git-prompt.sh
# Set the PS1
PS1='\u@\h:\[\033[34m\]\w\[\033[32m\]$(__git_ps1)\[\033[0m\] \$ '
const fs = require('fs');
const path = require('path');
const envFilePath = path.resolve(__dirname, '.env');
// Function to read the .env file and return its content as an array of lines
function readEnvFile() {
return fs.readFileSync(envFilePath, 'utf8').split('\n');
}
@GJivan
GJivan / pingWithTimestamp.bat
Created January 17, 2022 23:19
Ping Bat Script with TimeStamp
@echo off
Rem ######## Replace Log File Location ##########
set logfile=logFile1.txt
echo.
set /p IP="Enter IP Address to ping: "
echo.
echo.
set /p INTERVAL="Enter time (in seconds) to wait between pings: "