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
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash | |
nvm install --lts | |
npm use --lts |
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
#!/usr/bin/sudo bash | |
current_user=$(logname) | |
RED="\e[31m" | |
GREEN="\e[32m" | |
NC="\e[0m" | |
# blue=$(tput setaf 4) | |
green=$(tput setaf 2) |
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
#!/bin/bash | |
# Installation now completes but panel is broken | |
# One issue is composer is ran as root user | |
# Panel is broken: Composer detected issues in your platform: Your Composer dependencies require a PHP version ">= 8.1.0". | |
#################################################### CONFIGURATION ### | |
BUILD=202112181 |
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
let total = 0.0; | |
let principal = 0.0; | |
let interest = 0.0; | |
$('#postedPaymentsTable tr > td:nth-child(3)').each(function(row, row2) { | |
const payment = row2.innerHTML.replace('(','').replace(')', '').replace('$', '').replace(',','') | |
if(payment !== '--') { | |
total = total + +payment; | |
} | |
}); |
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
#pragma semicolon 1 | |
#include <sourcemod> | |
#define PLUGIN_VERSION "1.8" | |
#define cGreen 0x04 | |
#define cDefault 0x01 | |
new spawned[MAXPLAYERS + 1]; |
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
* { | |
animation: rotations 5s infinite; | |
} | |
@keyframes rotations { | |
0% { transform: rotate(0deg); } | |
100% { transform: rotate(360deg); } | |
} |
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
healthcheck: | |
test: "nc -z 192.168.1.1 22" | |
interval: 1s | |
retries: 120 |
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 ordered = {}; | |
selectedDays.sort((one, two) => { | |
let ts1 = moment(one.getTime()).unix(); | |
let ts2 = moment(two.getTime()).unix(); | |
if(ts1 < ts2) | |
return -1; | |
if(ts1 > ts2) | |
return 1; | |
return 0 | |
}).forEach((key) => { |
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
#!/bin/bash | |
#install homebrew | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
#install linux commands | |
brew install watch | |
brew install htop | |
#brew install wget (is this included in the new mac now?) |
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
[Unit] | |
Description=Some Service | |
After=network.target | |
[Service] | |
Restart=always | |
Type=simple | |
User=root | |
ExecStart=/usr/local/bin/[binary-name] |
NewerOlder