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
hello |
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
ELDEN RING 189 hrs 28 mins █████████████ 100% | |
Black Myth: Wu... 125 hrs 43 mins █████████████ 100% | |
Hogwarts Legacy 123 hrs 42 mins █████████▏░░░ 71% | |
Ghost of Tsushima 69 hrs 51 mins █████████▊░░░ 75% | |
Baldur's Gate 3 53 hrs 22 mins █▌░░░░░░░░░░░ 12% | |
Sifu 35 hrs 12 mins ███████▏░░░░░ 55% | |
Marvel's Spide... 32 hrs 52 mins ████████████▌ 97% | |
Hades 32 hrs 45 mins █▊░░░░░░░░░░░ 14% | |
Marvel's Spide... 23 hrs 2 mins ██████████▍░░ 80% | |
ASTRO BOT 21 hrs 40 mins █████░░░░░░░░ 39% |
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
Vagrant.configure("2") do |config| | |
config.vm.box = "ubuntu/xenial64" | |
(1..3).each do |i| | |
config.vm.define "node#{i}" do | node | | |
node.vm.hostname = "node#{i}" | |
node.vm.network "private_network", ip: "192.168.233.11#{i}" | |
end | |
end | |
config.vm.provision "shell", inline: <<-SHELL | |
sudo mv /etc/apt/sources.list /etc/apt/sources.list.backup |
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/env bash | |
# | |
# | |
# This script accepts the following parameters: | |
# | |
# * owner | |
# * repo | |
# * version | |
# * github_api_token | |
# |
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/sh | |
mkdir emqx_rep | |
cd emq-relx | |
if [ ! -d "deps" ]; then | |
make | |
fi | |
cd deps | |
list=$(ls -F |grep "/$") |