This guide is a combination of two sources
https://www.thegeekdiary.com/centos-rhel-7-how-to-configure-serial-getty-with-systemd/
This guide is a combination of two sources
https://www.thegeekdiary.com/centos-rhel-7-how-to-configure-serial-getty-with-systemd/
| This script converts all cells in selected range if they are of text value and the url is valid, check the isValid function if you need it updated. | |
| You can add this script through Automate function. | |
| ``` | |
| function main(workbook: ExcelScript.Workbook) { | |
| // Get the currently selected range | |
| let selectedRange = workbook.getSelectedRange(); | |
| // Check if a range is actually selected |
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
| # Define the folder path where SVG files are located | |
| $folderPath = ".\" | |
| # Get a list of all SVG files in the folder | |
| $svgFiles = Get-ChildItem -Path $folderPath -Filter *.svg | |
| # Create an HTML header with a grid layout | |
| $htmlContent = @" | |
| <!DOCTYPE html> | |
| <html lang="en"> |
Ability to reorder item based on users drag and drop of items in UI. Items can be drag and drop in as a single object or with This is not the most efficient way how to do this but it's working just fine.
-- Drop functions and data table if they already exists
drop function save_todo_float(_user_id int, _what text, _todo_id int);
drop function move_todo_float(_user_id int, _ids int[], _target_id int, _position text);
drop table todos_float;
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install redis-server
sudo systemctl enable redis-server.service
Based on various sources
wget -q -O gpg.key https://rpm.grafana.com/gpg.key sudo rpm --import gpg.key
nano /etc/yum.repos.d/grafana.repo and paste
[grafana]
| #!/bin/bash | |
| # Update everything automatically | |
| dnf update -y | |
| # Install nano and other useful stuff because you are not a masochist | |
| dnf install epel-release -y; | |
| dnf makecache |