Based on this article
ALL INSTALLATIONS ASSUME YES WHEN PROMPTED, that's what -y does
This script can be copy paste to ssh as is. No hands installation. :-)
yum install zsh -y
# Serve nextJS app from a port through NGINX reverse proxy (HTTP) | |
# Path: /etc/nginx/sites-available/default | |
# Default server configuration for HTTP | |
server { | |
server_name www.DOMAINNAME.com DOMAINNAME.com; | |
# Serve any static assets with NGINX | |
location /_next/static { | |
alias /home/ubuntu/PROJECT_FOLDER/.next/static; |
#!/usr/bin/env php | |
<?php | |
function getContents($params) | |
{ | |
[$self, $file, $startLine, $startColumn, $endLine, $endColumn] = $params; | |
--$startLine; | |
--$startColumn; | |
--$endLine; | |
--$endColumn; |
/* | |
1) Open https://popcat.click | |
2) Open console (F12) | |
3) Insert code & run | |
*/ | |
var event = new KeyboardEvent('keydown', { | |
key: 'g', | |
ctrlKey: true |
extension Date { | |
func add(_ component: Calendar.Component, value: Int) -> Date { | |
return Calendar.current.date(byAdding: component, value: value, to: self)! | |
} | |
} | |
@propertyWrapper | |
struct BeginEndDate { |
ALL INSTALLATIONS ASSUME YES WHEN PROMPTED, that's what -y does
This script can be copy paste to ssh as is. No hands installation. :-)
yum install zsh -y
{"version":1,"resource":"file:///Users/huge/Desktop/www/ezbuild.quasar.hardhat.node/express-ts/src/Sdk/NFT.ts","entries":[{"id":"s8uH.ts","timestamp":1651332354243}]} |
wget https://cfhcable.dl.sourceforge.net/project/boost/boost/1.54.0/boost_1_54_0.tar.gz
wget https://phoenixnap.dl.sourceforge.net/project/boost/boost/1.58.0/boost_1_58_0.tar.gz
wget https://dl.bintray.com/boostorg/release/1.64.0/source/boost_1_64_0.tar.gz
wget https://dl.bintray.com/boostorg/release/1.65.1/source/boost_1_65_1.tar.gz
wget https://dl.bintray.com/boostorg/release/1.67.0/source/boost_1_67_0.tar.gz
wget https://dl.bintray.com/boostorg/release/1.68.0/source/boost_1_68_0.tar.gz
wget https://dl.bintray.com/boostorg/release/1.69.0/source/boost_1_69_0.tar.gz
function doGet(e) { | |
//JSON.stringify(name) | |
if(typeof e !== 'undefined') { | |
var params = e.parameter; | |
var name = params.name; | |
var drinkIndex = params.drinkindex; | |
var drink = params.drink; | |
var drinkPrice = params.drinkprice; | |
var sugar = params.sugar; | |
var ice = params.ice; |