On remote, SSH must be installed and running
sudo apt install openssh-server # also maybe openssh-clientcheck if its running or not
| #! /usr/bin/env bash | |
| set -euo pipefail | |
| FOLDER_NAME=$@ | |
| echo "Cloning starter..." | |
| echo "" | |
| git clone https://github.com/w3dg/express-api-starter.git ${FOLDER_NAME:=express-api-starter} &> /dev/null |
Debopam Gupta | November 6th , 2021
| loading lines: "https://gist.github.com/fourjr/f94fc112cef6da07fc274216d5755420" | |
| Somewhere in 2020, they reduced the messages from 38 to 13.. This is the updated list on 5 December 2020. | |
| Ctrl+Shift+I > Application > Frames > top > Scripts > a3762dfb973e0a7a21ba.js > ctrl+f "GUILD_MEMBER_JOIN" or https://canary.discordapp.com/assets/a3762dfb973e0a7a21ba.js | |
| SYSTEM_MESSAGE_GUILD_MEMBER_JOIN_001: "[!!{username}!!](usernameOnClick) joined the party.", | |
| SYSTEM_MESSAGE_GUILD_MEMBER_JOIN_002: "[!!{username}!!](usernameOnClick) is here.", | |
| SYSTEM_MESSAGE_GUILD_MEMBER_JOIN_003: "Welcome, [!!{username}!!](usernameOnClick). We hope you brought pizza.", | |
| SYSTEM_MESSAGE_GUILD_MEMBER_JOIN_004: "A wild [!!{username}!!](usernameOnClick) appeared.", | |
| SYSTEM_MESSAGE_GUILD_MEMBER_JOIN_005: "[!!{username}!!](usernameOnClick) just landed.", |
| module.exports = { | |
| config: { | |
| // default font size in pixels for all tabs | |
| fontSize: 12, | |
| // font family with optional fallbacks | |
| fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', | |
| // terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) | |
| cursorColor: 'rgba(248,28,229,0.8)', |