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
# 1. Create deno user and install Deno | |
useradd deno -m -s /bin/bash | |
rm /home/deno/.* | |
apt install unzip | |
sudo -u deno bash -c 'curl -fsSL https://deno.land/x/install/install.sh | sh' | |
# 2. Create a process that runs on systemd | |
mkdir /home/deno/deno_getssl_bot | |
cat <<'EOL' > /home/deno/deno_getssl_bot/deno_getssl_bot.service | |
[Service] |
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
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<?php | |
class Deck { | |
private $cards; | |
public function __construct($label = FALSE, $has_cards = FALSE) | |
{ |